Can someone help me figure out if this is configured correctly?
Im somewhat confused.
I have OpenWRT on my Fritz!Box 7520, directly connected to DSL so its also acting as a modem.
Set up VDSL connection following
: https://openwrt.org/docs/guide-user/network/wan/isp-configurations?s[]=adsl&s[]=ethernet#vdsl1
Installed DS-LITE because my internet did not work and it fixed it.
my /etc/config/network config is the following:
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fdf9:45cb:7ca7::/48'
option packet_steering '1'
config atm-bridge 'atm'
option vpi '1'
option vci '32'
option encaps 'llc'
option payload 'bridged'
option nameprefix 'dsl'
config dsl 'dsl'
option annex 'j'
option ds_snr_offset '0'
option xfer_mode 'ptm'
config device
option name 'br-lan'
option type 'bridge'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '60'
config device
option name 'dsl0'
option macaddr '74:42:7F:B6:BF:A6'
config interface 'wan'
option device 'dsl0.7'
option proto 'pppoe'
option username 'Hinternet/*******@de-access.de'
option password '********'
option ipv6 '1'
option peerdns '0'
list dns '9.9.9.9'
list dns '149.112.112.112'
config interface 'wan6'
option device '@wan'
option proto 'dhcpv6'
option reqaddress 'try'
option reqprefix 'auto'
option norelease '1'
option peerdns '0'
list dns '2620:fe::fe'
list dns '2620:fe::9'
one point of confusiong are the docs about ds-lite
: https://openwrt.org/docs/guide-user/network/ipv6_ipv4_transitioning#dual-stack_lite_tunnel_ds-lite_ipv4_in_ipv6
they show this config example:
# /etc/config/network
config interface 'wan6'
option device 'eth1'
option proto 'dhcpv6'
config interface 'wan'
option proto 'dslite'
option peeraddr '2001:db80::1' # Your ISP's DS-Lite AFTR
where for example
config interface 'wan'
option proto 'dslite'
option peeraddr
is completely different from mine
do i need to have
config interface 'wan'
option device 'dsl0.7'
option proto 'pppoe'
like told in ISP setup doc.
or do i need to have
config interface 'wan'
option proto 'dslite'
option peeraddr
like told in ds-lite docs?