diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-07-16 04:35:09 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-07-16 04:35:09 +0000 |
commit | 7137c62c079326205bf936280ac1e4de83e1ed23 (patch) | |
tree | d89900074a6cc3aa3dec9b925bedbd2642da486d /target/linux/ixp4xx-2.6 | |
parent | a2740aaff691fc3913938cd7e4795bd5613f776c (diff) | |
download | upstream-7137c62c079326205bf936280ac1e4de83e1ed23.tar.gz upstream-7137c62c079326205bf936280ac1e4de83e1ed23.tar.bz2 upstream-7137c62c079326205bf936280ac1e4de83e1ed23.zip |
Set ixp4xx network config to static 192.168.1.1
SVN-Revision: 7995
Diffstat (limited to 'target/linux/ixp4xx-2.6')
-rw-r--r-- | target/linux/ixp4xx-2.6/base-files/default/etc/config/network | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ixp4xx-2.6/base-files/default/etc/config/network b/target/linux/ixp4xx-2.6/base-files/default/etc/config/network new file mode 100644 index 0000000000..1d5ded3728 --- /dev/null +++ b/target/linux/ixp4xx-2.6/base-files/default/etc/config/network @@ -0,0 +1,13 @@ +# 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 interface lan + option ifname eth0 + option proto static + option ipaddr 192.168.1.1 + option netmask 255.255.255.0 |