Hello,
I am trying to configure 2 pppoe accounts over the same wire with linksys wrt54gl and kamikaze 8.09.2 (brcm-2.4.) My provider gave me 2 pppoe accounts to be used with the same vpi but different vci (35 for the first and 50 for the second.)
I have defined 2 wan sections in /etc/config/network:
config 'interface' 'wan1'
option 'ifname' 'eth0.1'
option 'proto' 'pppoe'
option 'username' 'wan1user'
option 'password' 'wan1passwd'
option 'vpi' '8'
option 'vci' '35'
option 'defaultroute' '1'
config 'interface' 'wan2'
option 'ifname' 'eth0.1'
option 'proto' 'pppoe'
option 'username' 'wan2user'
option 'password' 'wan2passwd'
option 'vpi' '8'
option 'vci' '50'
option 'defaultroute' '0'
When I do 'ifup wan1', it works fine: I am connected with the IP address affected to the first account. Bt then, if I do 'ifup wan2', the router kills the first session before starting the second one and I have the following on the syslog:
Mar 24 13:23:31 OpenWrt daemon.info pppd[12315]: Terminating on signal 15
Mar 24 13:23:31 OpenWrt daemon.info pppd[12315]: Connect time 2.7 minutes.
Mar 24 13:23:31 OpenWrt daemon.info pppd[12315]: Sent 0 bytes, received 0 bytes.
Mar 24 13:23:31 OpenWrt daemon.notice pppd[12315]: Connection terminated.
Mar 24 13:23:32 kernel: eth0.1: del 01:00:5e:00:00:01 mcast address from vlan interface
Mar 24 13:23:32 kernel: eth0.1: del 01:00:5e:00:00:01 mcast address from master interface
Mar 24 13:23:33 kernel: eth0.1: add 01:00:5e:00:00:01 mcast address to master interface
Mar 24 13:23:34 OpenWrt daemon.info pppd[12482]: Plugin rp-pppoe.so loaded.
Mar 24 13:23:34 OpenWrt daemon.notice pppd[12483]: pppd 2.4.3 started by root, uid 0
Mar 24 13:23:40 OpenWrt daemon.info pppd[12483]: PPP session is 6528
Mar 24 13:23:40 OpenWrt daemon.info pppd[12483]: Using interface ppp0
Mar 24 13:23:40 OpenWrt daemon.notice pppd[12483]: Connect: ppp0 <--> eth0.1
Mar 24 13:23:40 OpenWrt daemon.info pppd[12483]: CHAP authentication succeeded
Any help on how to make this work ? I am really out of idea...
Thank you !
- vma