Re: Recursive encapsulation could panic the Kernel

2002-12-17 Thread Sam Leffler
> > In -current mbufs can be tagged (see m_tag* in sys/mbuf.h); this'll let you > > do what you want. I've been slow to MFC them to -stable because there are > > some issues with copying packet headers that I want to resolve first. > > > > I thought about m_ext too. I agree that the m_tag looks be

[ANNOUNCE] Intel PRO/100 software developer manual released

2002-12-17 Thread '[EMAIL PROTECTED]'
Available at https://sourceforge.net/projects/e1000. The full title is: Intel 8255x 10/100 Mbps Ethernet Controller Family Open Source Software Developer Manual Revision 1.0 The manual covers the 82557, 82558, 82559, 82550, and 82551 Ethernet controllers. Thanks, Prafulla To Unsub

Re: Recursive encapsulation could panic the Kernel

2002-12-17 Thread Vincent Jardin
> > In -current mbufs can be tagged (see m_tag* in sys/mbuf.h); this'll let you > do what you want. I've been slow to MFC them to -stable because there are > some issues with copying packet headers that I want to resolve first. > I thought about m_ext too. I agree that the m_tag looks better. How

Re: mpd pptp server questions

2002-12-17 Thread Archie Cobbs
Yann Nottara wrote: > Dec 17 13:59:02 bull mpd: 192.168.0.10 -> 192.168.0.202 > Dec 17 13:59:02 bull mpd: [pptp2] IFACE: Up event > Dec 17 13:59:02 bull mpd: [pptp2] exec: /sbin/ifconfig ng0 192.168.0.10 > 192.168.0.202 netmask 0x -link0 > Dec 17 13:59:02 bull mpd: [pptp2] exec: /usr/sbi

Re: Recursive encapsulation could panic the Kernel

2002-12-17 Thread Sam Leffler
> With FreeBSD, there are many ways to create a recursive local encapsulation > loop within the IPv4 and IPv6 stack. For example, this problem shows up when : > - Netgraph with pptp is used or Netgraph with an ng_iface over UDP or any > more complex Netgraph topologies... > - gre interfaces >

[Netnice version 2 (For FreeBSD 4.7)]

2002-12-17 Thread Takashi Okumura
Dear Hackers, i would like to introduce my traffic control package for FreeBSD 4.7, netnice version 2, and recruit some alpha testers. Netnice Version 2: Alpha Release (Dec 10, 2002) =

mpd pptp server questions

2002-12-17 Thread Yann Nottara
Hi ! I'm using MPD 3.10 on a FreeBSD 4.4-STABLE #0: Sat Apr 13 19:16:07 CEST 2002 machine. I've setup a PPTP server allowing remote access to the local network for the Win2k integrated PPTP client. Works OK so far but I got some messages in my logs that I don't understand. I haven't found any

Re: Recursive encapsulation could panic the Kernel

2002-12-17 Thread Fabien THOMAS
we can use a TTL associated to the mbuf that is decremented each time we reach a possible 'point of loop'. the bad point is that we need a new entry in the mbuf... fabien VJ> Hi, VJ> With FreeBSD, there are many ways to create a recursive local encapsulation VJ> loop within the IPv4 and IPv6 st