Re: Bridging console port to a telnet session

2007-01-17 Thread Garrett Cooper
On Jan 17, 2007, at 11:00 AM, Kailas Ramasamy wrote: Hi Mike, Thanks a lot. This is what I was looking for. -Kailas On 1/17/07, Mike Meyer <[EMAIL PROTECTED]> wrote: In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi Mike, > I read through fork() and exec() man pages

Re: Bridging console port to a telnet session

2007-01-17 Thread Kailas Ramasamy
Hi Mike, Thanks a lot. This is what I was looking for. -Kailas On 1/17/07, Mike Meyer <[EMAIL PROTECTED]> wrote: In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi Mike, > I read through fork() and exec() man pages but I couldn't find anything > related to > this. Basical

Re: Bridging console port to a telnet session

2007-01-17 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi Mike, > I read through fork() and exec() man pages but I couldn't find anything > related to > this. Basically, I want to launch a telnet session from a process and pass > in > /dev/console as stdin and stdout. Well, you don't

Re: Bridging console port to a telnet session

2007-01-17 Thread Kailas Ramasamy
Hi Mike, I read through fork() and exec() man pages but I couldn't find anything related to this. Basically, I want to launch a telnet session from a process and pass in /dev/console as stdin and stdout. Thanks Kailas On 1/16/07, Mike Meyer <[EMAIL PROTECTED]> wrote: In <[EMAIL PROTECTED]>, Ka

Re: Bridging console port to a telnet session

2007-01-16 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi Mike, > Yes, that what I am planing but I want to do this dynamically. Do you know > how to launch a > telnet session from a process?. How do I pass stdin and stdout to the telnet > from a process?. See the fork() and exec() m

Re: Bridging console port to a telnet session

2007-01-16 Thread Kailas Ramasamy
Hi Mike, Yes, that what I am planing but I want to do this dynamically. Do you know how to launch a telnet session from a process?. How do I pass stdin and stdout to the telnet from a process?. Thanks Kailas On 1/16/07, Mike Meyer <[EMAIL PROTECTED]> wrote: In <[EMAIL PROTECTED]>, Kailas Ramas

Re: Bridging console port to a telnet session

2007-01-16 Thread Andrew Thompson
On Tue, Jan 16, 2007 at 03:03:55PM -0800, Kailas Ramasamy wrote: > Hi, > Within a FreeBSD system, I want to telnet to another system and bridge that > session to the > console port so that when an user connects to the system via console port, > it is automatically > redirected to other system for I

Re: Bridging console port to a telnet session

2007-01-16 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi, > Within a FreeBSD system, I want to telnet to another system and bridge that > session to the > console port so that when an user connects to the system via console port, > it is automatically > redirected to other system for

Bridging console port to a telnet session

2007-01-16 Thread Kailas Ramasamy
Hi, Within a FreeBSD system, I want to telnet to another system and bridge that session to the console port so that when an user connects to the system via console port, it is automatically redirected to other system for I have already established a telnet session. Your help is greatly appreciate

Re: 5.4 -- bridging, ipfw, dot1q

2005-08-14 Thread Julian Elischer
l, you COULD pass it out to a netgraph node that strips off the header and stores the info in a tag, and then passes it back to ipfw, but I don't know how the details would work. (I haven't been in ifpw since it was rewritten). Alternatively you could use netgraph bridging and tehnetgraph

Re: 5.4 -- bridging, ipfw, dot1q

2005-08-13 Thread Dan Mahoney, System Admin
lan interfaces on each of the physical ones, then define N bridges between the corresponding vlans (and i think there is a limit on how large N can be). It's worse than that. The device has four bridged interfaces. One up, three down to three switches. Each switch holds 24 vlans. Th

Re: 5.4 -- bridging, ipfw, dot1q

2005-08-12 Thread Luigi Rizzo
On Sat, Aug 13, 2005 at 12:49:56AM +0200, Jeremie Le Hen wrote: > Hi, > > > I am afraid the existing code cannot help you. > > The packets you see are encapsulated in 802.1q aka VLAN frames, > > and since ipfw2 does not try to decapsulate the packets, you > > don't get to see the IP headers. > >

Re: 5.4 -- bridging, ipfw, dot1q

