Re: WEP problems with ndis and ath drivers

2004-03-23 Thread Kenneth D. Merry
On Wed, Mar 24, 2004 at 14:36:22 +0900, Motonori Shindo wrote: > Gary, > > From: Gary Corcoran <[EMAIL PROTECTED]> > Subject: Re: WEP problems with ndis and ath drivers > Date: Tue, 23 Mar 2004 23:05:11 -0500 > > > Sam Leffler wrote: > > > > > It appears your AP requires shared-key authenticatio

Re: WEP problems with ndis and ath drivers

2004-03-23 Thread Kenneth D. Merry
On Tue, Mar 23, 2004 at 21:55:05 +0800, Sam Leffler wrote: > On Mar 21, 2004, at 9:35 AM, Kenneth D. Merry wrote: > > > > >I have a Dell Inspiron 8500 laptop with an onboard TrueMobile 1300 > >(Broadcom, b/g chipset) and a Netgear WAG511 cardbus card (Atheros, > >a/b/g > >chipset). > > > >I have

Re: WEP problems with ndis and ath drivers

2004-03-23 Thread Motonori Shindo
Gary, From: Gary Corcoran <[EMAIL PROTECTED]> Subject: Re: WEP problems with ndis and ath drivers Date: Tue, 23 Mar 2004 23:05:11 -0500 > Sam Leffler wrote: > > > It appears your AP requires shared-key authentication to associate when > > WEP is enabled. The current code in the tree does not

Re: WEP problems with ndis and ath drivers

2004-03-23 Thread Gary Corcoran
Sam Leffler wrote: It appears your AP requires shared-key authentication to associate when WEP is enabled. The current code in the tree does not support shared-key authentication (it's actually a bad idea security-wise). I don't claim to be an "expert" on WiFi, but the project I'm on at work

Re: in_pcbbind_setup(), etc.

2004-03-23 Thread Robert Watson
On Tue, 23 Mar 2004, Pawel Jakub Dawidek wrote: > I'm looking at in_pcbbind_setup() and this doesn't looks right in few > places. > > For example: 'td' can be NULL? It is offten tested, but not always, > Line 290: > if (sin->sin_addr.s_addr != INADDR_ANY) > i

Re: tricking myself w/ multihoming

2004-03-23 Thread Brian Reichert
On Tue, Mar 23, 2004 at 03:30:45PM -0500, Brian Reichert wrote: > I've modified my firewall rules on this box slightly: > > 00040 fwd 198.175.254.1 tcp from 198.175.254.8 to any 25 > 00050 divert 8668 ip from any to any via rl1 > 00100 allow ip from any to any via lo0 > 00200 deny ip from

Re: tricking myself w/ multihoming

2004-03-23 Thread Brian Reichert
On Tue, Mar 23, 2004 at 04:47:23PM -0500, Barney Wolff wrote: > First question, probably irrelevant - how did you get 255.255.255.255 as > the broadcast addr on rl1? Good question. Said interface is set via dhclient, and values are provided by my cable company. > If 198.175.254.1 is really your

Re: tricking myself w/ multihoming

2004-03-23 Thread Barney Wolff
On Tue, Mar 23, 2004 at 03:30:45PM -0500, Brian Reichert wrote: > I think I'm badly misunderstanding the interaction of ipfw and natd > and routing in general. > > I have a multihomed box: > > rl0: flags=8943 mtu 1500 > inet 198.175.254.11 netmask 0xff00 broadcast 198.175.254.255 >

Re: tricking myself w/ multihoming

2004-03-23 Thread Brian Reichert
On Tue, Mar 23, 2004 at 03:30:45PM -0500, Brian Reichert wrote: > I think I'm badly misunderstanding the interaction of ipfw and natd > and routing in general. > > I have a multihomed box: I forgot to mention: this box is running 4.9-RELEASE. I've not compiled the ipfw2 stuff yet, as I don't kno

tricking myself w/ multihoming

2004-03-23 Thread Brian Reichert
I think I'm badly misunderstanding the interaction of ipfw and natd and routing in general. I have a multihomed box: rl0: flags=8943 mtu 1500 inet 198.175.254.11 netmask 0xff00 broadcast 198.175.254.255 inet 198.175.254.8 netmask 0x broadcast 198.175.254.8 ethe

problem with an (4.9-STABLE) and Cisco 340 PCI card

2004-03-23 Thread Andrew Riabtsev
Hello, I have the following problem with runing AIR-PCI340 on FreeBSD 4.9-STABLE: #ifconfig an0 media autoselect ifconfig: SIOCGAIRONET: Operation not permined #ifconfig -m an0 shows availible media types just as usual. Other parameters sets normal (essid, stationname and so on). But with media

Re: WEP problems with ndis and ath drivers

2004-03-23 Thread Sam Leffler
On Mar 21, 2004, at 9:35 AM, Kenneth D. Merry wrote: I have a Dell Inspiron 8500 laptop with an onboard TrueMobile 1300 (Broadcom, b/g chipset) and a Netgear WAG511 cardbus card (Atheros, a/b/g chipset). I have a Netgear FWAG114 firewall/access point. (Atheros based, does a, b and g.) I'm r

in_pcbbind_setup(), etc.

2004-03-23 Thread Pawel Jakub Dawidek
Hmm. I'm looking at in_pcbbind_setup() and this doesn't looks right in few places. For example: 'td' can be NULL? It is offten tested, but not always, Line 290: if (sin->sin_addr.s_addr != INADDR_ANY) if (prison_ip(td->td_ucred, 0, &sin->sin_addr.s_addr))