1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-15 03:51:51 +00:00
openmptcprouter-feeds/openmptcprouter/files/etc/uci-defaults/1920-omr-network

128 lines
3 KiB
Text
Raw Normal View History

#!/bin/sh
2018-02-15 12:54:45 +00:00
. /lib/functions.sh
_setup_macaddr() {
2018-02-15 12:54:45 +00:00
uci -q get "network.$1_dev.macaddr" >/dev/null && return
uci -q set "network.$1_dev.macaddr=$2"
}
_setup_macvlan() {
2018-02-15 12:54:45 +00:00
uci -q get "network.$1_dev.ifname" >/dev/null && return
2018-02-15 12:54:45 +00:00
# do not create macvlan for vlan
local _ifname
_ifname=$(uci -q get "network.$1.ifname")
case "$_ifname" in
eth*.*) return ;;
esac
2018-02-15 12:54:45 +00:00
uci -q batch <<-EOF
set network.$1_dev=device
set network.$1_dev.name=$1
set network.$1_dev.type=macvlan
set network.$1_dev.ifname=$_ifname
2018-02-15 12:54:45 +00:00
set network.$1.ifname=$1
EOF
_macaddr=$(uci -q get "network.$1.macaddr")
_setup_macaddr "$1" "${_macaddr:-auto$(date +%s)}"
uci -q set "network.$1.type=macvlan" # legacy
}
2018-05-10 18:55:42 +00:00
_setup_multipath_off() {
uci -q get "network.$1.multipath" >/dev/null && return
uci -q set "network.$1.multipath=off"
}
_setup_wan_interface() {
uci -q batch <<-EOF
set network.$1=interface
set network.$1.ifname=$2
set network.$1.proto=static
set network.$1.ip4table=wan
set network.$1.multipath=$3
set network.$1.defaultroute=0
commit network
add_list firewall.@zone[1].network=$1
commit firewall
EOF
[ -n "$4" ] && uci -q set network.$1.type=$4
}
uci -q batch <<EOF
set network.lan=interface
set network.lan.proto=static
set network.lan.ipaddr=192.168.100.1
set network.lan.netmask=255.255.255.0
set network.lan.ifname=eth0
EOF
2018-05-10 18:55:42 +00:00
uci -q batch <<EOF
delete network.none
delete network.if6rd
reorder network.loopback=0
reorder network.globals=1
reorder network.lan=2
set network.globals.multipath=enable
EOF
# Set the ip rule for the lan with a pref of 100
uci -q show network.lan_rule >/dev/null || \
uci -q batch <<-EOF
set network.lan_rule=rule
set network.lan_rule.lookup=lan
set network.lan_rule.priority=100
EOF
if [ "$(uci -q get network.vpn0.proto)" = "none" ]; then
uci -q delete network.vpn0
fi
config_load network
config_foreach _setup_multipath_off interface
# Add the lan as a named routing table
if ! grep -s -q "lan" /etc/iproute2/rt_tables; then
echo "50 lan" >> /etc/iproute2/rt_tables
fi
uci -q set network.lan.ip4table='lan'
2018-03-12 09:26:32 +00:00
#uci -q set "network.lan.ip6assign=64"
2018-05-10 18:55:42 +00:00
# Create WAN interfaces
if [ "$(uci -q show network | grep wan1)" = "" ]; then
if [ -d /sys/class/net/wan ]; then
uci -q batch <<-EOF
delete network.wan
EOF
_setup_wan_interface wan1 wan master macvlan
_setup_wan_interface wan2 wan on macvlan
_setup_macvlan wan1
_setup_macvlan wan2
elif [ -d /sys/class/net/eth1 ]; then
if [ -d /sys/class/net/eth2 ]; then
2018-05-10 18:55:42 +00:00
_setup_wan_interface wan1 eth1 master
_setup_wan_interface wan2 eth2 on
else
2018-05-10 18:55:42 +00:00
_setup_wan_interface wan1 eth1 master macvlan
_setup_wan_interface wan2 eth1 on macvlan
_setup_macvlan wan1
_setup_macvlan wan2
fi
else
2018-05-10 18:55:42 +00:00
_setup_wan_interface wan1 eth0 master macvlan
_setup_wan_interface wan2 eth0 on macvlan
_setup_macvlan wan1
_setup_macvlan wan2
fi
uci -q batch <<-EOF
2018-03-12 09:26:32 +00:00
add network route6
2018-03-12 09:37:12 +00:00
set network.@route6[-1].interface='lan'
set network.@route6[-1].target='::/0'
2018-03-12 09:26:32 +00:00
commit network
EOF
rm -f /tmp/luci-indexcache
fi
exit 0