This type of error will show up in PIX or ASA by a regular #copy running-conifg tftp command while connected via IPsec VPN session.
1 2 3 |
Cryptochecksum: 70e58828 6b9e5a1f 0923925a 05576dc1 !! %Error writing tftp://10.10.10.10/running-config (Timed out attempting to connect) |
There are two ways to transfer the configuration of PIX and ASA appliance over to TFTP server.
First,
SYNTAX: PIX# wr net <tftp_ip>:<file_name>
1 2 3 4 5 6 7 |
PIX# wr net 10.10.10.10:running-config Building configuration... INFO: Default tftp-server not set, using highest security interface Cryptochecksum: 70e58828 6b9e5a1f 0923925a 05576dc1 !! [OK] PIX# |
And secondly,
SYNTAX: PIX# copy running-config tftp://<tftp_ip>/<filename>;int=inside
1 2 3 4 5 6 7 8 9 10 11 |
PIX# copy running-config tftp://10.10.10.10/running-config;int=inside Source filename [running-config]? Address or name of remote host [10.10.10.10]? Destination filename [running-config]? Cryptochecksum: 70e58828 6b9e5a1f 0923925a 05576dc1 !! 8016 bytes copied in 0.390 secs PIX# |