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...
When you create a new blank Word document, it is based on Word's ________ template
Fill in the blank(s) with correct word
Computer Science & Information Technology
Predict the output of the following nested loops:
``` int n = 1; while(n <= 10) { int m = 10; while(m>=1) { cout << n << “ times “ << m << “ = “ << n*m << endl; m--; } n++; ```
Computer Science & Information Technology