access-list Outside_Inbound extended permit object-group LDAP object-group CLOUD object-group Internet-Server. Why won't this work? What am I missing? No hitcount on this access list whatsoever
Hardware FirewallsCiscoNetwork Security
Last Comment
Pete Long
8/22/2022 - Mon
Jan Bacher
config t
access-list Outside_Inbound extended permit object-group CLOUD object-group Internet-Server object-group LDAP
access-group Outside_Inbound in interface outside
end
From this subnet and from its ports to that subnet
or:
From this subnet to that subnet and its ports.
Non-objectified:
access-list outside_in extended permit tcp 209.122.333.0 255.255.248.0 host 1.1.1.1 eq 389
# Allow 209.122.333.0 subnet to tcp connect to port 389 on 1.1.1.1
access-list outside_in extended permit udp 209.122.333.0 255.255.248.0 host 1.1.1.1 eq 389
# Allow 209.122.333.0 subnet to udp connect to port 389 on 1.1.1.1
###################################################################
And I prefer to separate my tcp and udp services by putting the tag "tcp" or "udp" at the end:
object-group service LDAP-TCP tcp
port-object eq 389
port-object eq 636
object-group service LDAP-UDP udp
port-object eq 389
port-object eq 636
access-list Outside_Inbound extended permit object-group CLOUD object-group Internet-Server object-group LDAP
access-group Outside_Inbound in interface outside
end