On Wed, Jun 13, 2007 at 08:32:28PM +0100, Bruce M. Simpson wrote: > Andrew Thompson wrote: > > Log: > > Add the vlan tag to the bridge route table. This allows a vlan trunk to > > be > > bridged, previously legitimate traffic was not passed as the bridge > > could not > > tell that it was on a different Ethernet segment. > > > > Very cool. Thanks for doing this. Your vtag changes made this very easy.
> > > > All non-tagged traffic is treated as vlan1 as per IEEE 802.1Q-2003 > > > Grrr. Made me look. ;-) > > I had confused this with the definition of untagged frame/priority > frame. The ethernet input path now does the right thing with VLAN ID 0, > so it should play fine with this change. I have priority frames mapped to vlan1 in bridge_rtupdate, as far as I can tell this is correct. 2325: bridge_rtupdate(...) 2334: /* 802.1p frames map to vlan 1 */ 2335: if (vlan == 0) 2336: vlan = 1; Andrew _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
