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