<?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 ASA 5505 Monitor HTTP Traffic in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-5505-monitor-http-traffic/m-p/1224607#M418364</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Any suggestion about how to correctly monitor HTTP Traffic from a certain host ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just received a request to log, for a specific period of time, http traffic from a host on the inside network to internet and to generate a sort of human readable output format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can either be log to a syslog, FTP etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know how to use filter, but this request got me a little confused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2020 11:17:40 GMT</pubDate>
    <dc:creator>nrnick</dc:creator>
    <dc:date>2020-02-21T11:17:40Z</dc:date>
    <item>
      <title>ASA 5505 Monitor HTTP Traffic</title>
      <link>https://community.cisco.com/t5/network-security/asa-5505-monitor-http-traffic/m-p/1224607#M418364</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Any suggestion about how to correctly monitor HTTP Traffic from a certain host ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just received a request to log, for a specific period of time, http traffic from a host on the inside network to internet and to generate a sort of human readable output format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can either be log to a syslog, FTP etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know how to use filter, but this request got me a little confused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 11:17:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5505-monitor-http-traffic/m-p/1224607#M418364</guid>
      <dc:creator>nrnick</dc:creator>
      <dc:date>2020-02-21T11:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: ASA 5505 Monitor HTTP Traffic</title>
      <link>https://community.cisco.com/t5/network-security/asa-5505-monitor-http-traffic/m-p/1224608#M418365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to inspect HTTP under your policy map for your ASA to log web addresses that are being accessed. After doing that, you would need to log to a syslog server, and then filter by the IP address that you want. If you have a lot of users, there's not a way that I know of that will allow you to pick just one address. (I don't think you can create an ACL to log against.) So, you could have a ton of traffic coming through that you'd have to filter through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2009 22:03:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5505-monitor-http-traffic/m-p/1224608#M418365</guid>
      <dc:creator>John Blakley</dc:creator>
      <dc:date>2009-02-16T22:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: ASA 5505 Monitor HTTP Traffic</title>
      <link>https://community.cisco.com/t5/network-security/asa-5505-monitor-http-traffic/m-p/1224609#M418369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a "capture" file which is easily readable and exportable.  I'm assuming you want to know what website IP addresses this inside host is going to???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Easy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, create an ACL to watch for traffic to the internet on port 80 from the inside host IP address. Lets call the ACL "http-snoop" and assume the inside IP address is 192.168.1.15 - just for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HOST(config)# access-list http-snoop permit tcp host 192.168.1.15 any eq 80&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, create a capture session - let's call it "watchingyou" - and apply it to the interfaces you want to capture on and reference the above ACL...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HOST(config)# capture watchingyou access-list http-snoop interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now.. just let it run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you want to see what you've captured, just type..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HOST# show capture watchingyou&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you'll see line-by-line each outbound request from that host to the internet on port 80.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you're done, "no" the capture line above then "no" the access-list.  Also, if you do a "show capture" you'll see the remaining capture file and you can "no" that to erase it when you're done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeremy Ault&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2009 22:50:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5505-monitor-http-traffic/m-p/1224609#M418369</guid>
      <dc:creator>jeremyault</dc:creator>
      <dc:date>2009-02-19T22:50:51Z</dc:date>
    </item>
  </channel>
</rss>

