blob: 00c5b511a4d3eecf2b9a9e25eb1885d8f9b9c967 (
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
|
# Copyright (C) 2006 OpenWrt.org
config interface loopback
option ifname lo
option proto static
option ipaddr 127.0.0.1
option netmask 255.0.0.0
config device
option name br-lan
option type bridge
option ifname "eth0.1 eth0.2"
option mtu 1500
config interface lan
option ifname 'br-lan'
option proto static
option ipaddr 192.168.1.1
option netmask 255.255.255.0
config interface lan2
option ifname eth0.3
option type bridge
option proto static
option ipaddr 192.168.1.1
option netmask 255.255.255.0
|