cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
417
Views
0
Helpful
2
Replies

ACL and SNMP on CSS

frankamankwah
Level 1
Level 1

access-list 30 remark John Doe

access-list 30 permit 10.3.2.15

access-list 30 deny any log

snmp-server community CSS RW 30

The above configuration is what we currently have on our routers and switches. Could someone help me convert the above into configs that could be placed on a CSS? I am familiar with configuring the basic SNMP on CSS but can't figure out how to add ACL to it. Is this config possible on CSS at all?

Thanks

2 Replies 2

Gilles Dufour
Cisco Employee
Cisco Employee

there is no option to limit snmp request with an ACL on the CSS.

But, you can filter the SNMP traffic with an interface ACL using something like this

acl 1

clause 10 permit udp 10.3.2.15 destination x.x.x.x eq 161

clause 20 deny udp any destination x.x.x.x eq 161

clause 99 permit any any destination any

apply all

Gilles.

Giles,

Your suggestion looks like the only shot that I have at this moment. Thanks!