multi: type: txt help: Set to suppress routing updates on an interface 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: ${vyatta_sbindir}/vyatta-interfaces.pl --show all