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

An EEM applet contains this command:

event snmp oid 1.3.6.1.4.3.8.0.5.8.7.1.3 get-type next entry-op gt entry-val 80 poll-interval 8

What is the result of the command?

    Correct Answer: D

    The command is designed to monitor an SNMP variable specified by the OID 1.3.6.1.4.3.8.0.5.8.7.1.3. The 'get-type next' directive instructs EEM to retrieve the next value of the SNMP OID. The 'entry-op gt' specifies that the operation to be performed is a 'greater than' comparison, and 'entry-val 80' sets the threshold value to 80. The 'poll-interval 8' sets the frequency of polling to every 8 seconds. Hence, the command configures the system to monitor the SNMP variable and trigger an action when the value exceeds 80%, with the monitoring being conducted at 8-second intervals.

Discussion
NewLife77Option: B

I think the correct answer is B.

b7c04a1

Yep, i think this too

NikosTsironisOption: D

D because the Poll Interval 8 is the frequency of the monitoring ( example from CPU below ) : poll-interval 0.5 - Frequency (every 0.5 seconds) the script monitors the CPU https://www.cisco.com/c/en/us/support/docs/switches/catalyst-6500-series-switches/116141-trouble-eem-scripts-00.html#anc8

SeMo0o0oOption: D

D is correct. 1-it's Monitoring not generating. 2- not 8 cycles, it's interval which means pull every 8 sec

SeMo0o0o

...........................

e0a2673Option: D

it monitors SNMP event, NOT GENERATE

supershysherlockOption: B

I think it's B too.

stefanxraduOption: B

I think its B

snarkymarkOption: D

Similar command for cpu utilization.

SeMo0o0oOption: D

D is correct. 1-it's Monitoring not generating. 2- not 8 cycles, it's interval which means pull every 8 sec

Shri_Fcb10Option: B

event snmp oid 1.3.6.1.4.3.8.0.5.8.7.1.3: This specifies the SNMP OID (Object Identifier) that EEM will monitor. The OID in this case is 1.3.6.1.4.3.8.0.5.8.7.1.3. get-type next: This specifies that EEM should retrieve the next value of the SNMP OID. entry-op gt: This sets the comparison operation to "greater than". entry-val 80: This sets the value to compare against to 80. poll-interval 8: This sets the polling interval to 8 (in seconds). Based on this command, an SNMP event will be generated when the value of the specified OID is greater than 80% for eight polling cycles.

a197cbf

The polling interval is set to 8 seconds, so it checks the value every 8 seconds. Eight polling cycles would be a total of 64 seconds, and there's nothing indicating an action taken after that length of time. D is correct answer.

IgorLVGOption: B

for spanish doc: https://www.cisco.com/c/es_mx/support/docs/switches/catalyst-6500-series-switches/116141-trouble-eem-scripts-00.html poll-interval is the frecuency

kldoyle97

Not sure about the poll-interval keyword, will the applet be triggered after 8 polls over 80% or after its first detected and be monitored for 8 polls?