summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/redistribute/connected/node.def
blob: 4bd5c8c3b7f7ba7c00256de660ecfadb586c904a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
help: Set to redistribute connected routes
delete:expression: "touch /tmp/rip-redist-connected.$PPID" 
end:expression: "vtysh -c \"configure terminal\" -c \"router rip\" \
        -c \"no redistribute connected \"; \
      if [ -f \"/tmp/rip-redist-connected.$PPID\" ]; then \
        rm -rf /tmp/rip-redist-connected.$PPID; \
      else \
        if [ -n \"$VAR(./metric/@)\" ]; then \
          COND=\"metric $VAR(./metric/@)\";
        fi; \
        if [ -n \"$VAR(./route-map/@)\" ]; then \
          COND=\"$COND route-map $VAR(./route-map/@)\"; \
        fi; \
        vtysh -c \"configure terminal\" -c \"router rip\" \
          -c \"redistribute connected $COND\"; \
      fi; "