Howdy,
For those who use PerForce and want to work on Dingo there is
now a dingo branch, named "dingo". The dingo branch contains
all of src, not just sys, as I suspect there are userland bits
we'll want to do. I know I'll be doing userland things.
Please
I have done this 2 years ago for FreeBSD 4-STABLE
in sys/net/if_vlan.c in vlan_config(), replace
if (p->if_data.ifi_type != IFT_ETHER)
return EPROTONOSUPPORT;
with
if (p->if_data.ifi_type != IFT_ETHER &&
p->if_data.ifi_type != IFT_L2VLAN)
ok, i'll simplify my question -
we have vlan traffic, which is transfered via double tagged vlans (nested
vlans). Such functions are supported in some advanced switches (AT-8948). The
problem is - we cannot route those double-tagged vlans using freebsd machines.
Or maybe it is possible?
let's
There have been a few reports by users of front end web proxies and other
systems under FreeBSD that port randomization causes them problems under
load. This seems to be due to a combination of port randomization and
rapid connections to the same host causing ports to be recycled before the
IS
On Fri, Dec 17, 2004 at 03:03:49PM -0800, Mike Hunter wrote:
> On Dec 17, "Brooks Davis" wrote:
>
> > On Fri, Dec 17, 2004 at 01:22:02PM +0200, Donatas wrote:
> > > hello,
> > > i'd like to ask if there's any possibility to pass double tagged vlan
> > > packets through freebsd 5.x routers?
> > >