On 3/23/06, Alexander Neumann <[EMAIL PROTECTED]> wrote: > Hi, > > * Ted Unangst <[EMAIL PROTECTED]> wrote: > > On 3/23/06, Alexander Neumann <[EMAIL PROTECTED]> wrote: > > > I tried to install OpenBSD 3.8 on a box with two Gigabit 3Com cards with > > > Broadcom BCM5701 chipset. I set up networking, configured the ip address, > > > set the default route, put the nameserver into the resolv.conf file. > > > Pinging > > > the nameserver works, resolving dns names and doing anything over tcp or > > > udp > > have you tried something like ftp to the gateway? i think it's > > unlikely a nic could somehow only work with icmp. > > Today I was able to send and receive some data with netcat, but still no > ftp, no dns. Any further ideas? >
Keep going with netcat. What commands did you use exactly? Using netcat proves that it TCP and UDP do in fact work, so this would seem to be some other problem. My best guess is a firewall is blocking you. In your favourite scripting language, try i=0 while 1: i+=1 system("echo $i | nc host $i") system("echo $i | nc -u host $i") And have another script on the other side listening. -Nick