2005-08-12 Thread Jeremie Le Hen
Hi, > I am afraid the existing code cannot help you. > The packets you see are encapsulated in 802.1q aka VLAN frames, > and since ipfw2 does not try to decapsulate the packets, you > don't get to see the IP headers. > > Your most reasonable option would be to write a new ipufw2 opcode, > say som

Re: 5.4 -- bridging, ipfw, dot1q

2005-08-12 Thread Luigi Rizzo
@ earlier, but upon further investigation > of the issue, I realize that I basically need a "hack". > > Warning, long. > > My original question: > > [begin] > > I'm setting up a bridging firewall where the packets are passing through > on dot1q trunks.

5.4 -- bridging, ipfw, dot1q

2005-08-12 Thread Dan Mahoney, System Admin
Note: I posted this to questions@ earlier, but upon further investigation of the issue, I realize that I basically need a "hack". Warning, long. My original question: [begin] I'm setting up a bridging firewall where the packets are passing through on dot1q trunks. Figure si

Re: Interface Bonding & Bridging problem

2004-09-11 Thread Peter Kieser
today, hope for tomorrow." // - Original Message - From: "SharkTECH Maillists" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 11, 2004 5:22 AM Subject: Interface Bonding & Bridging problem Hello, I have been running a FreeBSD 4.10-STABLE

Interface Bonding & Bridging problem

2004-09-11 Thread SharkTECH Maillists
side. The problem is although bonding seems to work fine as I can assign IPs at fec0/ngeth0 and send/receive packet with both cards using the virtual interface, I cannot get bridging to work at all between ngeth0/fec0(virtual) and em2(switch). There are no errors in logs, it just doesn't se

Re: Bridging Code - MAC Filtering

2004-06-16 Thread Jeremie Le Hen
> Does the bridging code in FreeBSD 5.2-RELEASE have the hability > to perform mac checking for a given IP? Since you can filter bridged packets using ipfw(8) and the latter is able to match against MAC address, I would say yes. Nevertheless, it may not be suitable enough for your

Re: Bridging Code - MAC Filtering

2004-06-15 Thread Jeremie Le Hen
> I couldn't find any help on the exact syntax. And the manpage says > it's somewhat difficult. > > Have you seen any practical article on this scenario? I couldn't find any. There is some documentation written on this topic by Alex Dupre: http://www.freebsd.org/doc/en/articles/filtering-bridges/

Re: Bridging Code - MAC Filtering

2004-06-15 Thread Aldrin Leal
PROTECTED]> wrote: > > > Does the bridging code in FreeBSD 5.2-RELEASE have the hability > > to perform mac checking for a given IP? > > Since you can filter bridged packets using ipfw(8) and the latter is able > to match against MAC address, I would say yes. Neve

Re: Bridging Code - MAC Filtering

2004-06-15 Thread David Malone
On Tue, Jun 15, 2004 at 03:57:12PM -0300, Aldrin Leal wrote: > Does the bridging code in FreeBSD 5.2-RELEASE have the hability > to perform mac checking for a given IP? You could use ipfw2, which can match both on IP address and MAC address.

Re: Bridging Code - MAC Filtering

2004-06-15 Thread Aldrin Leal
I'll check arpwatch, but i'm more interested in tuning the bridging code, making it suitable to my needs. Any pointers? - Original Message - From: Jose Hidalgo Herrera <[EMAIL PROTECTED]> Date: Tue, 15 Jun 2004 13:17:14 -0600 Subject: Re: Bridging Code - MAC Filtering

Bridging Code - MAC Filtering

2004-06-15 Thread Aldrin Leal
Hello, Does the bridging code in FreeBSD 5.2-RELEASE have the hability to perform mac checking for a given IP? If it doesn't, does any kernel hacker could point me to places where i could do it myself? Maybe proper pointers on debugging the bridging facilities, tips, general gui

Re: vlan/bridging broken in 4.8-release?

2003-05-27 Thread Marco Wertejuk
Hello Maxim, today I've tried your hack and it works, at least it seems so. It was not exactly the same setup but nearly the same. The bridge has two interfaces (fxp0, fxp1) and one host is connected to each interface (using crosslink cables, no other networking devices such as broken HP ProCurve

pccard bridging not functioning in 4.4-RELEASE

