<?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 Re: Cisco Anywhere Connect VPN: get LAN IP but can't access Internet or ping gateway in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3853884#M28383</link>
    <description>Yes no pb, you're welcome to come back and ask your questions.</description>
    <pubDate>Fri, 10 May 2019 12:38:37 GMT</pubDate>
    <dc:creator>Francesco Molino</dc:creator>
    <dc:date>2019-05-10T12:38:37Z</dc:date>
    <item>
      <title>Cisco Anywhere Connect VPN: get LAN IP but can't access Internet or ping gateway</title>
      <link>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3852612#M28376</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have setup a ASA 5506-X in my office like this (pls see the commands below). In Setup Wizard, I use Anywhere Connect VPN&amp;nbsp; to connect to office from home. Connection status shows success and I got an IP with correct Default gateway: 192.168.1.1. However, I can't access Internet or ping any other computers in LAN network (at office). I can't even ping the gateway 192.168.1.1. Computers at office can access Internet normally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please show me where I make mistake.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface BVI1&lt;BR /&gt;nameif inside&lt;BR /&gt;security-level 100&lt;BR /&gt;ip address 192.168.1.1 255.255.255.0&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ip local pool Inside_network 192.168.1.151-192.168.1.200 mask 255.255.255.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;!&lt;BR /&gt;interface GigabitEthernet1/1&lt;BR /&gt;nameif outside&lt;BR /&gt;security-level 0&lt;BR /&gt;ip address &amp;lt;public IP&amp;gt; 255.255.255.240&lt;BR /&gt;!&lt;BR /&gt;interface GigabitEthernet1/2&lt;BR /&gt;bridge-group 1&lt;BR /&gt;nameif inside_1&lt;BR /&gt;security-level 100&lt;BR /&gt;!&lt;BR /&gt;interface GigabitEthernet1/3&lt;BR /&gt;bridge-group 1&lt;BR /&gt;nameif inside_2&lt;BR /&gt;security-level 100&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;same-security-traffic permit inter-interface&lt;BR /&gt;same-security-traffic permit intra-interface&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj_any1&lt;BR /&gt;subnet 0.0.0.0 0.0.0.0&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj_192.168.1.0&lt;BR /&gt;subnet 192.168.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;!&lt;BR /&gt;object network obj_any1&lt;BR /&gt;nat (inside_1,outside) dynamic interface dns&lt;BR /&gt;object network obj_192.168.1.0&lt;BR /&gt;nat (inside_2,outside) dynamic interface dns&lt;BR /&gt;route outside 0.0.0.0 0.0.0.0 &amp;lt;public IP&amp;gt;&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;dhcpd dns 8.8.8.8 4.2.2.2&lt;BR /&gt;dhcpd auto_config outside&lt;BR /&gt;!&lt;BR /&gt;dhcpd address 192.168.1.50-192.168.1.150 inside&lt;BR /&gt;dhcpd enable inside&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 18:39:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3852612#M28376</guid>
      <dc:creator>huyan</dc:creator>
      <dc:date>2019-05-08T18:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Anywhere Connect VPN: get LAN IP but can't access Internet or ping gateway</title>
      <link>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3853681#M28379</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;For not being able to access your inside network, you're missing the nat exempt:&lt;BR /&gt;&lt;BR /&gt;nat (inside_1,outside) source static obj_192.168.1.0 obj_192.168.1.0 destination static obj_192.168.1.0 obj_192.168.1.0  no-proxy-arp route-lookup&lt;BR /&gt;nat (inside_2,outside) source static obj_192.168.1.0 obj_192.168.1.0 destination static obj_192.168.1.0 obj_192.168.1.0  no-proxy-arp route-lookup&lt;BR /&gt;&lt;BR /&gt;I don't see your full config but you need to validate that sysopt connection permit-vpn to allow vpn traffic to access inside hosts and bypassing asa acls otherwise you'll need to adapt your outside acl to access inside.&lt;BR /&gt;&lt;BR /&gt;For Internet access, if you want your Internet traffic to be tunneled into your vpn, you'll need to apply the following nat:&lt;BR /&gt;nat (outside,outside) after-auto source dynamic obj_192.168.1.0 interface &lt;BR /&gt;&lt;BR /&gt;If you want your Internet to be local, then you'll need to configure split vpn.&lt;BR /&gt;</description>
      <pubDate>Fri, 10 May 2019 03:32:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3853681#M28379</guid>
      <dc:creator>Francesco Molino</dc:creator>
      <dc:date>2019-05-10T03:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Anywhere Connect VPN: get LAN IP but can't access Internet or ping gateway</title>
      <link>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3853715#M28380</link>
      <description>Hi Francesco,&lt;BR /&gt;Your reply saved me hours of scratching my head. It works like a charm. However, I will have to learn to commands carefully. If I have problem understanding the commands, perhaps I will get back to this thread to bug you again.&lt;BR /&gt;Thank you very much!&lt;BR /&gt;Huy.</description>
      <pubDate>Fri, 10 May 2019 05:23:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3853715#M28380</guid>
      <dc:creator>huyan</dc:creator>
      <dc:date>2019-05-10T05:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Anywhere Connect VPN: get LAN IP but can't access Internet or ping gateway</title>
      <link>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3853884#M28383</link>
      <description>Yes no pb, you're welcome to come back and ask your questions.</description>
      <pubDate>Fri, 10 May 2019 12:38:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-anywhere-connect-vpn-get-lan-ip-but-can-t-access-internet/m-p/3853884#M28383</guid>
      <dc:creator>Francesco Molino</dc:creator>
      <dc:date>2019-05-10T12:38:37Z</dc:date>
    </item>
  </channel>
</rss>

