Firewall – How to remove the ACL of PIX firewall

access-control-listcisco-pixfirewall

I'm just trying to how PIX works. Anyway how can I remove the ACL from my GNS3's PIX?

PIX-SECU(config)# show access-list
access-list cached ACL log flows: total 0, denied 0 (deny-flow-max 4096)
alert-interval 300
access-list 1; 1 elements
access-list 1 line 1 standard deny host 10.10.10.10 (hitcnt=0) 0x829743dd
PIX-SECU(config)#

Also It works as a router mode. Thank you everybody.
Please understand me. I can't speak english very much.

Bye.

Best Answer

Preface the undesired line from the running config with 'no' to delete it.

Eg. no access-list 1 standard deny host 10.10.10.10

Note: you need to delete the relevant line as it appears in the "running configuration", not the output of a command like "show access-list" as this includes things like the hit-count which aren't actually part of the config.

If you want to clear a WHOLE access list, then I believe you can use "clear config access-list 1"

Related Topic