DragonFly kernel List (threaded) for 2007-05
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]
Re: PPP/PPPoE users?
On Mon, May 21, 2007 at 09:05:13AM -0700, Matthew Dillon wrote:
> :Just wanted to know if it's a PEBKAC or not -- is anyone using PPP or PPPoE
> :on DragonFly 1.8 or later? Currently my router is running DragonFly
> :1.4, and when I tried to upgrade it to 1.8 last week, I found that
> :it's no longer able to establish PPPoE connection to my ISP for ADSL
> :connection. I seem to recall that it also failed on 1.6 many months ago,
> :but I'm not really sure. I'm using PPTP with mpd and I don't have a problem
> :with it.
> :
> :Any information would be appreciated.
> :Thanks.
>
> Hmm. It sounds like an excellent opportunity to tcpdump the network
> activity from 1.4 and 1.8 to see what's different. Something like:
>
> tcpdump -n -s 4096 -i interface -l <other options>
>
> And then add clauses until you can narrow the traffic down to just
> the pppoe initialization. Then compare 1.4 vs 1.8.
At first I thought it was something in the network code, too, but after
removing netgraph modules from the kernel and using kernel modules,
it works! The following is what I have in the config file which works
for 1.4 but not for 1.8 or HEAD:
options NETGRAPH
options NETGRAPH_BPF
options NETGRAPH_ETHER
options NETGRAPH_IFACE
options NETGRAPH_KSOCKET
options NETGRAPH_PPP
options NETGRAPH_PPPOE
options NETGRAPH_PPTPGRE
options NETGRAPH_SOCKET
options NETGRAPH_TTY
options NETGRAPH_VJC
On 1.8 or HEAD, it doesn't work either when I compiled these in the kernel
AND load the rest of netgraph modules via kldload. So I guess this is
either something is not available when netgraph modules are loaded,
or the order in which modules are loaded.
Cheers.
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]