summaryrefslogtreecommitdiff
path: root/templates/system/gateway-address/node.def
blob: ee4cbabc4dac75abd11b5a3d35a5ee17d284975c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
priority: 400
type: ipv4
help: Set default gateway
create: vyatta-vtysh -c "configure terminal" -c "ip route 0.0.0.0/0 $VAR(@)"
update: oldgw=`/opt/vyatta/sbin/vyatta-cli-expand-var.pl '$(/system/gateway-address/@)'`
	if [ -n "$oldgw" ]; then
            vyatta-vtysh --noerror -c "configure terminal" \
                      -c "no ip route 0.0.0.0/0 $oldgw"
        fi
        vyatta-vtysh -c "configure terminal" -c "ip route 0.0.0.0/0 $VAR(@)"
delete: if ${vyatta_sbindir}/vyatta-gateway-static_route-check.pl "$VAR(@)"
	then vyatta-vtysh -c "configure terminal" -c "no ip route 0.0.0.0/0 $VAR(@)"
	fi