Hello,
my new DSL provider uses IPv6 with DS-Lite tunnel for IPv4 support. Now, I'm trying to set up a proper Internet connectivity reusing my old hardware. Those are a Speedport Hybrid DSL router (by Telekom) and a TP-Link Achrcher C7 with OpenWRT on board. The setup looks like follows:
DSL -> Speedport -> OpenWRT (DS-Lite) -> LAN
Speedport provides an IPv6 connection to the Internet (google and co. work fine), but it offers very limited settings. Also, it is not capable of DS-Lite. So, my idea is to use OpenWRT to manage the DS-Lite. However, I am facing some troubles here.
First, my provider advertises the AFTR address on DHCP, but it 'ends' on the Speedport, so I have no access to this information. On the Internet, I found some suggestions, which seem reasonable to me. However, I cannot yet verify those since the tunnel does not work. Is there a possibility to manually or automatically request the DHCP information being behind a router/gateway? Or any other workaround on this?
Then, I cannot verify my DS-Lite setup is correct. I installed the 'ds-lite' package, but the autoconfig feature did not work properly. So, I had to set it up by my own. Using this manual, I updated the /etc/config/network to:
...
config interface 'wan'
option proto 'dslite'
option peeraddr '2001:1438:fff:30::1' # AFTR Address found on the Internet
option encaplimit 'ignore'
option tunlink 'wan6'
config interface 'wan6'
option device 'eth0.2'
option proto 'dhcpv6'
...
Afterwards, I was able to make changes to this interface on LUCI, which apparently also updates the Routing table etc. Also, I put the 'wan' interface to the firewall group of 'wan6'.
However, the DS-Lite tunnel seems not to work properly. I cannot ping any server on the internet. On LUCI, interface 'wan' shows the increasing number of RX packets, but TX counter stays at '0'. Also, there is also no 'wan6_4' interface, which, accordingly to the manual, should be created after connection.
Since I'm pretty new to OpenWRT, I would appreciate any help and any hints troubleshooting this issue.