2001-11-01 Thread Joesh Juphland
I have two 3com 3c589 10BT pc cards. As vanilla as they come. In a previous thread, I described how a bit of pccard.conf mumbo jumbo made it possible for me to get both cards up and running in 4.3-RELEASE. It was explained to me that pccard.conf is deprecated, and that two pcmcia nics shoul

Re: IPFilter Bridging

2001-08-17 Thread Len Conrad
>I am wondering if anyone knows of any workarounds to >get IPFilter to filter across an ethernet bridge. this a FAQ, or at least a Recently AQ. ipfilter bridging only works on OpenBSD Len http://MenAndMice.com/DNS-training http://BIND8NT.MEIway.com : ISC BIND 8.2.4 for NT4 &

IPFilter Bridging

2001-08-16 Thread Hans Zaunere
Hello, I am wondering if anyone knows of any workarounds to get IPFilter to filter across an ethernet bridge. The bridge is working fine, and so is ipf, but ipf has no effect on any packets that go across the bridge. Pings to localhost are monitored and filtered, but that's about it. Any combi

Details ... (please confirm or deny pccard bridging)

2001-07-17 Thread Joesh Juphland
/etc/rc.conf looks like this: pccard_enable="YES" pccard_mem="DEFAULT" pccardd_flags=" -i 10 -i 15" removable_interfaces="ep0 ep1" network_interfaces="lo0" (I have tried with and without that last lo0 line) and /etc/defaults/pccard.conf looks like this: config auto "ep0" 10 config auto "ep1"

please confirm or deny - bridging possible between PC cards ?

2001-07-17 Thread Joesh Juphland
Ok, so I finally got two identical "ep" cards to come up at the same time and both work. Thanks. But when I run: sysctl -w net.link.ether.bridge=1 Nothing happens. They don't get put in promiscuous mode, and bridging does not get turned on, even though I have bridging in

Re: bridging with pcmcia cards

2001-06-29 Thread Joesh Juphland
thank you - this was helpful. One last question - when you say that bridging cannot work with wi cards because they do not support promiscuous transmission, this makes me wonder two things: 1. Do you mean the wi driver does not support this, or you mean the actual physical card itself is

Re: bridging with pcmcia cards

2001-06-28 Thread Nick Sayer
Julian Elischer wrote: > bridging is not a function of it being a pc-card.. This is true, particularly with netgraph bridging. > actually bridging may already work with wi cards > also netgraph bridgiung may also work... > Bridging cannot work with wi cards, since they do

Re: bridging with pcmcia cards

2001-06-26 Thread Doug Ambrisko
Joesh Juphland writes: | | Great. | | Can I already bridge with an* ? And does this mean that bridging in | general with pc cards is a-ok ? This has been reported to work with the "an" driver with netgraph bridging. Doug A. To Unsubscribe: send mail to [EMAIL PROTECTED] with &q

Re: bridging with pcmcia cards

2001-06-26 Thread Julian Elischer
bridging is not a function of it being a pc-card.. actually bridging may already work with wi cards also netgraph bridgiung may also work... On Tue, 26 Jun 2001, Joesh Juphland wrote: > > Great. > > Can I already bridge with an* ? And does this mean that bridging in >

Re: bridging with pcmcia cards

2001-06-26 Thread Joesh Juphland
Great. Can I already bridge with an* ? And does this mean that bridging in general with pc cards is a-ok ? thanks. >you WILL be able to bridge with WI cards >no time estimates though.. > > >On Tue, 26 Jun 2001, Joesh Juphland wrote: > > > > > Recently on th

Re: bridging with pcmcia cards

2001-06-26 Thread Julian Elischer
ly, if the answer to #2 was 'yes', can I bridge between ep0 and an0 > ? > > I am just trying to figure out if the difficulties with 'wi' bridging are an > odd, isolated case, or if bridging on pcmcia cards is, in general, > difficult. > > Any further comm

Re: bridging with pcmcia cards

2001-06-26 Thread Alfred Perlstein
I bridge between ep0 and an0 > ? > > I am just trying to figure out if the difficulties with 'wi' bridging are an > odd, isolated case, or if bridging on pcmcia cards is, in general, > difficult. Ethernet bridging should work, however we can't the wireless bridgi

bridging with pcmcia cards

