summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/interface/node.def
blob: 1c4935970795a65af78dbfe4fa9b148c5a46adb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
tag:
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: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" -c \"network $(@)\" "
update: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" -c \"network $(@)\" "
delete: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" -c \"no network $(@)\" "