<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To Configure AnyConnect SSL VPN on Cisco ASA 5500</title>
	<atom:link href="http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/</link>
	<description>Technology in the 21st Century</description>
	<lastBuildDate>Sat, 04 May 2013 09:19:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: BlogAdmin</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-28363</link>
		<dc:creator>BlogAdmin</dc:creator>
		<pubDate>Sat, 01 Dec 2012 12:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-28363</guid>
		<description><![CDATA[From a quick glance there is one error in the split tunnel access list. The following command is wrong:

ASA(config-group-webvpn)# split-tunnel-network-list value splitVPN


Change it to:

&lt;strong&gt;ASA(config-group-webvpn)# split-tunnel-network-list value rbt_splitTunnelAcl&lt;/strong&gt;



So have you tried the above config and it doesn&#039;t work?

Harris]]></description>
		<content:encoded><![CDATA[<p>From a quick glance there is one error in the split tunnel access list. The following command is wrong:</p>
<p>ASA(config-group-webvpn)# split-tunnel-network-list value splitVPN</p>
<p>Change it to:</p>
<p><strong>ASA(config-group-webvpn)# split-tunnel-network-list value rbt_splitTunnelAcl</strong></p>
<p>So have you tried the above config and it doesn&#8217;t work?</p>
<p>Harris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Azam</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-28228</link>
		<dc:creator>Azam</dc:creator>
		<pubDate>Sat, 01 Dec 2012 06:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-28228</guid>
		<description><![CDATA[Please check the following which I configured on ASA 5540 8.4(2)
============================================
Identity Nat
============================================
object network INSIDE_HOSTS
 subnet 172.16.0.0 255.255.0.0
 !
 object network RAVPN_HOSTS
 subnet 172.16.170.0 255.255.255.0
 !
 nat (inside,Sahara-internet) source static INSIDE_HOSTS INSIDE_HOSTS  destination static RAVPN_HOSTS RAVPN_HOSTS

============================================
Identity Nat
============================================
object network INSIDE_HOSTS1
 subnet 172.18.0.0 255.255.0.0
 !
 object network RAVPN_HOSTS1
 subnet 172.16.170.0 255.255.255.0
 !
 nat (inside,Sahara-internet) source static INSIDE_HOSTS1 INSIDE_HOSTS1  destination static RAVPN_HOSTS1 RAVPN_HOSTS1  

===============================================
Define your Split Tunnel ACL 
===============================================
ASA(config)# access-list rbt_splitTunnelAcl standard permit 172.16.0.0 255.255.0.0
ASA(config)# access-list rbt_splitTunnelAcl standard permit 172.18.0.0 255.255.0.0

=======================================
Define the Group Policy for the WebVPN 
=======================================
ASA(config)# group-policy NPC_SSLVPN internal 
ASA(config)# group-policy NPC_SSLVPN attributes 
ASA(config-group-policy)# vpn-tunnel-protocol svc webvpn
ASA(config-group-policy)# webvpn 
ASA(config-group-webvpn)# split-tunnel-policy tunnelspecified
ASA(config-group-webvpn)# split-tunnel-network-list value splitVPN 
ASA(config-group-webvpn)# split-dns value *****************
ASA(config-group-webvpn)# dns-server value ************

============================
Define a DHCP pool for the clients to use
============================ 
ASA(config)#ip local pool NPCPOOL 172.16.170.51-172.16.170.200 mask 255.255.255.0

============================
Define a local user to use for the VPN 
============================
ASA(config)# username  password  privilege 15
ASA(config)# username  attributes 
ASA(config-username)# vpn-group-policy NPC_SSLVPN

=============================================
Enable WebVPN 
=============================================

ASA(config)# webvpn
ASA(config-webvpn)#enable Sahara-internet
ASA(config-webvpn)#  anyconnect image disk0:/anyconnect-macosx-i386-2.5.2019-k9.pkg 1
ASA(config-webvpn)# anyconnect image disk0:/anyconnect-win-2.5.2019-k9.pkg 2
ASA(config-webvpn)#  anyconnect enable 

=============================================
Define the tunnel group 
=============================================
ASA(config)# Tunnel-group TG_SSLVPN type remote-access
ASA(config)# Tunnel-group TG_SSLVPN general-attributes
ASA(config-tunnel-general)# default-group-policy NPC_SSLVPN 
ASA(config-tunnel-general)# address-pool NPCPOOL

===============================
Link the tunnel group to WebVPN
=============================== 
ASA(config)# webvpn
ASA(config-webvpn)# tunnel-group-list enable
ASA(config-webvpn)# exit
ASA(config)# tunnel-group TG_SSLVPN webvpn-attributes 
ASA(config-tunnel-webvpn)# group-alias AnyConnect enable

====================
 saving the config
====================
ASA(config)# write]]></description>
		<content:encoded><![CDATA[<p>Please check the following which I configured on ASA 5540 8.4(2)<br />
============================================<br />
Identity Nat<br />
============================================<br />
object network INSIDE_HOSTS<br />
 subnet 172.16.0.0 255.255.0.0<br />
 !<br />
 object network RAVPN_HOSTS<br />
 subnet 172.16.170.0 255.255.255.0<br />
 !<br />
 nat (inside,Sahara-internet) source static INSIDE_HOSTS INSIDE_HOSTS  destination static RAVPN_HOSTS RAVPN_HOSTS</p>
<p>============================================<br />
Identity Nat<br />
============================================<br />
object network INSIDE_HOSTS1<br />
 subnet 172.18.0.0 255.255.0.0<br />
 !<br />
 object network RAVPN_HOSTS1<br />
 subnet 172.16.170.0 255.255.255.0<br />
 !<br />
 nat (inside,Sahara-internet) source static INSIDE_HOSTS1 INSIDE_HOSTS1  destination static RAVPN_HOSTS1 RAVPN_HOSTS1  </p>
<p>===============================================<br />
Define your Split Tunnel ACL<br />
===============================================<br />
ASA(config)# access-list rbt_splitTunnelAcl standard permit 172.16.0.0 255.255.0.0<br />
ASA(config)# access-list rbt_splitTunnelAcl standard permit 172.18.0.0 255.255.0.0</p>
<p>=======================================<br />
Define the Group Policy for the WebVPN<br />
=======================================<br />
ASA(config)# group-policy NPC_SSLVPN internal<br />
ASA(config)# group-policy NPC_SSLVPN attributes<br />
ASA(config-group-policy)# vpn-tunnel-protocol svc webvpn<br />
ASA(config-group-policy)# webvpn<br />
ASA(config-group-webvpn)# split-tunnel-policy tunnelspecified<br />
ASA(config-group-webvpn)# split-tunnel-network-list value splitVPN<br />
ASA(config-group-webvpn)# split-dns value *****************<br />
ASA(config-group-webvpn)# dns-server value ************</p>
<p>============================<br />
Define a DHCP pool for the clients to use<br />
============================<br />
ASA(config)#ip local pool NPCPOOL 172.16.170.51-172.16.170.200 mask 255.255.255.0</p>
<p>============================<br />
Define a local user to use for the VPN<br />
============================<br />
ASA(config)# username  password  privilege 15<br />
ASA(config)# username  attributes<br />
ASA(config-username)# vpn-group-policy NPC_SSLVPN</p>
<p>=============================================<br />
Enable WebVPN<br />
=============================================</p>
<p>ASA(config)# webvpn<br />
ASA(config-webvpn)#enable Sahara-internet<br />
ASA(config-webvpn)#  anyconnect image disk0:/anyconnect-macosx-i386-2.5.2019-k9.pkg 1<br />
ASA(config-webvpn)# anyconnect image disk0:/anyconnect-win-2.5.2019-k9.pkg 2<br />
ASA(config-webvpn)#  anyconnect enable </p>
<p>=============================================<br />
Define the tunnel group<br />
=============================================<br />
ASA(config)# Tunnel-group TG_SSLVPN type remote-access<br />
ASA(config)# Tunnel-group TG_SSLVPN general-attributes<br />
ASA(config-tunnel-general)# default-group-policy NPC_SSLVPN<br />
ASA(config-tunnel-general)# address-pool NPCPOOL</p>
<p>===============================<br />
Link the tunnel group to WebVPN<br />
===============================<br />
ASA(config)# webvpn<br />
ASA(config-webvpn)# tunnel-group-list enable<br />
ASA(config-webvpn)# exit<br />
ASA(config)# tunnel-group TG_SSLVPN webvpn-attributes<br />
ASA(config-tunnel-webvpn)# group-alias AnyConnect enable</p>
<p>====================<br />
 saving the config<br />
====================<br />
ASA(config)# write</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BlogAdmin</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-25765</link>
		<dc:creator>BlogAdmin</dc:creator>
		<pubDate>Fri, 02 Nov 2012 18:56:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-25765</guid>
		<description><![CDATA[HL,

Open the &quot;&lt;strong&gt;Cisco Anyconnect VPN Client&lt;/strong&gt;&quot; software (it must be installed on your PC after connecting for the first time on the ASA) and click on &quot;Preferences&quot; button (it is next to &quot;Connect to: IP address&quot;). Then click on &quot;&lt;strong&gt;Enable Local LAN Access&lt;/strong&gt;&quot;.]]></description>
		<content:encoded><![CDATA[<p>HL,</p>
<p>Open the &#8220;<strong>Cisco Anyconnect VPN Client</strong>&#8221; software (it must be installed on your PC after connecting for the first time on the ASA) and click on &#8220;Preferences&#8221; button (it is next to &#8220;Connect to: IP address&#8221;). Then click on &#8220;<strong>Enable Local LAN Access</strong>&#8220;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HL</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-25383</link>
		<dc:creator>HL</dc:creator>
		<pubDate>Thu, 01 Nov 2012 15:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-25383</guid>
		<description><![CDATA[Hi!

Followed the guide above and the tunnel works almost perfect!

Only problem is that i can&#039;t reach the internal network. Can&#039;t ping, RDP, telnet or open in explorer. 

I&#039;m using the exact IP adresses as mentioned in the guide.]]></description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Followed the guide above and the tunnel works almost perfect!</p>
<p>Only problem is that i can&#8217;t reach the internal network. Can&#8217;t ping, RDP, telnet or open in explorer. </p>
<p>I&#8217;m using the exact IP adresses as mentioned in the guide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karthik</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-19578</link>
		<dc:creator>Karthik</dc:creator>
		<pubDate>Fri, 29 Jun 2012 20:14:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-19578</guid>
		<description><![CDATA[Hi All,

I have my SSL-VPN (SONICWALL) box behind Cisco ASA box, I have done the Static for the SSL BOX Im able to ping the box from internet, but not able to login to the ssl vpn webpage. Previously SSL box was working with the static public ip.

Any suggestions would be great]]></description>
		<content:encoded><![CDATA[<p>Hi All,</p>
<p>I have my SSL-VPN (SONICWALL) box behind Cisco ASA box, I have done the Static for the SSL BOX Im able to ping the box from internet, but not able to login to the ssl vpn webpage. Previously SSL box was working with the static public ip.</p>
<p>Any suggestions would be great</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shae</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-19572</link>
		<dc:creator>Shae</dc:creator>
		<pubDate>Wed, 27 Jun 2012 23:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-19572</guid>
		<description><![CDATA[Hi,

Anyconnect VPN worked perfect by using your configuration.
ASA 5510 came with only 2 connections so I ordered Anyconnect Essentials license.
After I install the license, Anyconnect VPN is saying could not connect to server.
I cannot open the https://my IP page either.

Any advice?]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Anyconnect VPN worked perfect by using your configuration.<br />
ASA 5510 came with only 2 connections so I ordered Anyconnect Essentials license.<br />
After I install the license, Anyconnect VPN is saying could not connect to server.<br />
I cannot open the <a href="https://my" rel="nofollow">https://my</a> IP page either.</p>
<p>Any advice?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SF</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-19384</link>
		<dc:creator>SF</dc:creator>
		<pubDate>Wed, 23 May 2012 09:51:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-19384</guid>
		<description><![CDATA[Hi All
I have notced a weird problem on ASA5505 with regards to NAT.
Basically what I did was to configure Dynamic NAT for all workstations and static nat for the server. Strangly the server is still choosing dynamic NAT althogh static nat statement is corrcet (verified several times). 
Has anyone experienced this before ??

normally static should take the precedence over dynamic which did not happened. 

Any comments would be great]]></description>
		<content:encoded><![CDATA[<p>Hi All<br />
I have notced a weird problem on ASA5505 with regards to NAT.<br />
Basically what I did was to configure Dynamic NAT for all workstations and static nat for the server. Strangly the server is still choosing dynamic NAT althogh static nat statement is corrcet (verified several times).<br />
Has anyone experienced this before ??</p>
<p>normally static should take the precedence over dynamic which did not happened. </p>
<p>Any comments would be great</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BlogAdmin</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-19000</link>
		<dc:creator>BlogAdmin</dc:creator>
		<pubDate>Sat, 17 Mar 2012 15:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-19000</guid>
		<description><![CDATA[In order to access the Internet from the anyconnect client site you must enable split-tunneling. Otherwise, all traffic will flow in the tunnel towards your company network.]]></description>
		<content:encoded><![CDATA[<p>In order to access the Internet from the anyconnect client site you must enable split-tunneling. Otherwise, all traffic will flow in the tunnel towards your company network.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: StinkyB</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-18999</link>
		<dc:creator>StinkyB</dc:creator>
		<pubDate>Sat, 17 Mar 2012 11:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-18999</guid>
		<description><![CDATA[For pure testing of the AnyConnect I&#039;ve taken out the splittunnel.

I got the ip address from the VPNpool, I&#039;ve tested it by trying to ping the local machines. I&#039;ve turned off the firewall on the PC in the internal network just to make sure but it cannot be accessed. 

Also I cannot browse the internet while I&#039;m just connectted to Anyconnect. I can only browse the internet when I set the splittunnel. But if I do all the traffic seems to go out through the local gateway and never goes through the VPN tunnel.]]></description>
		<content:encoded><![CDATA[<p>For pure testing of the AnyConnect I&#8217;ve taken out the splittunnel.</p>
<p>I got the ip address from the VPNpool, I&#8217;ve tested it by trying to ping the local machines. I&#8217;ve turned off the firewall on the PC in the internal network just to make sure but it cannot be accessed. </p>
<p>Also I cannot browse the internet while I&#8217;m just connectted to Anyconnect. I can only browse the internet when I set the splittunnel. But if I do all the traffic seems to go out through the local gateway and never goes through the VPN tunnel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BlogAdmin</title>
		<link>http://www.tech21century.com/how-to-configure-anyconnect-ssl-vpn-on-cisco-asa-5500/comment-page-1/#comment-18994</link>
		<dc:creator>BlogAdmin</dc:creator>
		<pubDate>Fri, 16 Mar 2012 18:31:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech21century.com/?p=305#comment-18994</guid>
		<description><![CDATA[StinkyB,

OK, first check that you have received IP address. Run ipconfig /all on your machine to see which IP you have been assigned. When you say you can&#039;t access internal network, how do you test this? Try to open an RDP connection to an internal windows box because ping might be denied by local windows firewall. Also, remove the &quot;no-proxy-arp&quot; from the end of nat command.]]></description>
		<content:encoded><![CDATA[<p>StinkyB,</p>
<p>OK, first check that you have received IP address. Run ipconfig /all on your machine to see which IP you have been assigned. When you say you can&#8217;t access internal network, how do you test this? Try to open an RDP connection to an internal windows box because ping might be denied by local windows firewall. Also, remove the &#8220;no-proxy-arp&#8221; from the end of nat command.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

 Served from: www.tech21century.com @ 2013-05-19 06:52:00 by W3 Total Cache -->