Exam 350-401 All QuestionsBrowse all questions from this exam
Question 751

SIMULATION

-

Guidelines

-

This is a lab item in which tasks will be performed on virtual devices.

• Refer to the Tasks tab to view the tasks for this lab item.

• Refer to the Topology tab to access the device console(s) and perform the tasks.

• Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window.

• All necessary preconfigurations have been applied.

• Do not change the enable password or hostname for any device.

• Save your configurations to NVRAM before moving to the next item.

• Click Next at the bottom of the screen to submit this lab and move to the next question.

• When Next is clicked, the lab closes and cannot be reopened.

Topology

-

Tasks

-

Configure an EEM applet on LAB-RTR-01 that will automatically re-enable interface Loopback0 if it is administratively shut down.

    Correct Answer:

Discussion
Vlad_Is_Love_ua

event manager applet int_loopback_Shutdown event syslog pattern "Interface Loopback0, changed state to administratively down" action 1.0 cli command "enable" action 1.5 cli command "config t" action 2.0 cli command "interface loopback0" action 2.5 cli command "no shutdown" action 3.0 cli command "end"

tempaccount00001

This would be my take: event manager applet NOSHUT_LOOPBACK0 event syslog pattern "Interface Loopback0, changed state to administratively down" action 1.0 command "enable" action 2.0 command "conf t" action 3.0 command "interface loopback0" action 4.0 command "no shutdown" action 5.0 command "end" also do not stress too much about learning the syntax of "Interface Loopback0, changed state to administratively down" just chuck in a "term mon" and shut it, and then look at what the message is. In case term mon does not work, you can do: conf t logging on logging console int loopback 0 shut end sho log this will essentially enable logging and then write it into the logs for you to view. copy and paste the text you want to match and happy days

SHONA1

@Tempaccount000001 You are a legent son, I had few probs with that one in the exam. tried the actual command and shut the interface down to see if would bring it up, but it was not having it after the 3rd try it worked. Thanks man, passed today the question still asked.

HungarianDish

Apply "exit" when the eem applet config is ready. "Before modifying an EEM applet, you need to be aware that the existing applet is not replaced until you exit applet configuration mode." https://www.ciscopress.com/articles/article.asp?p=3100057&seqNum=4

[Removed]

The answer is wrong. The syslog pattern needs to be specific to "administratively down". Vlad_Is_Love_ua is correct.

wengzaii96

can we use "tab" or "?" during the exam?

noksmail

Interface Loopback0, changed state to down

Papins

make it simple you can find to the below as reference https://www.youtube.com/watch?v=32VZDHCrU-4

Papins

event manager applet int_loopback_Shutdown event syslog pattern "Interface Loopback0, changed state to administratively down" action 1.0 cli command "enable" action 1.1 cli command "config t" action 1.2 cli command "interface loopback0" action 1.3 cli command "no shutdown"

XomXom

love you man