Blame
|
1 | # cisco |
||||||
| 2 | ||||||||
| 3 | #### backup asa config |
|||||||
| 4 | copy running-config disk0:/running-config_backup.txt |
|||||||
| 5 | ||||||||
| 6 | #### scp config |
|||||||
| 7 | scp -O <host>:disk0:running-config_backup.txt . |
|||||||
| 8 | ||||||||
| 9 | #### list asa users |
|||||||
| 10 | show running-config username |
|||||||
| 11 | ||||||||
| 12 | #### change asa passwords |
|||||||
| 13 | username <username> password <password> priv 15 |
|||||||
| 14 | ||||||||
| 15 | ### Debug |
|||||||
| 16 | #### dap |
|||||||
| 17 | debug dap error |
|||||||
| 18 | debug dap trace 2 |
|||||||
| 19 | ||||||||
| 20 | #### site-to-site |
|||||||
| 21 | ##### IKEv1 |
|||||||
| 22 | debug crypto condition peer X.X.X.X |
|||||||
| 23 | debug crypto ikev1 200 |
|||||||
| 24 | ||||||||
| 25 | ##### IKEv2: |
|||||||
| 26 | debug crypto condition peer X.X.X.X |
|||||||
| 27 | debug crypto ikev2 platform 100 |
|||||||
| 28 | debug crypto ikev2 protocol 100 |
|||||||
| 29 | ||||||||
| 30 | #### show conditions so we can remove |
|||||||
| 31 | show debug |
|||||||