contrib/meshwizard: Add initial support for ipv6 config (with auto-ipv6-ib and dhcpv6)
[project/luci.git] / contrib / package / meshwizard / files / usr / bin / meshwizard / helpers / setup_network.sh
1 # setup entry in /etc/config/network for a interface
2 # Argument $1: network interface
3  
4 net="$1"
5 . /etc/functions.sh
6 . $dir/functions.sh
7
8 # Setup a (new) interface section for $net
9
10 ipaddr=$(uci get meshwizard.netconfig.$net\_ip4addr)
11 [ -z "$ipaddr" ] && msg_missing_value meshwizard $net\_ip4addr
12
13 netmask=$(uci -q get meshwizard.netconfig.$net\_netmask)
14 [ -z "$netmask" ] && netmask="$interface_netmask"
15 [ -z "$netmask" ] && netmask="255.255.0.0"
16
17 uci set network.$netrenamed="interface"
18 set_defaults "interface_" network.$netrenamed
19
20 uci batch << EOF
21         set network.$netrenamed.proto="static"
22         set network.$netrenamed.ipaddr="$ipaddr"
23         set network.$netrenamed.netmask="$netmask"
24 EOF
25
26 # Setup IPv6 for the interface
27 local ip6addr
28 if [ "$profile_ipv6" = 1 ]; then
29         if [ "$profile_ipv6_config" = "auto-ipv6-dhcpv6" ]; then
30                 # get interface mac
31                 local device="$(uci -p/var/state -q get network.$netrenamed.ifname)"
32                 if [ -n "device" ]; then
33                         ip6addr="$($dir/helpers/gen_auto-ipv6-dhcpv6-ip.sh $device)"
34                 fi
35                 uci set network.$netrenamed.ip6addr="${ip6addr}/112"
36         fi
37 fi
38
39 uci_commitverbose "Setup interface $netrenamed" network
40
41 # setup dhcp alias/interface
42
43 net_dhcp=$(uci -q get meshwizard.netconfig.${net}_dhcp)
44 if [ "$net_dhcp" == 1 ]; then
45
46         # Load meshwizard_settings
47         dhcprange="$(uci -q get meshwizard.netconfig.${net}_dhcprange)"
48         interface_ip="$(uci -q get meshwizard.netconfig.${net}_ip4addr)"
49         vap=$(uci -q get meshwizard.netconfig.${net}_vap)
50
51         # Rename config
52         handle_dhcpalias() {
53                         config_get interface "$1" interface
54                         if [ "$interface" == "$netrenamed" ]; then
55                                 if [ -z "${1/cfg[0-9a-fA-F]*/}" ]; then
56                                         section_rename network $1 ${netrenamed}dhcp
57                                 fi
58                         fi
59         }
60         config_load network
61         config_foreach handle_dhcpalias alias
62
63         # Get IP/netmask and start-ip for $net dhcp
64         # If no dhcprange is given in /etc/config/meshwizard we autogenerate one
65
66         if [ -z "$dhcprange" ]; then
67                 dhcprange="$($dir/helpers/gen_dhcp_ip.sh $interface_ip)/24"
68                 uci set meshwizard.netconfig.${net}_dhcprange="$dhcprange"
69         fi
70         eval $(sh $dir/helpers/ipcalc-cidr.sh $dhcprange 1 0)
71
72         # setup wifi-dhcp interface or alias
73
74         # Setup alias for $net
75
76         if [ "$vap" == 1 ]; then
77                 uci set network.${netrenamed}dhcp=interface
78         else
79                 uci set network.${netrenamed}dhcp=alias
80                 uci set network.${netrenamed}dhcp.interface="$netrenamed"
81         fi
82
83         uci batch <<- EOF
84                 set network.${netrenamed}dhcp.proto=static
85                 set network.${netrenamed}dhcp.ipaddr="$START"
86                 set network.${netrenamed}dhcp.netmask="$NETMASK"
87         EOF
88         uci_commitverbose  "Setup interface for ${netrenamed}dhcp" network
89
90 fi