<?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 You originally stated that in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605647#M205147</link>
    <description>&lt;P&gt;You originally stated that you try to ping through the ASA. Now you are pinging from the ASA. But ok ...&lt;/P&gt;&lt;P&gt;After pinging do a "show arp | i 10.10.10.2". You should see an entry there which means that you can reach that device. Most likely, icmp is blocked on the 10.10.10.2 device. Continue troubleshooting there.&lt;/P&gt;</description>
    <pubDate>Mon, 08 Dec 2014 14:05:24 GMT</pubDate>
    <dc:creator>Karsten Iwen</dc:creator>
    <dc:date>2014-12-08T14:05:24Z</dc:date>
    <item>
      <title>ASA 5510, can't connect to the internet through a switch</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605639#M205139</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an ASA 5510 connected to the internet through a switch. I can't hit the internet with the following config, I am not sure why? If I address the switch on the interface facing the internet, it is fine and I can ping anything public which I try.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try to ping out through the ASA with the below config, I can't hit anything. If I address the link between the ASA and switch, I can ping across it -&amp;nbsp;so there's no problem with connectivity from the ASA that I can tell.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Switch:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/1&lt;/P&gt;&lt;P&gt;descritiption Link to Internet&lt;/P&gt;&lt;P&gt;switchport access vlan 2&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/2&lt;/P&gt;&lt;P&gt;description Link to ASA&lt;/P&gt;&lt;P&gt;switchport access vlan 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ASA:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;interface Ethernet0/1&lt;BR /&gt;&amp;nbsp;speed 100&lt;BR /&gt;&amp;nbsp;duplex full&lt;BR /&gt;&amp;nbsp;nameif outside&lt;BR /&gt;&amp;nbsp;security-level 0&lt;BR /&gt;&amp;nbsp;ip address 10.10.10.10.1 255.255.255.252&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;route outside 0.0.0.0 0.0.0.0 10.10.10.2 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I missing something obvious here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 05:11:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605639#M205139</guid>
      <dc:creator>sj.constantine</dc:creator>
      <dc:date>2019-03-12T05:11:47Z</dc:date>
    </item>
    <item>
      <title>ip address 10.10.10.10.1 255</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605640#M205140</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;ip address 10.10.10.10.1 255.255.255.252&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;I am assuming that the above is a typo?&lt;/P&gt;&lt;P&gt;Are you able to ping 10.10.10.2 from the ASA?&lt;/P&gt;&lt;P&gt;Do you have any access lists applied to the ASA?&amp;nbsp; You would need an ACL on the outside interface which permites return ICMP packets since both ping request and ping replies are seperate traffic flows.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list out-in permit icmp any any&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-group out-in in interface outside&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Please remember to select a correct answer and rate helpful posts&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 10:25:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605640#M205140</guid>
      <dc:creator>Marius Gunnerud</dc:creator>
      <dc:date>2014-12-08T10:25:02Z</dc:date>
    </item>
    <item>
      <title>If you are only testing it</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605641#M205141</link>
      <description>&lt;P&gt;If you are only testing it with ICMP, then that could be the problem as it's not handled statefully by default. Configure the following and try again:&lt;/P&gt;

&lt;PRE&gt;
policy-map global_policy
 class inspection_default
  inspect icmp&lt;/PRE&gt;

