Which Cisco IOS command is used to configure a device to use an SNMP manager (NMS) located at the 192.168.100.100 IP address, using version 2c, Informs (versus Traps), and using a community of ThIsCoMmuNiTy?

A) snmp-server manager 192.168.100.100 informs 2c ThIsCoMmunIty
B) snmp-server host 192.168.100.100 informs version 2c ThIsCoMmunIty
C) snmp-server host 192.168.100.100 version 2c ThIsCoMmunIty
D) snmp-server manager 192.168.100.100 2c ThIsCoMmunIty


B
Explanation: B) The snmp-server host 192.168.100.100 informs version 2c ThIsCoMmunIty is used to configure this command.

Computer Science & Information Technology

You might also like to view...

Write a function to set the red, green, and blue values to 255. What is the result?

``` def setAllMax(picture): for pix in getPixels(picture): setRed(pix,255) setBlue(pix, 255) setGreen(pix, 255) ``` OR ``` def setAllMax(picture): for pix in getPixels(picture): setColor(pix, makeColor(255, 255, 255)) ```

Computer Science & Information Technology

You use all of the following views to enter actual progress data into a project EXCEPT ____ view.

A. sheet B. graphical C. status D. form

Computer Science & Information Technology

A criterion may be negated by using the ____ logical operator.

A. And B. Or C. Like D. Not

Computer Science & Information Technology

Glass is notorious for bending radio waves as the waves pass through them causing refraction.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology