A network administrator is deploying SNMPv3 on a Cisco IOS router to allow a central Network Management System (NMS) located at to poll interface metrics. The administrator configures a custom MIB view and applies an inbound extended Access Control List (ACL) on the router's management interface ().
The router configuration is as follows:
text
snmp-server view IF_ONLY 1.3.6.1.2.1.2 included
snmp-server group MON_GROUP v3 priv read IF_ONLY
snmp-server user MON_USER MON_GROUP v3 auth sha Pass123 priv aes 128 Priv456
ip access-list extended MGMT_ACL
permit udp host 10.20.1.100 host 10.20.1.1 eq 162
deny ip any any
interface GigabitEthernet0/0
ip access-group MGMT_ACL in
When the NMS attempts to perform SNMP GetRequest operations to monitor interface statistics, all polling requests fail due to timeouts. Which modification will restore SNMP polling functionality?
- Update MGMT_ACL to permit inbound UDP traffic targeted to destination port 161 on the router.Cevap
- BRemove the explicit deny ip any any statement from MGMT_ACL because Cisco IOS ACLs automatically permit stateless UDP response traffic.
- CReconfigure the NMS client to initiate polling requests over TCP port 161 to establish connection state through the interface ACL.
- DChange the MIB object identifier in the IF_ONLY view from 1.3.6.1.2.1.2 to CDP TLV subtree 1.3.6.1.4.1.9 to allow interface polling.