summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2009-07-09 03:40:19 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2009-07-09 03:40:19 -0700
commit037812d76a2bac67b20f75f42734581d915c8649 (patch)
tree9559ecc08cc58a445aa97b54fe0b8988c036635a /templates
parentda1d2f00b7703a83797173eba98de6e38f4d8919 (diff)
downloadvyatta-cfg-quagga-037812d76a2bac67b20f75f42734581d915c8649.tar.gz
vyatta-cfg-quagga-037812d76a2bac67b20f75f42734581d915c8649.zip
Revert "Change gateway-address from static to kernel route"
This reverts commit 4841cd902800ca500e34c5fd60b9a24227c22591. Will change DHCP rather than gateway-address behavior to fix this bug.
Diffstat (limited to 'templates')
-rw-r--r--templates/system/gateway-address/node.def10
1 files changed, 8 insertions, 2 deletions
diff --git a/templates/system/gateway-address/node.def b/templates/system/gateway-address/node.def
index bae1972a..e5764c0c 100644
--- a/templates/system/gateway-address/node.def
+++ b/templates/system/gateway-address/node.def
@@ -1,6 +1,12 @@
type: ipv4
help: Set default gateway
-update: sudo ip route replace to default via $VAR(@)
+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 sudo ip route delete to default via $VAR(@)
+ then vyatta-vtysh -c "configure terminal" -c "no ip route 0.0.0.0/0 $VAR(@)"
fi