From 0c5ad68128d49fec8b8770c343f30360c91c1b81 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Tue, 31 Jul 2018 11:37:06 +0000 Subject: Use default network configuration Fixes problem with router advertisment previously enabled by default on the lan interface. --- files/etc/board.d/99-default_network | 17 +++++++++++++++++ files/etc/config/network | 10 ---------- 2 files changed, 17 insertions(+), 10 deletions(-) create mode 100755 files/etc/board.d/99-default_network delete mode 100644 files/etc/config/network diff --git a/files/etc/board.d/99-default_network b/files/etc/board.d/99-default_network new file mode 100755 index 0000000..7a0b054 --- /dev/null +++ b/files/etc/board.d/99-default_network @@ -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 diff --git a/files/etc/config/network b/files/etc/config/network deleted file mode 100644 index 6d5e787..0000000 --- a/files/etc/config/network +++ /dev/null @@ -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' -- cgit v1.2.3