! ! Scheduled Interface up an down ! define in the _shut_ifname variable the interface ! version v_03 / 28.9.2008 / packetlevel.ch ! event manager environment _shut_ifname FastEthernet6 ! event manager applet DisableInterface event timer cron name ShutdownInterface cron-entry "00 09 * * *" action 1.0 cli command "enable" action 1.1 cli command "configure terminal" action 1.5 cli command "interface $_shut_ifname" action 1.6 cli command "shutdown" ! event manager applet EnableInterface event timer cron name NoShutdonwInterface cron-entry "00 18 * * *" action 1.0 cli command "enable" action 1.1 cli command "configure terminal" action 1.5 cli command "interface $_shut_ifname" action 1.6 cli command "no shutdown" ! event manager applet EnableAfterReload event timer countdown name EnableAfterReload time 10 action 1.0 cli command "enable" action 1.1 cli command "configure terminal" action 1.5 cli command "interface $_shut_ifname" action 1.6 cli command "no shutdown"