use lock to remove race conditions in bringing up ppp and dhcp that would lead to...
[openwrt-10.03/.git] / package / base-files / rb532-2.6 / etc / config / network
index 2bb48b886391bddee1befab5eb8a1a3e19ad9f08..82796905741150ab33f492e33d76cf64b04be3a7 100644 (file)
@@ -1,6 +1,12 @@
-# Network configuration file
 # Copyright (C) 2006 OpenWrt.org
 
-## LAN configuration
-lan_ifname="eth0"
-lan_proto="dhcp"
+config interface loopback
+       option ifname   lo
+       option proto    static
+       option ipaddr   127.0.0.1
+       option netmask  255.0.0.0
+
+config interface lan
+       option ifname   eth0
+       option proto    dhcp
+