2001-06-26 Thread Joesh Juphland
'an' (cisco aironet cards) ? 3. can I bridge between two 'ep' cards (3com pcmcia) ? 4. Finally, if the answer to #2 was 'yes', can I bridge between ep0 and an0 ? I am just trying to figure out if the difficulties with 'wi' bridging are an odd,

Re: trouble with 802.11 and kernel bridging (more)

2001-06-26 Thread Terry Lambert
Duncan Barclay wrote: > I use IBSS and routing at home (with DHCP on a short timeout) > to create seperate wired and wireless IP subnets. The FreeBSD > box routes between the two and the external Cable Modem seamlessly. > > What disadvantages does this setup have compared with using a > true acce

Re: trouble with 802.11 and kernel bridging (more)

2001-06-25 Thread Duncan Barclay
- Original Message - From: "list tracker" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, June 25, 2001 3:27 AM Subject: Re: trouble with 802.11 and kernel bridging (more) > > ok, thank you! This explains my in

Re: trouble with 802.11 and kernel bridging (more)

2001-06-24 Thread Julian Elischer
list tracker wrote: > > ok, thank you! This explains my inability to perform bridging like I > expected to > > >I've been told the "wi" driver can't do bridging. The Cisco/Aironet > >"an" driver can. Patches were submitted so you ca

Re: trouble with 802.11 and kernel bridging (more)

2001-06-24 Thread list tracker
ok, thank you! This explains my inability to perform bridging like I expected to >I've been told the "wi" driver can't do bridging. The Cisco/Aironet >"an" driver can. Patches were submitted so you can do this. They are >in the tree. If I want

trouble with 802.11 and kernel bridging....

2001-06-24 Thread list tracker
I have compiled options BRIDGE into my kernel. (also options IPFIREWALL, and IPSTEALTH, but probably not important). So I booted up with ep0 and wi0 in their slots, everything is great. I set up bridging with: sysctl -w net.link.ether.bridge=1 then made sure everything was wide open

Re: bridging on specific devices

2001-05-07 Thread Luigi Rizzo
> Hello, > > I'm using 4.2 release and i need bridging. > Luigi tells in the manpage that the option > to select specific devices for bridging is > still in development. > > Does anybody know how far this work is done > in 4.3 stable ? it works on 4.3-RELEASE

bridging on specific devices

2001-05-07 Thread Marco Wertejuk
Hello, I'm using 4.2 release and i need bridging. Luigi tells in the manpage that the option to select specific devices for bridging is still in development. Does anybody know how far this work is done in 4.3 stable ? I need this feature very urgently, and all of my experiments

if_dc and bridging

