summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/passive-interface/node.def
blob: 903a1e79eec0b8ee4309b6e3587620f8ad5909ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
multi:
type: txt
help: "Suppress routing updates on an interface"
syntax: exec " \
        if [ -z \"`ip addr | grep $(@) `\" ] && [ x$(@) != xdefault ]; then \
          echo ethernet interface $(@) doesn\\'t exist on this system ; \
          exit 1 ; \
        fi ; "
update: "if [ x$(x) == xdefault ]; then \
            /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
            -c \"passive-interface default\"; \
         else \
            /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
            -c \"passive-interface $(@)\"; \
         fi; "
delete: "if [ x$(x) == xdefault ]; then \
            /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
            -c \"no passive-interface default\"; \
         else \
            /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
            -c \"no passive-interface $(@)\"; \
         fi; "
#allowed: local -a array;
# array=( /sys/class/net/{eth,vmnet}* ) ;
# echo -n ${array[@]##*/}