Link to home
Start Free TrialLog in
Avatar of cb_it
cb_itFlag for United States of America

asked on

Cisco EEM applet help

I'm new to EEM so please be gentle. I created 2 applets as you can see below. I'm trying to shutdown and interface at 10:15 and then bring it back up 5 minutes later. This did not work. Anything wrong with what I did?

Also, how do I go into the EEM to see what applets are there? Is there some type of view command? Also, how would I edit one of these applets, for example if I wanted to remove the event timer.

router1e#config t
Enter configuration commands, one per line.  End with CNTL/Z.
router1(config)#event manager applet shutdown_port
router1(config-applet)#event timer cron cron-entry "15 10 * * *"
router1(config-applet)#action 010 cli command "enable"
router1(config-applet)#action 020 cli command "config t"
router1(config-applet)#action 030 cli command "int fa0/0"
router1(config-applet)#action 040 cli command "shut"
router1(config-applet)#action 050 cli command "end"^Z
router1#

router1e#config t
Enter configuration commands, one per line.  End with CNTL/Z.
router1(config)#event manager applet noshut_port
router1(config-applet)#event timer cron cron-entry "20 10 * * *"
router1(config-applet)#action 010 cli command "enable"
router1(config-applet)#action 020 cli command "config t"
router1(config-applet)#action 030 cli command "int fa0/0"
router1(config-applet)#action 040 cli command "no shut"
router1(config-applet)#action 050 cli command "end"^Z
router1#
Avatar of cb_it
cb_it
Flag of United States of America image

ASKER

OK, so I found this command
show event manager policy registered

That shows each applet and all of the actions.

I removed the event timer with this command
router1(config-applet)#event none

Now when I manually run the applet I'm getting the following error, any ideas?

router1#event manager run shutdown_port
router1#
.Apr  6 11:31:18.254: FH-TTY::No more VTY line

router1#
.Apr  6 11:31:18.258: %HA_EM-3-FMPD_ERROR: Error executing applet shutdown_port statement 010
router1#
ASKER CERTIFIED SOLUTION
Avatar of harbor235
harbor235
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of cb_it

ASKER

Thanks for the reply! But that didn't work. Seems like the error is starting right at line 010.

Error executing applet shutdown_port statement 010

How do I clear sessions from previous EEM executions??

Thanks again.
Avatar of cb_it

ASKER

Thanks for the note on clearing user sessions. I rebooted the server and now the applet works fine. Must have been something with the user sessions.