summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/network-distance/node.def
blob: 480e1f260408c6ece49644b4cd751359e76e56ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
tag:
type: ipv4net
help: "Source network"
syntax: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --check-prefix-boundry $(@)"
commit: $(./distance/) != ""; "Must specify distance for network $(@)"
delete: "touch /tmp/rip-dist.\\$PPID"
end: "if [ -n \"$(./access-list/@)\" ]; then \
	 ACL=\"$(./access-list/@)\"; \
      fi; \
      if [ -f \"/tmp/rip-dist.\\$PPID\" ]; then \
          dist=\\$(cat /tmp/rip-network-distance.\\$PPID); \
          \\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router rip\" \ 
          -c \"no distance \\$dist $(@) \\$ACL \" ;
          rm -f \"/tmp/rip-dist.\\$PPID\";
      else \
        \\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router rip\" \ 
          -c \"distance $(./distance/@) $(@) \\$ACL \" ;
      fi; "