就業時間にのみ、LANポートを使用可能な状態にします ※今回の例では、毎朝8:00になるとgig0/4-7のポートを開放し、夜22:00になるとgig0/4-7のポートを閉じます 設定例(前半):ポートの開放 C841MJ>en C841MJ#conf t Enter configuration commands, one per line. End with CNTL/Z. C841MJ(config)# C841MJ(config)#event manager applet noshut_port C841MJ(config-applet)#event timer cron cron-entry "0 8 * * 1-5" C841MJ(config-applet)#action 010 cli command "enable" C841MJ(config-applet)#action 020 cli command "config t" C841MJ(config-applet)#action 030 cli command "int range gig0/4-7" C841MJ(config-applet)#action 040 cli command "no shut" C841MJ(config-applet)#action 050 cli command "end" C841MJ(config-applet)#action 060 syslog msg "LAN I/F has been opened” 朝8:00を検知 gig0/4-7のポートを開放
設定例(後半):ポートの閉鎖 C841MJ(config-applet)#event manager applet shut_port 夜22:00を検知 C841MJ(config-applet)#event manager applet shut_port C841MJ(config-applet)#event timer cron cron-entry "0 22 * * 1-5" C841MJ(config-applet)#action 010 cli command "enable" C841MJ(config-applet)#action 020 cli command "config t" C841MJ(config-applet)#action 030 cli command "int range gig0/4-7" C841MJ(config-applet)#action 040 cli command "shut" C841MJ(config-applet)#action 050 cli command "end" C841MJ(config-applet)#action 060 syslog msg "LAN I/F has been closed” C841MJ(config-applet)#end C841MJ# gig0/4-7のポートを開放
こちらの枠内のコマンド、もしくは、添付の”C841MJ-Port-control.txt”の流しこみでサンプルコンフィグの投入が可能です ※グローバルコンフィグレーションモードにてコピー&ペーストを行います event manager applet noshut_port event timer cron cron-entry "0 8 * * 1-5" action 010 cli command "enable" action 020 cli command "config t" action 030 cli command "int range gig0/4-7" action 040 cli command "no shut" action 050 cli command "end" action 060 syslog msg "LAN I/F has been opened" event manager applet shut_port event timer cron cron-entry "0 22 * * 1-5" action 040 cli command "shut" action 060 syslog msg "LAN I/F has been closed"