|
Cisco ASA Packet Capturing on Firewall
Here are the commands to setup packet capturing.
name 10.0.10.5 myHost
access-list capture-list permit ip any host myHost
access-list capture-list permit ip host myHost any
capture myCapture interface inside access capture-list
Here is how you stop the packets from capturing.
no capture myCapture interface inside access capture-list
Here is how you download the data in PCAP format.
https://firewall/admin/capture/myCapture/pcap
Here is how you remove the myCapture file from the ASA.
no capture myCapture
Remove the name and access-list entries when you're done.
- Scotech
|