On 2011-03-14, Christophe Etcheverry <[email protected]> wrote:
> I use OpenBSD i386 -current on a Soekris net5501 as a gateway using
> pppoe(4) to create only an ipv4 connection. I never had any problem but
> since an upgrade last week, pppoe(4) try to create an ipv6 connection too.
I don't see why this would be anything new - pppoe(4), or more specifically
sppp(4), has supported v6 since 2007.
you can add -inet6 to the top of hostname.pppoe0 (or type "ifconfig pppoe0
-inet6") and sppp(4) no longer attempts IPV6CP.
while reading if_spppsubr.c on a related but different reason I came across
this gem which I just thought I'd share with misc@:
static u_short interactive_ports[8] = {
0, 513, 0, 0,
0, 21, 0, 23,
};
wow. ugh.