diff options
author | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-03-07 00:09:51 +0000 |
---|---|---|
committer | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-03-07 00:09:51 +0000 |
commit | 01d58dbf4e0e444dff4189e3b743064095fd5ec5 (patch) | |
tree | dc444e4251216b9b8490cbec2e9c1fe54c4c6b06 /target/linux/omap24xx/base-files | |
parent | 9de501aa569d331a6342cca5d3d3347dcc4c32d9 (diff) |
n810: Add usb networking to default net config
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25917 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/omap24xx/base-files')
-rw-r--r-- | target/linux/omap24xx/base-files/etc/config/network | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/target/linux/omap24xx/base-files/etc/config/network b/target/linux/omap24xx/base-files/etc/config/network index f92cb34f2..8207443f3 100644 --- a/target/linux/omap24xx/base-files/etc/config/network +++ b/target/linux/omap24xx/base-files/etc/config/network @@ -1,9 +1,15 @@ 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 proto dhcp + option netmask 255.255.255.0 +config interface usb + option ifname usb0 + option proto static + option ipaddr 192.168.168.168 + option netmask 255.255.255.0 + option ip6addr fe80::810:1 |