Re[2]: cvs commit: src/sys/netinet if_ether.c

2005-11-25 Thread Hendry Sarumpaet
Hello Craig, Saturday, November 26, 2005, 11:55:44 AM, you wrote: > Dan Allen wrote: >> The following change appears to have crashed my network today. > Ditto, this killed both my wireless and wired interfaces upon a cvsup to > the latest RELENG_6. It just sent a continuous stream of ARP querie

Re: cvs commit: src/sys/netinet if_ether.c

2005-11-25 Thread Craig Boston
Dan Allen wrote: > The following change appears to have crashed my network today. Ditto, this killed both my wireless and wired interfaces upon a cvsup to the latest RELENG_6. It just sent a continuous stream of ARP queries, many per second, despite getting replies and populating the routing tabl

cvs commit: src/sys/netinet if_ether.c

2005-11-25 Thread Dan Allen
The following change appears to have crashed my network today. If I back up to the revision of src/sys/netinet/if_ether.c prior to this, my machine is fine, but otherwise it will not talk to my Netgear router's DHCP server properly and in fact it almost does a Denial of Service on the rout

em driver woes

2005-11-25 Thread Volcane
I scanned through the archive and noticed a posting there about an interrupt storm on the em driver, I am not sure if my symptoms are related so I decided on a new thread. I first installed the 6.0-RELEASE using FTP install and everything was happy, I then CVSUP'd to RELENG_6 which had an em drive

Re: Bug in routing tables ?

2005-11-25 Thread Ricardo A. Reis
Hi Brian, I work in a Brazilian University, with more +/- 90 Linux Server + 15 FreeBSD + 8 OpenBSD + 3 Solaris Sparc, 3 AIX , is very dificult fro me remember sintax :-) But i use route add 200.144.xx.xx/[mask] 172.22.xx.xx for many year, and this work p

Re: Bug in routing tables ?

2005-11-25 Thread Brian Candler
On Thu, Nov 24, 2005 at 02:28:37PM -0200, Ricardo A. Reis wrote: >I insert this route in my workstation for network test, > > #route add -net 200.144.xx.xx 255.255.254.0 172.22.x.x Linux user I bet ;-) For FreeBSD you need: #route add -net 200.144.xx.xx -netmask 255.255.254.0 172.22.x.x

Re: ifconfig description

2005-11-25 Thread Anton Yuzhaninov
Friday, November 25, 2005, 3:22:17 PM, bart wrote: b> I have couple of bsd routers with dozens vlans b> and missed ability to make comment on interface like cisco description You can use zebra (quagga) daemon for interface description: # sh int vlan17 Interface vlan17 is up, line protocol detect

ifconfig description

2005-11-25 Thread bart
Hello, I have couple of bsd routers with dozens vlans and missed ability to make comment on interface like cisco description so, here are patches for 6.0 but they can be easily adopted for 5.4 now you can write smthng like #ifconfig vlan45 descr "Some corp. room 666" and then you'll see #ifconf

Re: a question about socket-syscall, thinks

2005-11-25 Thread Robert Watson
On Fri, 25 Nov 2005, Jon wrote: NET_LOCK_GIANT(); error = socreate(uap->domain, &so, uap->type, uap->protocol, td->td_ucred, td); NET_UNLOCK_GIANT(); if (error) { fdclose(fdp, fp, fd, td); } else { FILEDESC_LOCK_FAST(fdp); fp->f_data = so; /* already has ref count */ fp->f_flag = FREAD|

a question about socket-syscall, thinks

2005-11-25 Thread Jon
NET_LOCK_GIANT(); error = socreate(uap->domain, &so, uap->type, uap->protocol, td->td_ucred, td); NET_UNLOCK_GIANT(); if (error) { fdclose(fdp, fp, fd, td); } else { FILEDESC_LOCK_FAST(fdp); fp->f_data = so; /* already has ref count */ fp->f_flag = FREAD|FWRITE; fp->f_ops = &soc