fix minor typo & move loopback to network config
[openwrt-10.03/.git] / package / base-files / x86-2.6 / etc / config / network
1 # Copyright (C) 2006 OpenWrt.org
2
3 config interface loopback
4         option ifname   lo
5         option proto    static
6         option ipaddr   127.0.0.1
7         option netmask  255.0.0.0
8
9 config interface lan
10         option type     bridge
11         option ifname   "eth1 eth2"
12         option proto    static
13         option ipaddr   192.168.1.1
14         option netmask  255.255.255.0
15
16 config interface wan
17         option ifname   eth0
18         option proto    dhcp
19