summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/redistribute/ospf/node.def
blob: dfa076d9e8af53752e4f059ebca205a22c67c235 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; "