<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Here's what I do: in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573218#M425877</link>
    <description>&lt;P&gt;&lt;U&gt;Here's what I do:&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;When logged into an ASA via ssh, I run&lt;/P&gt;

&lt;PRE&gt;
asa# copy run filename.txt&lt;/PRE&gt;

&lt;P&gt;Then, I scp the file down to my local machine by running&lt;/P&gt;

&lt;PRE&gt;
linux$ scp user@sf-fw-loc2.domain.com:filename.txt .&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TIP: If I have used tftp before on the respective ASA, the filename I could use will be in 'sh run tftp':&lt;/P&gt;

&lt;PRE&gt;
asa# sh run tftp
tftp-server inside 10.0.0.21 sf-fw-loc2.txt&lt;/PRE&gt;

&lt;P&gt;My tftp config line will have identifying information in the filename, e.g. ny-fw-loc1.txt, so that I can know which firewall the config is from when I need to restore a file. The filename you create is arbitrary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TIP: By utilizing ssh keys, you could achieve these scp transfers without passwords. By not using passwords, you could also automate the download process using cron.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Mar 2015 19:14:45 GMT</pubDate>
    <dc:creator>btarver</dc:creator>
    <dc:date>2015-03-17T19:14:45Z</dc:date>
    <item>
      <title>asa and scp</title>
      <link>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573215#M425874</link>
      <description>&lt;P&gt;How do I use scp with my asa to copy the running-config to a linux device ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 08:53:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573215#M425874</guid>
      <dc:creator>Yves-Buecking_2</dc:creator>
      <dc:date>2020-02-21T08:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: asa and scp</title>
      <link>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573216#M425875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since this was posted in '06, has no one else had this question? I can scp files to the ASA and can even scp files from disk0 on the ASA to/from a linux box. I cannot however figure out how to grab system:running-config to get the config the same way you would from a tftp. This is for backup purposes to replace tftp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 15:00:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573216#M425875</guid>
      <dc:creator>khinze</dc:creator>
      <dc:date>2008-06-09T15:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: asa and scp</title>
      <link>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573217#M425876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I mentioned in my earlier post, you could setup a VPN between the ASA|PIX and the Server running the TFTP daemon to secure the communication, I would give it a try. You can use transport mode for this purpose for minimal overhead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Farrukh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 01:34:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573217#M425876</guid>
      <dc:creator>Farrukh Haroon</dc:creator>
      <dc:date>2008-06-10T01:34:10Z</dc:date>
    </item>
    <item>
      <title>Here's what I do:</title>
      <link>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573218#M425877</link>
      <description>&lt;P&gt;&lt;U&gt;Here's what I do:&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;When logged into an ASA via ssh, I run&lt;/P&gt;

&lt;PRE&gt;
asa# copy run filename.txt&lt;/PRE&gt;

&lt;P&gt;Then, I scp the file down to my local machine by running&lt;/P&gt;

&lt;PRE&gt;
linux$ scp user@sf-fw-loc2.domain.com:filename.txt .&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TIP: If I have used tftp before on the respective ASA, the filename I could use will be in 'sh run tftp':&lt;/P&gt;

&lt;PRE&gt;
asa# sh run tftp
tftp-server inside 10.0.0.21 sf-fw-loc2.txt&lt;/PRE&gt;

&lt;P&gt;My tftp config line will have identifying information in the filename, e.g. ny-fw-loc1.txt, so that I can know which firewall the config is from when I need to restore a file. The filename you create is arbitrary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TIP: By utilizing ssh keys, you could achieve these scp transfers without passwords. By not using passwords, you could also automate the download process using cron.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 19:14:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-and-scp/m-p/573218#M425877</guid>
      <dc:creator>btarver</dc:creator>
      <dc:date>2015-03-17T19:14:45Z</dc:date>
    </item>
  </channel>
</rss>

