Fixes problem with router advertisment previously enabled by default on the lan interface.
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Copyright (C) 2013-2015 OpenWrt.org
+
+. /lib/functions/uci-defaults.sh
+board_config_update
+json_is_a network object && exit 0
+ucidef_set_interface_lan 'eth0' dhcp
+[ -d /sys/class/net/eth1 ] && ucidef_set_interface_wan 'eth1'
+board_config_flush
+exit 0
@@ -1,10 +0,0 @@
-
-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'