I replaced a Telekom Speedport Smart 4 router with an x68 OpenWrt device. The registration with the ISP works great thanks to this tutorial:
But now I would like to be able to use my phone again. The phone is connected to the speedport, but the speedport wants to establish a pppoe connection. I have configured rp-pppoe as suggested in various tuts. Unfortunately I can't get a connection with the speedport.
config pppoe_server
option ac_name 'access-concentrator-name'
list service_name 'service-name1'
list service_name 'service-name2'
option maxsessionsperpeer '0'
option localip '192.168.2.1'
option maxsessions '64'
option optionsfile '/etc/ppp/pppoe-server-options'
option randomsessions '1'
option unit '0'
option offset '0'
option timeout '60'
option mss '1468'
option sync '0'
option interface 'lan'
option firstremoteip '192.168.3.2'
# PPP options for the PPPoE server
# LIC: GPL
#require-pap
require-chap
login
lcp-echo-interval 10
lcp-echo-failure 2
mru 1492
mtu 1492
usepeerdns
Do I need to create a ppp interface? How do I assign the VLAN ID 7?
