blob: 2ee24c93e7f5383ffe0ee68f55b643667b5cf5c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
multi:
type: txt
help: Set to suppress routing updates on an interface
allowed: ${vyatta_sbindir}/vyatta-interfaces.pl --show all && echo default
create: if [ -z $VAR(@) ]
then vtysh -c "configure terminal" -c "router ospf" \
-c "passive-interface default";
else vtysh -c "configure terminal" -c "router ospf" \
-c "passive-interface $VAR(@)"
fi
delete: if [ -z $VAR(@) ]
then vtysh -c "configure terminal" -c "router ospf" \
-c "no passive-interface default"
else vtysh -c "configure terminal" -c "router ospf" \
-c "no passive-interface $VAR(@)"
fi
comp_help: possible completions:
<interface> Set an interface to be passive (i.e. suppress routing updates)
default Set default to suppress routing updates on all interfaces
|