&lt;P&gt;And you should also try "real" traffic like surfing the web, telnet/ssh and so on.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 11:02:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605641#M205141</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2014-12-08T11:02:43Z</dc:date>
    </item>
    <item>
      <title>hi guys thanks for your</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605642#M205142</link>
      <description>&lt;P&gt;hi guys&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your responses.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the problem isn't with icmp not being allowed or traffic being blocked on an ACL, because&amp;nbsp;if I address&amp;nbsp;the switch with the default gateway on the interface connecting to the ASA, i can ping it fine. So&amp;nbsp;there's no problem with ICMP being blocked, ie this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;switch:&lt;/P&gt;&lt;P&gt;int gi0/1&lt;/P&gt;&lt;P&gt;ip add 10.10.10.2 255.255.255.255.252&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;asa:&lt;/P&gt;&lt;P&gt;int eth0/1&lt;/P&gt;&lt;P&gt;ip add 10.10.10.1 255.255.255.252&lt;/P&gt;&lt;P&gt;nameif outside&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;route outside 0.0.0.0 0.0.0.0 10.10.10.2 1&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;asa5100# ping 10.10.10.2&lt;BR /&gt;Type escape sequence to abort.&lt;BR /&gt;Sending 5, 100-byte ICMP Echos to 10.10.10.2, timeout is 2 seconds:&lt;BR /&gt;!!!!!&lt;BR /&gt;Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just can't figure why the switch isn't passing the traffic though (if that is indeed the problem),&amp;nbsp;as that is its most basic function - a dumb switchport in the same vlan. right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 11:44:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605642#M205142</guid>
      <dc:creator>sj.constantine</dc:creator>
      <dc:date>2014-12-08T11:44:15Z</dc:date>
    </item>
    <item>
      <title>Pinging to the ASA has</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605643#M205143</link>
      <description>&lt;P&gt;Pinging to the ASA has nothing to do with pinging through the ASA. The ASA behaves differently then a router when it comes to interface ACLs. On the ASA, the interface ACLs only control through traffic by default. For pinging through the ASA you should inspect icmp (as shown above) or test with other protocols.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 11:50:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605643#M205143</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2014-12-08T11:50:10Z</dc:date>
    </item>
    <item>
      <title>i have inspect icmp and an</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605644#M205144</link>
      <description>&lt;P&gt;i have inspect icmp and an acl permitting icmp both in and out on the outside interface.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;still no good.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 11:51:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605644#M205144</guid>
      <dc:creator>sj.constantine</dc:creator>
      <dc:date>2014-12-08T11:51:07Z</dc:date>
    </item>
    <item>
      <title>The ACL on the outside</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605645#M205145</link>
      <description>&lt;P&gt;The ACL on the outside interface is not needed any more if icmp is inspected.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Please show your config&lt;/LI&gt;&lt;LI&gt;Double-check the ip settings of the internal PC that you use for your tests.&lt;/LI&gt;&lt;LI&gt;Has your external router a route back to the ASAs internal network?&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Mon, 08 Dec 2014 11:59:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605645#M205145</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2014-12-08T11:59:17Z</dc:date>
    </item>
    <item>
      <title>i am pinging from the ASA</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605646#M205146</link>
      <description>&lt;P&gt;i am pinging from&amp;nbsp;the ASA itself, not the inside network.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;interface Ethernet0/1&lt;BR /&gt;&amp;nbsp;speed 100&lt;BR /&gt;&amp;nbsp;duplex full&lt;BR /&gt;&amp;nbsp;nameif outside&lt;BR /&gt;&amp;nbsp;security-level 0&lt;BR /&gt;&amp;nbsp;ip address 10.10.10.1 255.255.255.252&lt;BR /&gt;!&lt;BR /&gt;access-list 101 extended permit icmp any any&lt;BR /&gt;access-list 101 extended permit tcp any any&lt;BR /&gt;access-list 101 extended permit ip any any&lt;BR /&gt;!&lt;BR /&gt;access-group 101 in interface outside&lt;BR /&gt;access-group 101 out interface outside&lt;BR /&gt;!&lt;BR /&gt;route outside 0.0.0.0 0.0.0.0 10.10.10.2 1&lt;BR /&gt;!&lt;BR /&gt;class-map inspection_default&lt;BR /&gt;&amp;nbsp;match default-inspection-traffic&lt;BR /&gt;!&lt;BR /&gt;policy-map type inspect dns preset_dns_map&lt;BR /&gt;&amp;nbsp;parameters&lt;BR /&gt;&amp;nbsp; message-length maximum 512&lt;BR /&gt;policy-map global_policy&lt;BR /&gt;&amp;nbsp;class inspection_default&lt;BR /&gt;&amp;nbsp; inspect dns preset_dns_map&lt;BR /&gt;&amp;nbsp; inspect ftp&lt;BR /&gt;&amp;nbsp; inspect h323 h225&lt;BR /&gt;&amp;nbsp; inspect h323 ras&lt;BR /&gt;&amp;nbsp; inspect netbios&lt;BR /&gt;&amp;nbsp; inspect rsh&lt;BR /&gt;&amp;nbsp; inspect rtsp&lt;BR /&gt;&amp;nbsp; inspect skinny&lt;BR /&gt;&amp;nbsp; inspect esmtp&lt;BR /&gt;&amp;nbsp; inspect sqlnet&lt;BR /&gt;&amp;nbsp; inspect sunrpc&lt;BR /&gt;&amp;nbsp; inspect tftp&lt;BR /&gt;&amp;nbsp; inspect sip&lt;BR /&gt;&amp;nbsp; inspect xdmcp&lt;BR /&gt;&amp;nbsp; inspect ip-options&lt;BR /&gt;&amp;nbsp; inspect icmp&lt;BR /&gt;!&lt;BR /&gt;service-policy global_policy global&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;asa5510# ping 10.10.10.2&lt;BR /&gt;Type escape sequence to abort.&lt;BR /&gt;Sending 5, 100-byte ICMP Echos to 10.10.10.2, timeout is 2 seconds:&lt;BR /&gt;?????&lt;BR /&gt;Success rate is 0 percent (0/5)&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 13:37:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605646#M205146</guid>
      <dc:creator>sj.constantine</dc:creator>
      <dc:date>2014-12-08T13:37:03Z</dc:date>
    </item>
    <item>
      <title>You originally stated that</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605647#M205147</link>
      <description>&lt;P&gt;You originally stated that you try to ping through the ASA. Now you are pinging from the ASA. But ok ...&lt;/P&gt;&lt;P&gt;After pinging do a "show arp | i 10.10.10.2". You should see an entry there which means that you can reach that device. Most likely, icmp is blocked on the 10.10.10.2 device. Continue troubleshooting there.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 14:05:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605647#M205147</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2014-12-08T14:05:24Z</dc:date>
    </item>
    <item>
      <title>Argh, my bad - sorry!Doesn't</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605648#M205148</link>
      <description>&lt;P&gt;Argh, my bad - sorry!&lt;/P&gt;&lt;P&gt;Doesn't show up in the ARP table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;asa5510# sh arp&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mgmt 172.17.240.65 000b.45e2.484a 44&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ICMP&amp;nbsp;isn't blocked on the gateway (10.10.10.2) as when I&amp;nbsp;address my switch as 10.10.10.1, I can ping the gateway/anything on the internet. It's only when I address the ASA that I can't ping/reach the internet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The switchports are access ports in the same vlan without any other config - towards the internet and towards the ASA. They should be passing traffic without any restrictions.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 14:11:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605648#M205148</guid>
      <dc:creator>sj.constantine</dc:creator>
      <dc:date>2014-12-08T14:11:13Z</dc:date>
    </item>
    <item>
      <title>When you don't see an arp</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605649#M205149</link>
      <description>&lt;P&gt;When you don't see an arp entry, then the gateway doesn't talk to your ASA.&lt;/P&gt;&lt;P&gt;Please try to unplug the outside interface and the gateway from the switch&amp;nbsp;before testing. It could be that old arp-entries prohibit the communication.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 14:38:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605649#M205149</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2014-12-08T14:38:32Z</dc:date>
    </item>
    <item>
      <title>Since you have the switch as</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605650#M205150</link>
      <description>&lt;P&gt;Since you have the switch as the default route for the ASA, are you able to ping the internet from the switch?&amp;nbsp; Have you defined a default route on the switch?&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Please remember to select a correct answer and rate helpful posts&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 19:38:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-can-t-connect-to-the-internet-through-a-switch/m-p/2605650#M205150</guid>
      <dc:creator>Marius Gunnerud</dc:creator>
      <dc:date>2014-12-08T19:38:55Z</dc:date>
    </item>
  </channel>
</rss>

