Probably this is a simple question, but I can't find an answer...
I have an ADSL router (Dlink DSL-524T) which runs OpenWrt Backfire 10.03.1. It connects to the internet using PPPoA: this is my /etc/config/network file:
config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'
config 'interface' 'lan'
option 'type' 'bridge'
option 'ifname' 'eth0 eth1'
option 'proto' 'static'
option 'netmask' '255.255.255.0'
option 'nat' '1'
option 'ipaddr' '192.168.1.6'
config 'atm-bridge'
option 'unit' '0'
option 'encaps' '11c'
option 'vpi' '8'
option 'vci' '35'
config 'interface' 'wan'
option '_orig_ifname' 'nas0'
option '_orig_bridge' 'false'
option 'proto' 'pppoa'
option 'encaps' 'vc'
option 'atmdev' '0'
option 'vci' '35'
option 'vpi' '8'
option 'username' 'x'
option 'password' 'x'
I would like to switch to PPPoE, but I am not able to write a correct network file (and I can't find any howto on the internet). Can someone help me?