summaryrefslogtreecommitdiffstats
path: root/src/arm/openwrt_demo/1_buildimage/resources/config/network
blob: eef18e82cbec97192f08ec1da0beb234472b3e14 (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
config interface 'loopback'
	option ifname 'lo'
	option proto 'static'
	option ipaddr '127.0.0.1'
	option netmask '255.0.0.0'

config globals 'globals'
	option ula_prefix 'fd5f:b3f4:4633::/48'

config interface 'lan'
	option ifname 'eth0'
	option proto 'static'
	option ipaddr '10.244.1.42'
	option netmask '255.255.255.0'
	option gateway '10.244.1.1'

config interface 'wan'
	option ifname 'net0'
	option proto 'dhcp'

config route 'r6'
	option interface 'eth0'
	option target '10.244.0.0'
	option netmask '255.255.0.0'
	option gateway '10.244.1.1'