X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/f21c448c6d0ec4a3b61c4d826eb8c1b668e10409..a8a833f845c7cf981ad46255271ef605098afd08:/package/base-files/x86-2.6/etc/config/network diff --git a/package/base-files/x86-2.6/etc/config/network b/package/base-files/x86-2.6/etc/config/network index fd0f557c0..f1ed97745 100644 --- a/package/base-files/x86-2.6/etc/config/network +++ b/package/base-files/x86-2.6/etc/config/network @@ -1,12 +1,13 @@ -# Network configuration file +# Copyright (C) 2006 OpenWrt.org -## LAN configuration -lan_ifname="br0" -lan_ifnames="eth1 eth2" -lan_proto="static" -lan_ipaddr="192.168.1.1" -lan_netmask="255.255.255.0" +config interface lan + option type bridge + option ifname "eth1 eth2" + option proto static + option ipaddr 192.168.1.1 + option netmask 255.255.255.0 + +config interface wan + option ifname eth0 + option proto dhcp -## WAN configuration -wan_ifname="eth0" -wan_proto="dhcp"