summaryrefslogtreecommitdiff
path: root/x86/config/network
blob: e342f5301bf9d1c9b50fc94608a5fc0233864894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 'fd72:5afb:a7cf::/48'

config device
	option name 'br-lan'
	option type 'bridge'
	list ports 'eth0'

config interface 'wan'
	option device 'br-lan'
	option proto 'static'
	option netmask '255.255.255.0'
	option ipaddr '192.168.96.2'
	option ip6assign '30'
	option gateway '192.168.96.1'
	option dns '8.8.8.8'
	option broadcast '192.168.96.3'

config 'interface' 'wifi'
	option 'proto' 'static'
	option 'ipaddr' '192.168.2.1'
	option 'netmask' '255.255.255.0'