Add network
This commit is contained in:
parent
bd37536a75
commit
ac4038b0b2
|
@ -0,0 +1,32 @@
|
|||
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 'fd7d:b885:1f29::/48'
|
||||
option packet_steering '2'
|
||||
|
||||
config device
|
||||
option name 'br-lan'
|
||||
option type 'bridge'
|
||||
list ports 'eth1'
|
||||
|
||||
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 interface 'wan'
|
||||
option proto 'pppoe'
|
||||
option device 'eth0'
|
||||
option username ''
|
||||
option password ''
|
||||
option ipv6 'auto'
|
||||
option keepalive '5 5'
|
||||
|
||||
config device
|
||||
option name 'eth1'
|
Loading…
Reference in New Issue