cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
363
Views
1
Helpful
2
Replies

Unsure how to block public IP subnets from attempting to connect

debbiebeitler
Level 1
Level 1

I need to block some public addresses (19.16.0.0/16 for example) from attempting to connect to my ASA.

# already have this:
object network spam_ip_19_16
   range 19.16.0.0 19.16.255.255
access-list acl_block_ip extended deny ip object spam_ip_19_16 any
# This does not appear to do anything. As it is not attached to anything, I would not expect it to work.
# Need it to work on the public interface.

# This is also already in place
access-list public_access_in extended deny ip any any log
access-group public_access_in in interface public

# additional configuration items
access-list no_access standard deny 10.0.0.0 255.0.0.0
access-list no_access standard deny 172.16.0.0 255.24.0.0
access-list acl_somenet standard permit 10.0.0.0 255.0.0.0
access-list acl_somenet standard permit 172.16.0.0 255.24.0.0

group-policy no_access internal
group-policy no_access attributes
  vpn-filter value no_access
  vpn-tunnel-protocol ssl-client
  split-tunnel-policy tunnelspecified
  split-tunnel-network-list value acl_somenet
  webvpn
     anyconnect....
     anyconnect.....
#Then several of these...
dynamic-access-policy-record xxxxx
    network-acl acl_xxxxx

Does dynamic access change the way ACLs are configured and used?
And is there a way in this configuration to block connections from the public Internet?

ASA version 9.16(4)27

 

1 Accepted Solution

Accepted Solutions

@debbiebeitler you can use a control-plane ACL to restrict traffic to the ASA itself.

The example below is for FTD but you use the same CLI syntax on the ASA.

1000003122.png

https://integratingit.wordpress.com/2021/06/26/ftd-control-plane-acl/#more-10978

 

View solution in original post

2 Replies 2

@debbiebeitler you can use a control-plane ACL to restrict traffic to the ASA itself.

The example below is for FTD but you use the same CLI syntax on the ASA.

1000003122.png

https://integratingit.wordpress.com/2021/06/26/ftd-control-plane-acl/#more-10978