summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/interface/node.def
blob: e9e6fc8eaca9751166814883aa21f070823b33bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
multi:
type: txt
help: "Interface name"
syntax: exec " \
        if [ -z \"`ip addr | grep $(@) `\" ]; then \
          echo ethernet interface $(@) doesn\\'t exist on this system ; \
          exit 1 ; \
        fi ; "
create: "\\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router rip\" -c \"network $(@)\" "
delete: "\\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router rip\" -c \"no network $(@)\" "
#allowed: local -a array;
# array=( /sys/class/net/{eth,vmnet}* ) ;
# echo -n ${array[@]##*/}