On Fri, Oct 08, 1999 at 06:09:56PM +0000, John wrote:

> What exactly is net-pf-10 ?  I usually get it when I try to connect
> somewhere (ex. ftp), apparently.  pppd 2.3.10, linux 2.3.18, etc.  I
> don't think it has any huge impact on performance, but I do think it slows
> attempted-connections made to the outside world.  

Protocol family numbers should be listed in a header file somewhere -- for
glibc2 at least it's /usr/include/socketbits.h:

/* Protocol families.  */
#define PF_UNSPEC       0       /* Unspecified.  */
#define PF_LOCAL        1       /* Local to host (pipes and file-domain).  */
#define PF_UNIX         PF_LOCAL /* Old BSD name for PF_LOCAL.  */
#define PF_FILE         PF_LOCAL /* POSIX name for PF_LOCAL.  */
#define PF_INET         2       /* IP protocol family.  */
[..]
#define PF_INET6        10      /* IP version 6.  */

So you're obviously lucky enough to be running some utils / applications
that are IPv6 aware; either alias net-pf-10 to off in /etc/modules.conf [0],
or compile IPv6 support into the kernel (or as a module) if you want to play
with it.

[0] Apparently /etc/conf.modules support in modutils will be going away at
some point in the future.

-- 
"It is easier for a camel to pass through the eye of a needle if it
 is lightly greased."     -- Kehlog Albran, "The Profit" 

-
To unsubscribe from this list: send the line "unsubscribe linux-ppp" in
the body of a message to [EMAIL PROTECTED]

Reply via email to