blob: c642bc1fbdf8d65e390f15eaff8ab2fe7718dbb4 (
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
|
multi:
type: txt
comp_help:default Suppress routing updates on all interfaces by default\n\
ethx Suppress routing updates on ethx\n\
lo Suppress routing updates on lo\n
syntax:expression: exec " \
if [ -z \"`ip addr | grep $VAR(@) `\" ] && [ x$VAR(@) != xdefault ]; then \
echo ethernet interface $VAR(@) doesn\\'t exist on this system ; \
exit 1 ; \
fi ; "
create: if [ x$VAR(x) == xdefault ]
then vtysh -c "configure terminal" -c "router rip" \
-c "passive-interface default"
else vtysh -c "configure terminal" -c "router rip" \
-c "passive-interface $VAR(@)"
fi
delete: if [ x$VAR(x) == xdefault ]
then vtysh -c "configure terminal" -c "router rip" \
-c "no passive-interface default"
else vtysh -c "configure terminal" -c "router rip" \
-c "no passive-interface $VAR(@)"
fi
allowed: echo "default" && ${vyatta_sbindir}/vyatta-interfaces.pl --show all
|