diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2007-12-10 18:07:41 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2007-12-10 18:07:41 -0800 |
commit | 6a58c1175a40d3afcb3ca7164852465011cfd544 (patch) | |
tree | 67cad89060dcffc699629d3af70f128682656321 /templates/protocols/rip/passive-interface | |
parent | 8eb36ff99677255cc337c55f2a4ba061d09edf49 (diff) | |
download | vyatta-cfg-quagga-6a58c1175a40d3afcb3ca7164852465011cfd544.tar.gz vyatta-cfg-quagga-6a58c1175a40d3afcb3ca7164852465011cfd544.zip |
Redo RIP cli to remove interface/network requirement.
Diffstat (limited to 'templates/protocols/rip/passive-interface')
-rw-r--r-- | templates/protocols/rip/passive-interface/node.def | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/protocols/rip/passive-interface/node.def b/templates/protocols/rip/passive-interface/node.def new file mode 100644 index 00000000..903a1e79 --- /dev/null +++ b/templates/protocols/rip/passive-interface/node.def @@ -0,0 +1,25 @@ +multi: +type: txt +help: "Suppress routing updates on an interface" +syntax: exec " \ + if [ -z \"`ip addr | grep $(@) `\" ] && [ x$(@) != xdefault ]; then \ + echo ethernet interface $(@) doesn\\'t exist on this system ; \ + exit 1 ; \ + fi ; " +update: "if [ x$(x) == xdefault ]; then \ + /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \ + -c \"passive-interface default\"; \ + else \ + /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \ + -c \"passive-interface $(@)\"; \ + fi; " +delete: "if [ x$(x) == xdefault ]; then \ + /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \ + -c \"no passive-interface default\"; \ + else \ + /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \ + -c \"no passive-interface $(@)\"; \ + fi; " +#allowed: local -a array; +# array=( /sys/class/net/{eth,vmnet}* ) ; +# echo -n ${array[@]##*/} |