This post was last edited by vin7 at 2018-11-28 03:41.
Hi
I'm looking to allow only my own IPs into the router to manage it remotely but this configuration doesn't seem to be working.
When I apply an inbound ACL, the first one blocks all the outgoing traffic and second one doesn't block anything at all.
1) The deny rule (rule 3) blocks all outgoing & incoming traffic
acl name InboundFilterBasic 2995
description "filter incoming IPs only"
rule 1 permit source 22.22.22.22 0
rule 2 permit source 33.33.33.33 0
rule 3 deny source any
2) The deny rule (rule 3) does not block any traffic at all.
acl name InboundFilterBasic 2995
description "filter incoming IPs only"
rule 1 permit source 22.22.22.22 0
rule 2 permit source 33.33.33.33 0
rule 3 deny source 0.0.0.0 0
How I apply this:
interface GigabitEthernet0/0/0
ip address 23.45.67.89 255.255.255.252
nat outbound 2000
nat static enable
traffic-filter inbound acl name InboundFilterBasic What could be missing here?