allow ipv4 routes without gateway in configuration
[openwrt/svn-archive/archive.git] / package / base-files / files / etc / hotplug.d / iface / 10-routes
1 add_route() {
2 local config="$1"
3
4 # is this route intended for the
5 # $INTERFACE of this hotplug event
6 config_get interface "$config" interface
7 [ "$interface" != "$INTERFACE" ] && return 0
8
9 # get the real interface name from network config
10 config_get dev "$interface" ifname
11
12 config_get target "$config" target
13 config_get netmask "$config" netmask
14 config_get gateway "$config" gateway
15 config_get metric "$config" metric
16
17 # make sure there is a gateway and a target
18 [ -n "$target" ] || {
19 echo "Missing target in route section $config"
20 return 1
21 }
22 [ -n "$gateway" ] || {
23 config_get gateway "$interface" gateway
24 }
25
26 netmask="${netmask:-255.255.255.255}"
27 dest="${netmask:+-net "$target" netmask "$netmask"}"
28 dest="${dest:--host "$target"}"
29
30 /sbin/route add $dest ${gateway:+gw "$gateway"} \
31 ${dev:+dev "$dev"} ${metric:+ metric "$metric"}
32 }
33
34 add_route6() {
35 local config="$1"
36
37 # is this route intended for the
38 # $INTERFACE of this hotplug event
39 config_get interface "$config" interface
40 [ "$interface" != "$INTERFACE" ] && return 0
41
42 # get the real interface name from network config
43 config_get dev "$interface" ifname
44
45 config_get target "$config" target
46 config_get gateway "$config" gateway
47 config_get metric "$config" metric
48
49 # make sure there is a gateway and a target
50 [ -n "$target" ] || {
51 echo "Missing target in route section $config"
52 return 1
53 }
54 [ -n "$gateway" ] || {
55 config_get gateway "$interface" gateway
56 }
57
58 /sbin/route -A inet6 add $target ${gateway:+gw "$gateway"} \
59 ${dev:+dev "$dev"} ${metric:+ metric "$metric"}
60 }
61
62 case "$ACTION" in
63 ifup)
64 include /lib/network
65 scan_interfaces
66 config_foreach "add_route" route
67 config_foreach "add_route6" route6
68 ;;
69 esac