#! /bin/sh # /etc/rc.d/rc.inet1-post # # This script is used to bring up the various network interfaces or # to configure extra routing. This script is # called after the # regular interfaces are configured and the default gateway is set. start() { # If you have a SixXS IPv6 tunnel [ -x /etc/rc.d/rc.aiccu ] && /etc/rc.d/rc.aiccu start } stop() { # If you have a SixXS IPv6 tunnel [ -x /etc/rc.d/rc.aiccu ] && /etc/rc.d/rc.aiccu stop } ############ ### MAIN ### ############ case "$1" in 'start') # "start" brings up all configured interfaces: start ;; 'stop') # "stop" takes down all configured interfaces: stop ;; 'restart') # "restart" restarts the network: stop start ;; *) # The default is to start: start esac # End of /etc/rc.d/rc.inet1-post