1config interface 'loopback' 2 option device 'lo' 3 option proto 'static' 4 option ipaddr '127.0.0.1' 5 option netmask '255.0.0.0' 6 7config globals 'globals' 8 option ula_prefix 'fd72:5afb:a7cf::/48' 9 10config device 11 option name 'br-lan' 12 option type 'bridge' 13 list ports 'eth0' 14 15config device 16 option name 'br-wifi0' 17 option type 'bridge' 18 list ports 'eth0.0' 19 20config device 21 option name 'br-wifi1' 22 option type 'bridge' 23 list ports 'eth0.1' 24 25config device 26 option name 'eth0.0' 27 option macaddr '28:80:88:2A:6D:01' 28 29config device 30 option name 'eth0.1' 31 option macaddr '28:80:88:2A:6D:02' 32 33config interface 'wan' 34 option device 'br-lan' 35 option proto 'static' 36 option ip6assign '30' 37 option dns '8.8.8.8' 38 39config interface 'wifi0' 40 option device 'br-wifi0' 41 option proto 'static' 42 option netmask '255.255.255.128' 43 option ipaddr '192.168.99.1' 44 45config interface 'wifi1' 46 option device 'br-wifi1' 47 option proto 'static' 48 option netmask '255.255.255.128' 49 option ipaddr '192.168.99.129' 50