After converting my network from a layer 2 flat network to layer 3, I noticed my inventory software(Track-IT) and my printer polling via snmp stopped polling devices on the new vlans.
I have a general understanding of ACL, that if I add an ACLto a vlan that it changes from permit all to deny all besides what is defined by a rule. I have an ACL set up now for my public vlan, ableit I'm sure it's not perfect but it seems to work "mostly"
However now I want SNMP to work across all my private vlan's but I don't want to open up everything else or deny any broadcasts that are denied now by default. Can someone help me along the right path??
Current situation with my current setup everything works A-ok. Clients can get to all their apps and servers on diff vlans. The only issue is no snmp
Here is my ACL for public :
ip access-list extended "109"
10 permit ip 10.99.0.0 0.0.255.255 10.1.1.198 0.0.0.0 log
11 permit ip 10.99.0.0 0.0.255.255 10.1.1.199 0.0.0.0 log
20 deny ip 10.99.0.0 0.0.255.255 10.0.0.0 0.255.255.255 log
30 permit ip 0.0.0.0 255.255.255.255 0.0.0.0 255.255.255.255 log
exit
Here is a snippet of some of the other configuration:
vlan 11
name "Test"
ip helper-address 10.1.1.101
ip address 10.79.3.1 255.255.0.0
tagged D19,D24
exit
vlan 12
name "Test2"
ip helper-address 10.1.1.101
ip address 10.32.3.1 255.255.0.0
tagged D19,D24
exit
vlan 99
name "Public"
ip helper-address 10.99.0.1
ip address 10.99.3.1 255.255.0.0
tagged A5,A12,B3-B4,D19,D21-D24,Trk1-Trk2
ip access-group "109" in
ip access-group "109" out
exit
#ACLs