diff options
Diffstat (limited to 'templates/protocols/rip/redistribute/ospf/node.def')
-rw-r--r-- | templates/protocols/rip/redistribute/ospf/node.def | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/protocols/rip/redistribute/ospf/node.def b/templates/protocols/rip/redistribute/ospf/node.def new file mode 100644 index 00000000..dfa076d9 --- /dev/null +++ b/templates/protocols/rip/redistribute/ospf/node.def @@ -0,0 +1,17 @@ +help: "Redistribute OSPF routes" +delete: "touch /tmp/rip-redist-ospf.\\$PPID" +end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \ + -c \"no redistribute ospf \"; \ + if [ -f \"/tmp/rip-redist-ospf.\\$PPID\" ]; then \ + rm -rf /tmp/rip-redist-ospf.\\$PPID; \ + else \ + if [ -n \"$(./metric/@)\" ]; then \ + COND=\"metric $(./metric/@)\"; + fi; \ + if [ -n \"$(./route-map/@)\" ]; then \ + COND=\"\\$COND route-map $(./route-map/@)\"; \ + fi; \ + /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \ + -c \"redistribute ospf \\$COND\"; \ + fi; " + |