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/default-distance | |
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/default-distance')
-rw-r--r-- | templates/protocols/rip/default-distance/node.def | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/protocols/rip/default-distance/node.def b/templates/protocols/rip/default-distance/node.def new file mode 100644 index 00000000..5960fc75 --- /dev/null +++ b/templates/protocols/rip/default-distance/node.def @@ -0,0 +1,8 @@ +type: u32 +help: "Administrative distance" +syntax: $(@) >= 1 && $(@) <= 255; "must be between 1 and 255" +update: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \ + -c \"distance $(@) \" " +delete: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \ + -c \"no distance $(@) \" " +#comp_help: Enter a distance valude between 1-255 |