Last active
March 29, 2020 17:26
-
-
Save darkarnium/b202ded39d55e65cc33ce4cb2b73e7e5 to your computer and use it in GitHub Desktop.
LEDE VDSL bridge for BT VDSL on VRX220
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config interface 'loopback' | |
option ifname 'lo' | |
option proto 'static' | |
option ipaddr '127.0.0.1' | |
option netmask '255.0.0.0' | |
config dsl 'dsl' | |
option annex 'b' | |
config interface 'xdsldp' | |
option ifname 'dsl0.101' | |
option type '8021q' | |
option mtu '1492' | |
config interface 'eth0' | |
option ifname 'eth0' | |
option ipv6 '0' | |
config interface 'xdslmgmt' | |
option ipv6 '0' | |
option proto 'static' | |
option ifname 'eth0.1337' | |
option ipaddr '172.31.254.1' | |
option gateway '172.31.254.2' | |
option netmask '255.255.255.252' | |
config interface 'xdslpppoe' | |
option ipv6 '0' | |
option type 'bridge' | |
option ifname 'eth0.101 dsl0.101' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment