diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2008-01-14 18:30:01 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2008-01-14 18:30:01 -0800 |
commit | fca1739f1985c2ba8d6316b1882365f5e26245cd (patch) | |
tree | e62dbf7dba65c7b859e367fc63796b1badd44e65 /templates/system | |
parent | 78124a9754efe0bda1d9c827c593c5e0635fec3c (diff) | |
download | vyatta-cfg-quagga-fca1739f1985c2ba8d6316b1882365f5e26245cd.tar.gz vyatta-cfg-quagga-fca1739f1985c2ba8d6316b1882365f5e26245cd.zip |
When changing a default gateway, we must 1st delete the last default gateway before
adding the new.
Diffstat (limited to 'templates/system')
-rw-r--r-- | templates/system/gateway-address/node.def | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/system/gateway-address/node.def b/templates/system/gateway-address/node.def index ca07284e..4bdb5373 100644 --- a/templates/system/gateway-address/node.def +++ b/templates/system/gateway-address/node.def @@ -1,5 +1,8 @@ type: txt help: "Configure default gateway" create: "\\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"ip route 0.0.0.0/0 $(@)\" " +update: "oldgw=`/opt/vyatta/sbin/vyatta-cli-expand-var.pl '\\$(/system/gateway-address/@)' ` && \ + \\${vyatta_sbindir}/vyatta-vtysh.pl -noerr -c \"configure terminal\" -c \"no ip route 0.0.0.0/0 \\$oldgw \" && \ + \\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"ip route 0.0.0.0/0 $(@)\" " delete: "\\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"no ip route 0.0.0.0/0 $(@)\" " |