summaryrefslogtreecommitdiff
path: root/templates/protocols/ospf/redistribute/connected/node.def
diff options
context:
space:
mode:
Diffstat (limited to 'templates/protocols/ospf/redistribute/connected/node.def')
-rw-r--r--templates/protocols/ospf/redistribute/connected/node.def16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/protocols/ospf/redistribute/connected/node.def b/templates/protocols/ospf/redistribute/connected/node.def
new file mode 100644
index 00000000..464bd1c8
--- /dev/null
+++ b/templates/protocols/ospf/redistribute/connected/node.def
@@ -0,0 +1,16 @@
+help: "Redistribute connected routes"
+delete: "touch /tmp/ospf-redist-connected.\\$PPID"
+end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router ospf\" \
+ -c \"no redistribute connected \"; \
+ if [ -f \"/tmp/ospf-redist-connected.\\$PPID\" ]; then \
+ rm -rf /tmp/ospf-redist-connected.\\$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 ospf\" \
+ -c \"redistribute connected \\$COND\"; \
+ fi; "