Add network

This commit is contained in:
TED A. ⭕ 2025-08-07 12:01:18 +00:00
parent bd37536a75
commit ac4038b0b2
1 changed files with 32 additions and 0 deletions

32
network Normal file
View File

@ -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'