diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2008-12-10 11:54:21 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2008-12-10 11:54:21 +0000 |
commit | 378d80d615a59a839a945d8c67dbe7ece99f6ef3 (patch) | |
tree | d41f7b9ad0d5b6f1d3fe9aae6d289c11139ba73f /target/linux/orion/base-files | |
parent | d9475220de9458914775d0abaa4003e4bb8ae7f0 (diff) | |
download | upstream-378d80d615a59a839a945d8c67dbe7ece99f6ef3.tar.gz upstream-378d80d615a59a839a945d8c67dbe7ece99f6ef3.tar.bz2 upstream-378d80d615a59a839a945d8c67dbe7ece99f6ef3.zip |
upgrade orion to 2.6.28-rc7
SVN-Revision: 13580
Diffstat (limited to 'target/linux/orion/base-files')
-rw-r--r-- | target/linux/orion/base-files/etc/config/network | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/target/linux/orion/base-files/etc/config/network b/target/linux/orion/base-files/etc/config/network new file mode 100644 index 0000000000..e7fdecd0e0 --- /dev/null +++ b/target/linux/orion/base-files/etc/config/network @@ -0,0 +1,22 @@ +# Copyright (C) 2008 OpenWrt.org + +config interface loopback + option ifname lo + option proto static + option ipaddr 127.0.0.1 + option netmask 255.0.0.0 + +config interface eth0 + option ifname eth0 + +config interface wan + option ifname wan + option proto dhcp + option hostname openwrt + +config interface lan + option ifname "lan1 lan2 lan3 lan4" + option type bridge + option proto static + option ipaddr 192.168.1.1 + option netmask 255.255.255.0 |