|
From: Olaf W. <wei...@ip...> - 2008-12-30 10:20:07
|
Any objections to making the same modification as SVN#2244 for 1.4 as well? See patch below. For reference: http://www.ipcop-forum.de/forum/viewtopic.php?f=28&t=23309 It seems possible to use PPPoE over a WLAN connection (did not know that was possible ;-)) However with rp-pppoe that is not possible as is, since in this case the interface ath0 (WLAN thru madwifi driver) is not accepted. When using nic-ath0 everything works OK. I have changed my 'normal' PPPoE DSL connection to use the same nic-eth1 instead of eth1 and that works OK too. Olaf =================================================================== RCS file: /cvsroot/ipcop/ipcop/src/rc.d/Attic/rc.red,v retrieving revision 1.29.2.62 diff -u -r1.29.2.62 rc.red --- ipcop/src/rc.d/rc.red 18 Oct 2007 11:27:43 -0000 1.29.2.62 +++ ipcop/src/rc.d/rc.red 30 Dec 2008 10:17:02 -0000 @@ -615,7 +615,7 @@ # PPPoE plugin system ('/sbin/modprobe pppoe'); my @pppcommand = ('/usr/sbin/pppd'); - push(@pppcommand,'plugin','rp-pppoe.so',"$netsettings{'RED_DEV'}"); + push(@pppcommand,'plugin','rp-pppoe.so',"nic-$netsettings{'RED_DEV'}"); if ($pppsettings{'DNS'} eq 'Automatic') { push(@pppcommand, ('usepeerdns')); } -- A weizen a day helps keep the doctor away. |