2001-04-25 Thread Jacques Fourie
When doing bridging (Luigi's standard bridging code) using two Davicom DM9102A NIC's, I am seeing some strange results. If I do a 'ping -s 8000' between two PC's sitting on either side of the bridge, I see a whole bunch of TX underrun errors on both NIC's of th

RE: if_dc and bridging

2001-04-25 Thread Guy Helmer
FWIW, we have seen similar problems (poor throughput, TX underrun, and watchdog timeouts) with plain TCP (not bridging) on systems with built-in Davicom DM9102 devices running FreeBSD 4.0 and 4.2. Reboot improves the performance for a while. There seems to be a few problems with the Davicom

Re: vmware changes result in nasty bridging mess

2000-08-08 Thread Vladimir N. Silyaev
On Tue, Aug 08, 2000 at 02:36:02PM +0900, Akinori -Aki- MUSHA wrote: > At a quick glance, "start_bridge" doesn't seem to have chance to be 1, > does it? It's depend. I'm pretty tired that discussian about bridging. So if people want to use bridge let set start_

Re: vmware changes result in nasty bridging mess

2000-08-07 Thread Akinori -Aki- MUSHA
At a quick glance, "start_bridge" doesn't seem to have chance to be 1, does it? And, what's the difference among those three values of "bridge"? > + bridge="_bridge_on" > + bridge="_bridge" > + bridge="_bridge_off" -- /

Re: vmware changes result in nasty bridging mess

2000-08-07 Thread Vladimir N. Silyaev
Ok, guys. See in the attachment fix, you should apply it to prevent current behavior. On Sun, Aug 06, 2000 at 07:14:59PM -0400, Robert Watson wrote: > On Thu, 3 Aug 2000, Vladimir N. Silyaev wrote: > > > >Bridging on by default may > > >have nasty side effects for

Re: vmware changes result in nasty bridging mess

2000-08-06 Thread Kris Kennaway
On Sun, 6 Aug 2000, Robert Watson wrote: > Un-announced, the vmware port enabled bridging between the ethernet > interfaces on my notebook This is bad - ethernet segments should not be bridged without explicit user confirmation, because they are commonly separated precisely for security r

Re: vmware changes result in nasty bridging mess

2000-08-06 Thread Robert Watson
On Thu, 3 Aug 2000, Vladimir N. Silyaev wrote: > >Bridging on by default may > >have nasty side effects for multi-interface machines (especially security > >side effects). > It's several ways to work around about that: > - compile kernel without bridging support. &g

Re: vmware changes result in nasty bridging mess

2000-08-03 Thread Vladimir N. Silyaev
in-- reading table >... > >The vmware2 port now seems to enable bridging by default, and generate a >kernel message for every ethernet packet sent. FreeBSD bridge code doesn't have any vmware related modifications. Only one modification what was impelmented, it's a special

RE: vmware changes result in nasty bridging mess

2000-08-03 Thread Robert Watson
On Thu, 3 Aug 2000, Reinier Bezuidenhout wrote: > I'm using vmware2 in a different way ... I do not have bridging enabled > in the kernel. I'm using the host method although I do not have > a "legal" subnet on the other side. That was the configuration I was us

RE: vmware changes result in nasty bridging mess

2000-08-03 Thread Reinier Bezuidenhout
I'm using vmware2 in a different way ... I do not have bridging enabled in the kernel. I'm using the host method although I do not have a "legal" subnet on the other side. I've ment to contact the port maintainer so he can add this to the Hints.FreeBSD file. I'

vmware changes result in nasty bridging mess

2000-08-02 Thread Robert Watson
bridge_in-- reading table bridge_in-- reading table bridge_in-- reading table bridge_in-- reading table bridge_in-- reading table bridge_in-- reading table bridge_in-- reading table bridge_in-- reading table bridge_in-- reading table ... The vmware2 port now seems to enable bridging by default

Re: bridging

2000-07-10 Thread Wes Peters
unity > > to act as a repeater (not that you'd want to anyway) to have a > > single collision domain. > > You know, you are right...never thought it > through completely before I sent my reply. Sorry > everyone for the wasted bandwidth. > >

Re: bridging

2000-07-07 Thread Nick Rogness
On Fri, 7 Jul 2000, Narvi wrote: > > On Thu, 6 Jul 2000, Sean Lutner wrote: > > > > > > > > Bridges create a broadcast zone. broadcast packets will cross the bridge > > > unobstructed. > > > > OK. So do bridged interfaces fall within the same collision > > domain?... or are they just

Re: bridging

2000-07-07 Thread Nick Rogness
a > single collision domain. You know, you are right...never thought it through completely before I sent my reply. Sorry everyone for the wasted bandwidth. Have 1 more question (has to do with this bridging deal): Anyone working on load-sharing/load-bal

Re: bridging

2000-07-07 Thread Louis A. Mamakos
They can't be in the same collision domain -- the only way to do that is to have an Ethernet repeater which repeats bit by bit fron one segment to another, and propagating a collision on one segment as a jam on another. On a FreeBSD box, where you interfaces to ethernet segments are NIC cards, y

Re: bridging

2000-07-07 Thread Narvi
On Thu, 6 Jul 2000, Nick Rogness wrote: > On Thu, 6 Jul 2000, Sean Lutner wrote: > > > > > Bridges create a broadcast zone. broadcast packets will cross the bridge > > unobstructed. > > OK. So do bridged interfaces fall within the same collision > domain?... or are they just mem

Re: bridging

2000-07-07 Thread Robert Watson
domain?... or are they just members of the same broadcast domain? FreeBSD bridging support places nodes in the same broadcast domain, but different collision domains. As such, you may see reordering of packets between segments, and packets may be lost transitting between segments. FreeBSD

Re: bridging

2000-07-06 Thread Nick Rogness
On Thu, 6 Jul 2000, Sean Lutner wrote: > > Bridges create a broadcast zone. broadcast packets will cross the bridge > unobstructed. OK. So do bridged interfaces fall within the same collision domain?... or are they just members of the same broadcast domain? Nick Rogness - Spe

Re: bridging

2000-07-06 Thread Sean Lutner
Bridges create a broadcast zone. broadcast packets will cross the bridge unobstructed. On Thu, 6 Jul 2000, Nick Evans wrote: > Correct me if I am wrong, but isn't bridging of two interfaces supposed to > make a duplicate of the traffic from one onto another? Why is it then that >

Re: bridging

2000-07-06 Thread Ted Wisniewski
(* On Thu, Jul 06, 2000 at 12:13:07PM -0400, Nick Evans wrote: (* > Correct me if I am wrong, but isn't bridging of two interfaces supposed to (* > make a duplicate of the traffic from one onto another? Why is it then that (* > on the second interface I bridge to I only see

Re: bridging

2000-07-06 Thread Dennis
At 12:13 PM 7/6/00 -0400, Nick Evans wrote: > > Correct me if I am wrong, but isn't bridging of two interfaces supposed to > make a duplicate of the traffic from one onto another? Why is it then that on > the second interface I bridge to I only see broadcast and multicast packe

Re: bridging

2000-07-06 Thread Jesper Skriver
On Thu, Jul 06, 2000 at 12:13:07PM -0400, Nick Evans wrote: > Correct me if I am wrong, but isn't bridging of two interfaces supposed to > make a duplicate of the traffic from one onto another? Why is it then that > on the second interface I bridge to I only see broadcast and multi

bridging

2000-07-06 Thread Nick Evans
Title: bridging Correct me if I am wrong, but isn't bridging of two interfaces supposed to make a duplicate of the traffic from one onto another? Why is it then that on the second interface I bridge to I only see broadcast and multicast packets? I have fxp0 and fxp1 acting as a bridge,

Re: Bridging problems.. (WaveLan related?)

2000-07-01 Thread Mark Newton
dress as the source. Apparrently, > the card needs to be set up as an access point (or something) > to do bridging. You can make it run as an access point... if and only if you're prepared to produce an 802.11 protocol suite to run in the FreeBSD kernel, because you won't b

Re: Bridging problems.. (WaveLan related?)

2000-06-30 Thread Blaz Zupan
> On my end, I have a box with a wi0 and fxp0--I was hoping to set it > up to do transparent bridging. So far however, I can't get anything > on this side of the bridge box to talk to the outside world. I > can see all the network traffic from my box, however I can't tal

Re: Bridging problems.. (WaveLan related?)

2000-06-30 Thread Chris Csanady
something) to do bridging. Is there a way to do this in the current driver? If not, are there plans? Chris To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Bridging problems.. (WaveLan related?)

2000-06-30 Thread Chris Csanady
I have been trying for over a week now to get bridging working, but without success. I have tried both 4.0 and current, but with no luck. Anyways, my setup is as follows.. On one end is a Lucent WavePoint attached to the outside world. (Some sort of switch I believe. I really don't under

Re: IPv6 & Bridging don't work together

2000-04-29 Thread Luigi Rizzo
Nick, are you sure the problem does not depend upon having bridge_ipfw=1 ? I don't think there is anything else IPv4-specific in the bridging code, if it was we would also have problems with IPv4/IPX and other non-ip protocols. cheers luigi > Alas, > IPv6 does not app

IPv6 & Bridging don't work together

2000-04-29 Thread Nick Sayer
both of the prefixes show up on all of the hosts. I don't really care if I can bridge IPv6 or not, truth be told. With IPv6 the vast number of subnets makes it unnecessary to bridge. But I need to be able to either keep the two interfaces totally separate despite the bridging of other prot

Re: RFC: if_wi.c bridging patch

2000-04-13 Thread Jim Flowers
We were unable to get a wi configured on 4.0 release yesterday but it may be that we didn't have the time to check out the configuration fully. Was never recognized on boot-up. We've got a few more to get configured over the next week so we'll put your patch in and try again. Jim Flowers <[E

RFC: if_wi.c bridging patch

2000-04-13 Thread Nick Sayer
I have had some wi cards for a while, and while I have managed to get an Airport to work (a friend helped me out), I believe that adding wi to the list of bridge compatible interfaces may be helpful. According to the documentation, the IBSS mode of the driver doesn't work. That's too bad, as in