getXML('<?xml version="1.0" encoding="UTF-8"?><ActiveMessages>Firewalling10590<Community id=".ee6b2b0" title="Networking Professionals">  <Forum id=".ee6e1f6" title="Security"><Topic id=".ee6e1fa" private="" title="Firewalling"><Conversation id=".2cd4f34a" messages="8" subscribed="no" title="ASA 5505 with Cisco VPN Client"><Message attachment="no" canreply="yes" id=".2cd4f34a" level=""><Author authinfo=" None">milfrankrodriguez</Author><Timestamp>Nov 17, 2009, 8:05am PST</Timestamp><Msgbody>Hi,&lt;br /&gt;&lt;br /&gt;I have just set up my 1st ASA firewall. I have an L2L between my 2 sites setup without a problem. However when I try to use the vpn client, it connects fine but I cannot get access to the remote LAN&lt;br /&gt;&lt;br /&gt;I have attached my config, can anyone tell me where i&apos;m going wrong?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) asaconfig.txt&lt;br /&gt;</Msgbody> <Attachment><Document><FileName>asaconfig.txt</FileName><DocID>123679</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>4370</Size><ExpirationDate>11/17/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f34a/0" level="1.">      <Author authinfo="Network Engineer, N/A">branfarm1</Author><Timestamp>Nov 17, 2009, 8:13am PST</Timestamp><Msgbody>Are the RemoteLAN addresses the networks listed in Access-list 101?&lt;br /&gt;&lt;br /&gt;It looks like you have access-list 101 defined as a split-tunnel ACL for the VPNClt tunnel-group.  With split tunneling you are telling the VPN client which networks to protect, or in other words, which networks to send down the tunnel.  If you are trying to reach the remote LAN through the VPN client tunnel, you don&apos;t want to have split tunneling enabled.&lt;br /&gt;&lt;br /&gt;You need access-list 101 as part of your L2L tunnel, so don&apos;t remove it.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f34a/1" level="1.1"><Author authinfo=" None">milfrankrodriguez</Author><Timestamp>Nov 17, 2009, 8:24am PST</Timestamp><Msgbody>Thanks for your quick reply&lt;br /&gt;&lt;br /&gt;Yes the RemoteLAN addresses are in 101&lt;br /&gt;&lt;br /&gt;I have disabled split tunneling now but still can&apos;t seem to access remote lan</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f34a/2" level="1.1.1">      <Author authinfo="Network Engineer, N/A">branfarm1</Author><Timestamp>Nov 17, 2009, 8:30am PST</Timestamp><Msgbody>Since both VPN&apos;s are off of the outside interface, your traffic is entering the ASA on the outside then attempting to leave via the outside as well.  Try using the "same-security-traffic permit intra-interface" CLI command, or check the "Enable traffic between two or more hosts connected to the same interface" box on the Interfaces page in ASDM.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f34a/3" level="1.1.1.1">      <Author authinfo="Network Engineer, N/A">branfarm1</Author><Timestamp>Nov 17, 2009, 8:35am PST</Timestamp><Msgbody>Also, you will need to add 192.168.254.1-192.168.254.50 to your NAT exemption list. Otherwise, as the traffic tries to leave via the outside interface it will be PAT&apos;d to your outside address. &lt;br /&gt;&lt;br /&gt;Once you change the NAT exemption, you&apos;ll need to update your ACL 101 to make traffic sourced from 192.168.254.0, bound for the Remote LAN, use the VPN.</Msgbody><Attachment/></Message></Reply><Reply><Message attachment="no" canreply="yes" editable="yes" id=".2cd4f34a/4" level="1.1.1.2"><Author authinfo=" None">milfrankrodriguez</Author><Timestamp>Nov 17, 2009, 8:39am PST</Timestamp><Msgbody>applied "same-security-traffic permit intra-interface"&lt;br /&gt;&lt;br /&gt;Still no luck</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" editable="yes" id=".2cd4f34a/5" level="1.1.1.2.1"><Author authinfo=" None">milfrankrodriguez</Author><Timestamp>Nov 17, 2009, 8:46am PST</Timestamp><Msgbody>I have updated my nat exempt list&lt;br /&gt;&lt;br /&gt;I&apos;m not sure what you mean by this :"you&apos;ll need to update your ACL 101 to make traffic sourced from 192.168.254.0, bound for the Remote LAN, use the VPN"&lt;br /&gt;&lt;br /&gt;How do I do that?</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f34a/6" level="1.1.1.2.1.1">      <Author authinfo="Network Engineer, N/A">branfarm1</Author><Timestamp>Nov 17, 2009, 8:57am PST</Timestamp><Msgbody>If you look at your L2L vpn config, you&apos;re using ACL 101 to specify what is called "interesting traffic."  This means that traffic that matches the ACL will either trigger the VPN to build (initially) or be sent to the VPN, instead of routing outside normally. &lt;br /&gt;&lt;br /&gt;What you are attempting to do is have traffic coming from your VPNclt machines be able to reach the remote LAN via your L2L VPN.   So you need to be able to have the PIX recognize that traffic from your VPNClt&apos;s destined for the RemoteLAN need to also be sent to the VPN.&lt;br /&gt;&lt;br /&gt;Your ACL 101 should be something like this:&lt;br /&gt;&lt;br /&gt;access-list 101 extended permit ip &lt;local_source_ip(s)&gt; &lt;mask&gt; &lt;destination_ip(s)&gt; &lt;mask&gt;&lt;br /&gt;&lt;br /&gt;So if your local address range is 192.168.111.0 and you are trying to reach 10.0.0.0/16 and 192.168.10.0/24 on the remote side, ACL 101 should be:&lt;br /&gt;&lt;br /&gt;access-list 101 extended permit ip 192.168.111.0 255.255.255.0 10.0.0.0 255.255.0.0&lt;br /&gt;access-list 101 extended permit ip 192.168.111.0 255.255.255.0 192.168.10.0 255.255.255.0&lt;br /&gt;access-list 101 extended permit ip 192.168.254.0 255.255.255.0 10.0.0.0 255.255.0.0&lt;br /&gt;access-list 101 extended permit ip 192.168.254.0 255.255.255.0 192.168.10.0 255.255.255.0&lt;br /&gt;&lt;br /&gt;The other side of the L2L vpn will need a mirror of your ACL.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" editable="yes" id=".2cd4f34a/7" level="1.1.1.2.1.1.1"><Author authinfo=" None">milfrankrodriguez</Author><Timestamp>Nov 17, 2009, 9:03am PST</Timestamp><Msgbody>Oh I see, that is not what I am trying to do. The VPN client users will not be using the L2L vpn. They will be accessing probably from home</Msgbody><Attachment/></Message></Reply></Reply></Reply></Reply></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4f352" messages="0" subscribed="no" title="PIX 6.3 Dynamic UDP port application support"><Message attachment="no" canreply="yes" id=".2cd4f352" level="">            <Author authinfo=" APM TERMINALS">ichacon00</Author><Timestamp>Nov 17, 2009, 8:17am PST</Timestamp><Msgbody>We have a PIX525 running 6.3(4). We are trying to get applications that run on dynamic UDP ports to work with out success. We have added all statements to our outside ACL but they dont seem to have any effect.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) Maersk PIX Config.txt&lt;br /&gt;</Msgbody> <Attachment><Document><FileName>Maersk PIX Config.txt</FileName><DocID>123691</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>5155</Size><ExpirationDate>11/17/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message></Conversation><Conversation id=".2cd4f342" messages="0" subscribed="no" title="Allowing inside network to access VOIP over the Internet using PAT and SIP"><Message attachment="no" canreply="yes" id=".2cd4f342" level=""><Author authinfo=" LS">etienne.mbuyi</Author><Timestamp>Nov 17, 2009, 7:53am PST</Timestamp><Msgbody>I am trying to have internal users behind an ASA use a VOIP application. The vendor mentioned to me that their application needs SIP to extend UDP ports 5060 to 5063. Below is what I did.&lt;br /&gt;&lt;br /&gt;object-group service Five9_SIP udp&lt;br /&gt; description Five9 UDP Ports&lt;br /&gt; port-object range sip 5063&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;access-list From_Internet_In extended permit tcp 72.5.65.0 255.255.255.0 interface outside eq sip&lt;br /&gt;access-list From_Internet_In extended permit udp 72.5.65.0 255.255.255.0 interface outside object-group Five9_SIP&lt;br /&gt;&lt;br /&gt;policy-map global_policy&lt;br /&gt; class inspection_default&lt;br /&gt;  inspect dns preset_dns_map&lt;br /&gt;  inspect ftp&lt;br /&gt;  inspect h323 h225&lt;br /&gt;  inspect h323 ras&lt;br /&gt;  inspect rsh&lt;br /&gt;  inspect rtsp&lt;br /&gt;  inspect esmtp&lt;br /&gt;  inspect sqlnet&lt;br /&gt;  inspect skinny&lt;br /&gt;  inspect sunrpc&lt;br /&gt;  inspect xdmcp&lt;br /&gt;  inspect netbios&lt;br /&gt;  inspect tftp&lt;br /&gt;  inspect pptp&lt;br /&gt;  inspect sip&lt;br /&gt;!&lt;br /&gt;service-policy global_policy global&lt;br /&gt;&lt;br /&gt;I know from various forums that a static (inside,outside) might be needed but I am doing PAT (i.e. global outside 1 interface).&lt;br /&gt;&lt;br /&gt;Regards,</Msgbody> <Attachment/></Message></Conversation><Conversation id=".2cd4f182" messages="1" subscribed="no" title="ASDM not showing hits on rules"><Message attachment="no" canreply="yes" id=".2cd4f182" level="">      <Author authinfo="Network Service Admin, Berklee College of Music">waynecromwell</Author><Timestamp>Nov 16, 2009, 11:26am PST</Timestamp><Msgbody>Hi all,&lt;br /&gt;&lt;br /&gt;I&apos;m having problems with ASDM logging hits on rules. There are no rules showing the number of hits via ASDM. I can see hits on rules via the cli. Has anyone come across a issue like this? I running FWSM version 4.0(3) and ASDM version 6.1(2) on 6506 with a sup II with IOS version 12.2(18)SXF11. Any help would be greatly appreciated.&lt;br /&gt;&lt;br /&gt;Thanks</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f182/0" level="1." new="yes">      <Author authinfo="CSE - Security, CISCO SYSTEMS">pkampana</Author><Timestamp>Nov 17, 2009, 7:17am PST</Timestamp><Msgbody>This looks like defect CSCta77829 or CSCsv67531.&lt;br /&gt;&lt;br /&gt;The former is fixed in FWSM 4.0.7 and later.&lt;br /&gt;The latter is fixed in ASDM 06.1(02.51)F.&lt;br /&gt;&lt;br /&gt;I would suggest trying ASDM 06.1(02.51)F. If you don&apos;t have it TAC can help you get it to give it a try.&lt;br /&gt;&lt;br /&gt;PK</Msgbody><Attachment/></Message></Reply></Replies></Conversation><Conversation id=".2cd4f31c" messages="3" subscribed="no" title="Accessing the Management interface on ASA"><Message attachment="no" canreply="yes" id=".2cd4f31c" level="">      <Author authinfo="CEO, KMNR NETWORK RESOURCES, INC">k-melton</Author><Timestamp>Nov 17, 2009, 6:50am PST</Timestamp><Msgbody>This morning i configured the Management0/0 interface on the customers ASA appliance.  &lt;br /&gt;I set up a specific VLAN on the customers switch fabric just for this access (VLAN 12).  I put the switch port connecting the cable to the ASA Mgmt interface in VLAN 12.  I configured an ip address in VLAN 12 on the M0/0 interface on the ASA.&lt;br /&gt;I can ping from the VLAN 12 interface on the switch to the Ip address on the Management interface on the ASA and vice versa.&lt;br /&gt;When I try to launch a putty session to the address on the m0/0 interface on the ASA, it times out.  &lt;br /&gt;Should I be able to connect thru SSH and then also ASDM to the Management IP address?</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f31c/0" level="1." new="yes">      <Author authinfo="Network Engineer, N/A">branfarm1</Author><Timestamp>Nov 17, 2009, 6:59am PST</Timestamp><Msgbody>Have you added ssh permissions for the management interface?&lt;br /&gt;&lt;br /&gt;You&apos;ll need to add something like:&lt;br /&gt;&lt;br /&gt;ssh &lt;host/subnet address&gt; &lt;mask&gt; management&lt;br /&gt;&lt;br /&gt;For ASDM access you&apos;ll need to do the same but with http:&lt;br /&gt;&lt;br /&gt;http x.x.x.x x.x.x.x management</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f31c/1" level="1.1" new="yes">      <Author authinfo="CEO, KMNR NETWORK RESOURCES, INC">k-melton</Author><Timestamp>Nov 17, 2009, 7:06am PST</Timestamp><Msgbody>Yes I added both of those statements but still cannot access the box from ssh or http...</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f31c/2" level="1.1.1" new="yes">      <Author authinfo="Network Engineer, N/A">branfarm1</Author><Timestamp>Nov 17, 2009, 7:11am PST</Timestamp><Msgbody>How about routing?  Are you attempting to access the ASA from a network that the ASA has a route to via another interface? One reason I don&apos;t like to use the management interface is because unless you have a dedicated management subnet, you will run into routing issues.</Msgbody><Attachment/></Message></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4f187" messages="3" subscribed="no" title="Determine the amount of Concurrent TCP users ?"><Message attachment="no" canreply="yes" id=".2cd4f187" level="">            <Author authinfo=" PEROT SYSTEMS CORPORATION">victorfabian</Author><Timestamp>Nov 16, 2009, 11:40am PST</Timestamp><Msgbody>&lt;br /&gt;From the firewall perspective how can i determine the amount of TCP users that are hitting the firewall.&lt;br /&gt;&lt;br /&gt;Is there a command or debug that would allow me to see that.</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f187/0" level="1." new="yes">      <Author authinfo="Senior Network Engineer, WPS EXTERNAL TECHNOLOGY SOLUTIONS">collin_clark</Author><Timestamp>Nov 16, 2009, 1:02pm PST</Timestamp><Msgbody>I think the closest you&apos;re going to get is with &lt;b&gt;show xlate count&lt;/b&gt;.</Msgbody><Attachment/></Message></Reply><Reply><Message attachment="no" canreply="yes" id=".2cd4f187/1" level="2." new="yes">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">plumbis</Author><Timestamp>Nov 16, 2009, 7:07pm PST</Timestamp><Msgbody>"show conn | i TCP" will give you all TCP conns through the firewall, but this won&apos;t give you a count.&lt;br /&gt;&lt;br /&gt;You could always slap this into excel to get a count.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f187/2" level="2.1" new="yes">      <Author authinfo="CSE - Security, CISCO SYSTEMS">pkampana</Author><Timestamp>Nov 17, 2009, 7:06am PST</Timestamp><Msgbody>sh local-host | i TCP flow count&lt;br /&gt;&lt;br /&gt;will show you the distinct TCP conns each host has. Adding them up will give you the aggregate.&lt;br /&gt;&lt;br /&gt;I hope it helps.&lt;br /&gt;&lt;br /&gt;PK</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4f25f" messages="1" subscribed="no" title="Websense &amp; Botnet for ASA5505?"><Message attachment="no" canreply="yes" id=".2cd4f25f" level="">            <Author authinfo=" ROUTEFX">pkrysinski</Author><Timestamp>Nov 16, 2009, 10:31pm PST</Timestamp><Msgbody>Hello All,&lt;br /&gt;&lt;br /&gt;I just purchased my ASA5505 and I am now debating if I should purchase a Websense and/or Botnet license.&lt;br /&gt;&lt;br /&gt;I was curious if anyone else has any experience with these items? And if so, could you provide any feedback (positive or negative)?&lt;br /&gt;&lt;br /&gt;I&apos;m not sure if I should go with just one or the other, or if I need both products? Do they really tax the 5505 itself? Is there a noticeable difference in speed accessing websites?&lt;br /&gt;&lt;br /&gt;Any help or suggestions you can provide is greatly appreciated, thank you!&lt;br /&gt;&lt;br /&gt;Lastly, what about the IPS add-on.  Is it worth the 1200 dollars to get this module? If I bought the module would I even need the Websense or Botnet licenses?&lt;br /&gt;&lt;br /&gt;-- Phil</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f25f/0" level="1." new="yes">      <Author authinfo="CSE - Security, CISCO SYSTEMS">pkampana</Author><Timestamp>Nov 17, 2009, 7:02am PST</Timestamp><Msgbody>Botnet is a feature that identifies botnet traffic that is going out and alerts you. Later on there will be functionality to block that traffic.&lt;br /&gt;&lt;br /&gt;The IPS sits inline and monitors the traffic. If it sees something that looks illegit it will alert or block it, depending on what you want. The IPS could or could not catch bothnet traffic depending on the pattern the botnet is using.&lt;br /&gt;&lt;br /&gt;Webeense is a feature that has the ASA redirect traffic the websense server and websense decides what to do with the traffic, allow the page or block it.&lt;br /&gt;&lt;br /&gt;So, usually the botnet and IPS are related, the IPS does more than the botnet but botnet captures compromised computers by checking on the destination that they are contacting whereas the IPS checks the traffic patterns.&lt;br /&gt;Websense is different and is used for url filtering.&lt;br /&gt;&lt;br /&gt;It all depends on your needs.&lt;br /&gt;As for performance, in general there is no noticeable performance degradation with the features for most networks.&lt;br /&gt;&lt;br /&gt;I hope it helps.&lt;br /&gt;&lt;br /&gt;PK&lt;br /&gt;</Msgbody><Attachment/></Message></Reply></Replies></Conversation><Conversation id=".2cd4f266" messages="1" subscribed="no" title="Shun Automatically Turned-on for Cisco Call Manager"><Message attachment="no" canreply="yes" id=".2cd4f266" level="">            <Author authinfo=" Voxiva">ray_stone</Author><Timestamp>Nov 16, 2009, 11:01pm PST</Timestamp><Msgbody>Hello Experts, we have cisco ASA 5505 running for our branch office and STS tunnel is configured for remote site. The cisco call manager is placed on remote site. Yesterday, we experienced that all conference calls were got it disconnected automatically and no reply messages were recieving while doing ping to call manager server. I logged into the firewall and saw that the shun automatically turned-on for CCM server and when I manually turned-off then cisco IP phone were got it up. Can anyone explain why it was turned-on for CCM Server.</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f266/0" level="1." new="yes">      <Author authinfo="CSE - Security, CISCO SYSTEMS">pkampana</Author><Timestamp>Nov 17, 2009, 6:47am PST</Timestamp><Msgbody>Ray,&lt;br /&gt;&lt;br /&gt;Check if the ASA has threat detection with shun option enabled.&lt;br /&gt;&lt;br /&gt;If not then probably you have an IPS that has the ASA configured and identified the CCM as an attached and went in and shunned it.&lt;br /&gt;&lt;br /&gt;Or a user logged into the ASA and shunned the CM (which I doubt).&lt;br /&gt;&lt;br /&gt;I hope it helps.&lt;br /&gt;&lt;br /&gt;PK&lt;br /&gt;</Msgbody><Attachment/></Message></Reply></Replies></Conversation><Conversation id=".2cd4f2c6" messages="2" subscribed="no" title="VPN through PIX keeps hanging"><Message attachment="no" canreply="yes" id=".2cd4f2c6" level=""><Author authinfo=" ">grimsby.moraine</Author><Timestamp>Nov 17, 2009, 4:11am PST</Timestamp><Msgbody>PIX525, v7.2(4).&lt;br /&gt;Another firewall sits inside the PIX525, then out to the internet. A L2L VPN through the PIX525 hangs every few days and is recovered by rebooting the PIX525. The end peers report "IKE Responder: Remote party timeout - Retransmitting IKE request" and "IKE negotiation aborted due to timeout", the PIX525 reports "%PIX-6-110003: Routing failed to locate next hop for UDP from inside:a.b.c.9/500 to inside:[remote_peer]/500".&lt;br /&gt;Note the "inside:[remote_peer" - this peer is actually outside and PIX525 even has static host route for it:&lt;br /&gt;route outside [remote_peer] 255.255.255.255 a.b.c.1 1&lt;br /&gt;When this happens PIX525 can actualy ping remote_peer.&lt;br /&gt;Sometimes this happens several times a day, sometimes it goes 5 days without issue.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) PIX525.txt - Config &amp; debug from PIX525&lt;br /&gt;</Msgbody> <Attachment><Document><FileName>PIX525.txt</FileName><DocID>123677</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>18380</Size><ExpirationDate>11/17/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f2c6/0" level="1." new="yes">      <Author authinfo="Network Engineer, N/A">branfarm1</Author><Timestamp>Nov 17, 2009, 5:20am PST</Timestamp><Msgbody>Hi there,&lt;br /&gt;&lt;br /&gt;Did you recently upgrade the OS on this PIX?  You might try disabling the isakmp keepalive mechanism.&lt;br /&gt;&lt;br /&gt;Under your tunnel-group w.x.y.x ipsec-attributes:&lt;br /&gt;&lt;br /&gt;isakmp keepalive disable&lt;br /&gt;&lt;br /&gt;Not sure if that will fix your issue, but it worked for me when I had a similar sounding issue after upgrading a PIX OS.&lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f2c6/1" level="1.1" new="yes"><Author authinfo=" ">grimsby.moraine</Author><Timestamp>Nov 17, 2009, 6:31am PST</Timestamp><Msgbody>It has been upgraded recently, from 7.2(1), after i saw bug ID CSCsf04123.&lt;br /&gt;I have added that to the DefaultRAGroup but i am a little dubious since this VPN goes through the PIX rather terminate on it.&lt;br /&gt;It may be a few days before I know if it&apos;s helped.&lt;br /&gt;Thanks for the reply.</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4f285" messages="1" subscribed="no" title="How to debug ipsec phase 2 on ASA 5520?"><Message attachment="no" canreply="yes" id=".2cd4f285" level=""><Author authinfo=" Institutt for energiteknikk">cisco@hrp.no</Author><Timestamp>Nov 17, 2009, 12:39am PST</Timestamp><Msgbody>I have a problem related to ipsec on a Cisco ASA 5520. Briefly told the problem is when the remote site is initiating traffic againt my site. Traffic initiated from my site is working perfect. When the remote site is initiating traffic sometimes it works and somestimes it is not working. When it is NOT working the log shows the output that I have included in the attached file. So my question is: How can I set up logging on the ASA so that I can see exactly WAHT is causing the problem? The attached file is the result from logging with debug level, but how to see the exact cause of the failure? How to see what proposals the remote gateway is suggesting and so on...?&lt;br /&gt;&lt;br /&gt;The really strange thing is that it sometimes work, sometimes not. Any ideas?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) asa.txt - output from logging on ASA&lt;br /&gt;</Msgbody> <Attachment><Document><FileName>asa.txt</FileName><DocID>123667</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>5653</Size><ExpirationDate>11/17/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f285/0" level="1." new="yes">      <Author authinfo="Senior Network Engineer, WPS EXTERNAL TECHNOLOGY SOLUTIONS">collin_clark</Author><Timestamp>Nov 17, 2009, 6:22am PST</Timestamp><Msgbody>You&apos;re failing at the negotiation of IPSec. You have a log entry of &lt;b&gt;All IPSec SA proposals found unacceptable&lt;/b&gt;. Make sure everything matches verbatim in ISAKMP and IPSec. Also here&apos;s an excellent troubleshooting guide.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/products/ps6120/products_tech_note09186a00807e0aca.shtml&apos;)"&gt;http://www.cisco.com/en/US/products/ps6120/products_tech_note09186a00807e0aca.shtml&lt;/A&gt;</Msgbody><Attachment/></Message></Reply></Replies></Conversation><Conversation id=".2cd4f258" messages="3" subscribed="no" title="Basic PIX firewalling"><Message attachment="no" canreply="yes" id=".2cd4f258" level="">            <Author authinfo=" Alphawest Pty Ltd">amit.bhagat</Author><Timestamp>Nov 16, 2009, 9:59pm PST</Timestamp><Msgbody>Hi Guys,&lt;br /&gt;&lt;br /&gt;A basic firewall issue-network topology is as follows-&lt;br /&gt;&lt;br /&gt;R1-PIX-R2&lt;br /&gt;&lt;br /&gt;R1 config-&lt;br /&gt;interface Loopback 0&lt;br /&gt; ip address 192.168.1.1 255.255.255.0&lt;br /&gt;!&lt;br /&gt;interface fastethernet 0/0&lt;br /&gt; ip address 10.1.1.1 255.255.255.0&lt;br /&gt;!&lt;br /&gt;ip route 0.0.0.0 0.0.0.0 10.1.1.2&lt;br /&gt;!&lt;br /&gt;&lt;br /&gt;R2 config-&lt;br /&gt;interface Loopback 0&lt;br /&gt; ip address 1.1.1.1 255.255.255.255&lt;br /&gt;!&lt;br /&gt;interface fastethernet 0/0&lt;br /&gt; ip address 10.2.2.2 255.255.255.0&lt;br /&gt;!&lt;br /&gt;ip route 192.168.1.0 255.255.255.0 10.2.2.1&lt;br /&gt;!&lt;br /&gt;&lt;br /&gt;PIX config in router mode-&lt;br /&gt;&lt;br /&gt;interface e0&lt;br /&gt; nameif inside&lt;br /&gt; ip address 10.1.1.2 255.255.255.0&lt;br /&gt; security-level 100&lt;br /&gt;!&lt;br /&gt;interface e1&lt;br /&gt; nameif outside&lt;br /&gt; ip address 10.2.2.1 255.255.255.0&lt;br /&gt; security-level 0&lt;br /&gt;!&lt;br /&gt;route outside 0.0.0.0 0.0.0.0 10.2.2.2&lt;br /&gt;route inside 192.168.1.0 255.255.255.0 10.1.1.1&lt;br /&gt;!&lt;br /&gt;access-list 101 extended permit ip any any&lt;br /&gt;access-list 101 extended permit icmp any any&lt;br /&gt;access-list 101 extended permit icmp any any echo&lt;br /&gt;access-list 101 extended permit icmp any any echo-reply&lt;br /&gt;access-list 101 extended permit icmp any any unreachable&lt;br /&gt;!&lt;br /&gt;access-group 101 in interface outside&lt;br /&gt;!&lt;br /&gt;&lt;br /&gt;Now, the issue is I CANNOT ping between R1 &amp; R2. However, I can ping from PIX to each device.&lt;br /&gt;&lt;br /&gt;Any help would be appreciated.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Amit.</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f258/0" level="1.">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 17, 2009, 1:22am PST</Timestamp><Msgbody>what version of the code are you running.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f258/1" level="1.1">            <Author authinfo=" Alphawest Pty Ltd">amit.bhagat</Author><Timestamp>Nov 17, 2009, 1:38am PST</Timestamp><Msgbody>PIX OS version 8.04</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f258/2" level="1.1.1">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 17, 2009, 1:42am PST</Timestamp><Msgbody>config looks good, anything showing up in the logs ?</Msgbody><Attachment/></Message></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4ef41" messages="5" subscribed="no" title="inside to DMZ not able to telnet  asa 8.1(2)"><Message attachment="no" canreply="yes" id=".2cd4ef41" level="">      <Author authinfo="Network engineer, LOCUZ ENTERPRISE SOLUTIONS LTD">chandru.j</Author><Timestamp>Nov 14, 2009, 4:40am PST</Timestamp><Msgbody>Hi all,&lt;br /&gt;&lt;br /&gt;  i am able to ping but not able to telnet from inside to DMZ and vise verse also. please find the attachment of configuration.&lt;br /&gt;   DMZ -10.244.4.0/24 network &lt;br /&gt;   inside -10.244.0.0/24 &lt;br /&gt;&lt;br /&gt;Thanks in advance&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) asa1.txt&lt;br /&gt;</Msgbody> <Attachment><Document><FileName>asa1.txt</FileName><DocID>123575</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>6736</Size><ExpirationDate>11/14/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4ef41/0" level="1." new="yes">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">kusankar</Author><Timestamp>Nov 14, 2009, 8:37am PST</Timestamp><Msgbody>The config appears correct.&lt;br /&gt;RTP - Routing, Translation and Permission&lt;br /&gt;appear to be correct.&lt;br /&gt;&lt;br /&gt;Are you sure the host in dmz 10.244.4.x listens on tcp 23?&lt;br /&gt;&lt;br /&gt;enable loggin buffer&lt;br /&gt;&lt;br /&gt;command&lt;br /&gt;conf t&lt;br /&gt;logging buffered debug&lt;br /&gt;&lt;br /&gt;then issue "sh logg | i 10.244.0.x" the host where you are trying to telnet from on the inside and see what the logs say when you try this telnet when it fails.&lt;br /&gt;&lt;br /&gt;Also, from the DMZ segment from a 10.244.4.x host are you able to telnet to the 10.244.4.b host that is listening on this port?</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef41/1" level="1.1" new="yes">      <Author authinfo="Network engineer, LOCUZ ENTERPRISE SOLUTIONS LTD">chandru.j</Author><Timestamp>Nov 15, 2009, 8:49pm PST</Timestamp><Msgbody>&lt;br /&gt;&lt;br /&gt;Hi,&lt;br /&gt;&lt;br /&gt; i am getting error like&lt;br /&gt; 6	Nov 15 2009	23:45:32	302014	10.244.4.100	23	10.244.0.21	1254	Teardown TCP connection 159748 for DMZ:10.244.4.100/23 to inside:10.244.0.21/1254 duration 0:00:30 bytes 0 SYN Timeout&lt;br /&gt;&lt;br /&gt; These is DC and DR setup from mplsoutside they can able to telnet DMZ but from inside i am able to do.&lt;br /&gt;&lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef41/2" level="1.1.1" new="yes">      <Author authinfo="Network engineer, LOCUZ ENTERPRISE SOLUTIONS LTD">chandru.j</Author><Timestamp>Nov 16, 2009, 12:06am PST</Timestamp><Msgbody>Hi,&lt;br /&gt;&lt;br /&gt; sorry i am not able to telnet</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef41/3" level="1.1.1.1" new="yes"><Author authinfo=" NETDECISIONS LTD">mark.hodge@agilisys.co.uk</Author><Timestamp>Nov 16, 2009, 4:36am PST</Timestamp><Msgbody>A SYN timeout indicates that the TCP handshake is not completing i.e. the source is sending a SYN, bit not receiving a SYN/ACK in reply.&lt;br /&gt;&lt;br /&gt;Check that the destination is running the appropriate service (telnet in this case) and that there is not a local software firewall on the destination machine.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef41/4" level="1.1.1.1.1" new="yes">      <Author authinfo="Network engineer, LOCUZ ENTERPRISE SOLUTIONS LTD">chandru.j</Author><Timestamp>Nov 16, 2009, 8:23pm PST</Timestamp><Msgbody>Hi,&lt;br /&gt;&lt;br /&gt;  I am TELNETTing  to DMZ switch only, same form DMZ switch i am not able to telnet even ping also to inside.There is no software in between.i attached the DMZ sw configuration.&lt;br /&gt;&lt;br /&gt;Thanks in advance&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) DMZsw.txt&lt;br /&gt;</Msgbody><Attachment><Document><FileName>DMZsw.txt</FileName><DocID>123674</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>6260</Size><ExpirationDate>11/16/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message></Reply></Reply></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4f228" messages="0" subscribed="no" title="ASA to ASA SITE-SITE IPSEC VPN /removed"><Message attachment="no" canreply="yes" id=".2cd4f228" level=""><Author authinfo=" HALLIBURTON KBR">duncan_watson</Author><Timestamp>Nov 16, 2009, 6:52pm PST</Timestamp><Msgbody>/removed pending further investigation&lt;br /&gt;</Msgbody> <Attachment><Document><FileName>asa1 crypto output.txt</FileName><DocID>123659</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>1086</Size><ExpirationDate>11/16/2014</ExpirationDate><IsExpired>no</IsExpired></Document><Document><FileName>asa2 crypto output.txt</FileName><DocID>123660</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>1086</Size><ExpirationDate>11/16/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message></Conversation><Conversation id=".2cd4ef69" messages="7" subscribed="no" title="Upgraded ASA 5520 from 8.0.3 to 8.0.4.48 and memory up quite a bit"><Message attachment="no" canreply="yes" id=".2cd4ef69" level="">            <Author authinfo=" NA">whiteford</Author><Timestamp>Nov 14, 2009, 9:59am PST</Timestamp><Msgbody>Hello,&lt;br /&gt;&lt;br /&gt;I have upgraded our 2 ASA firewalls (Active/Standby) from 8.0.3 to 8.0.4.48 and the memory has gone from 280mb to 450mb, the ASA&apos;s have 512mb.&lt;br /&gt;&lt;br /&gt;Is this normal/ok?&lt;br /&gt;&lt;br /&gt;I will call Cisco TAC on Monday, but seems quite a jump to me, I&apos;m wondering if it has turned something on I don&apos;t need, not sure how I can check.&lt;br /&gt;&lt;br /&gt;Thanks</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4ef69/0" level="1." new="yes">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">plumbis</Author><Timestamp>Nov 14, 2009, 10:24am PST</Timestamp><Msgbody>This is expected due to new features. I would suggest disabling threat-detection to free up some memory. As long as you aren&apos;t seeing a steady increase in memory I wouldn&apos;t sweat it.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef69/1" level="1.1" new="yes">            <Author authinfo=" NA">whiteford</Author><Timestamp>Nov 14, 2009, 10:57am PST</Timestamp><Msgbody>How do I disable threat-detection?</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef69/2" level="1.1.1" new="yes">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">plumbis</Author><Timestamp>Nov 15, 2009, 8:26am PST</Timestamp><Msgbody>to see what threat-detection features are enabled issue the command "show run threat-detection"&lt;br /&gt;&lt;br /&gt;to disable those features use the "no" keyword before them.&lt;br /&gt;&lt;br /&gt;For example&lt;br /&gt;===========================&lt;br /&gt;ciscoasa# sh run threat-detection&lt;br /&gt;threat-detection basic-threat&lt;br /&gt;threat-detection statistics access-list&lt;br /&gt;ciscoasa# conf t&lt;br /&gt;ciscoasa(config)# no threat-detection basic-threat&lt;br /&gt;ciscoasa(config)# no threat-detection statistics access-list&lt;br /&gt;===========================</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef69/3" level="1.1.1.1" new="yes">            <Author authinfo=" NA">whiteford</Author><Timestamp>Nov 15, 2009, 12:15pm PST</Timestamp><Msgbody>Thanks,&lt;br /&gt;&lt;br /&gt;I tried that but made no difference to the amount of memory being used, how can I show what is taking it all up?</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef69/4" level="1.1.1.1.1" new="yes">      <Author authinfo="Network Consulting Engineer, Cisco Systems, Inc." ccie="yes">jeye</Author><Timestamp>Nov 15, 2009, 3:22pm PST</Timestamp><Msgbody>You can try &lt;b&gt;show proc mem&lt;/b&gt;.&lt;br /&gt;&lt;br /&gt;HTH,&lt;br /&gt;jerry</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef69/5" level="1.1.1.1.1.1" new="yes">            <Author authinfo=" NA">whiteford</Author><Timestamp>Nov 16, 2009, 12:07am PST</Timestamp><Msgbody>This is what it shows:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) sh proc mem.txt&lt;br /&gt;</Msgbody><Attachment><Document><FileName>sh proc mem.txt</FileName><DocID>123650</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>8607</Size><ExpirationDate>11/16/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef69/6" level="1.1.1.1.1.1.1" new="yes">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">plumbis</Author><Timestamp>Nov 16, 2009, 7:13pm PST</Timestamp><Msgbody>The top two offenders are tmatch compile and dispatch unit. tmatch compile is related to ACLs and dispatch unit related to traffic.&lt;br /&gt;&lt;br /&gt;How big are your access lists? (show access-list | i elements)&lt;br /&gt;&lt;br /&gt;What is the platform? &lt;br /&gt;&lt;br /&gt;How much traffic is going through this box?&lt;br /&gt;&lt;br /&gt;Are there drops, errors, overruns or underruns on the interfaces?</Msgbody><Attachment/></Message></Reply></Reply></Reply></Reply></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4f21b" messages="2" subscribed="no" title="CSC-SSM"><Message attachment="no" canreply="yes" id=".2cd4f21b" level="">            <Author authinfo=" ESURIA MENTARI SYSTEMS SDN BHD">J_Vansen_S</Author><Timestamp>Nov 16, 2009, 5:42pm PST</Timestamp><Msgbody>Hi &lt;br /&gt;&lt;br /&gt;I would like to know if the CSC-SSM trendmicro module is able to scan for virus transferred thru IM(Instant messaging) and torrents?</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f21b/0" level="1.">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">plumbis</Author><Timestamp>Nov 16, 2009, 7:04pm PST</Timestamp><Msgbody>The CSC module is only able to scan HTTP, FTP, POP and SMTP traffic, so no, unless they are transferring via HTTP</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f21b/1" level="1.1">            <Author authinfo=" ESURIA MENTARI SYSTEMS SDN BHD">J_Vansen_S</Author><Timestamp>Nov 16, 2009, 7:12pm PST</Timestamp><Msgbody>would the AIP-SSM do the trick instead?</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4e1db" messages="4" subscribed="no" title="ASA 5520 Failover Configurations"><Message attachment="no" canreply="yes" id=".2cd4e1db" level="">      <Author authinfo="Senior Network Engineer, PEAKS VOICE AND DATA COMMUNICATIONS">bericaleb</Author><Timestamp>Nov 5, 2009, 10:39pm PST</Timestamp><Msgbody>Hi Experts&lt;br /&gt;here is the show ver output of my 2xASA5520. I will be configuring Site-to-Site VPNs on the ASA. My plan is to have one unit as a Primary unit and the other as a Secondary (standby) unit. Will my VPNs work with the current failover mode (Active/Active) if I proceed to configuring the VPNs?</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4e1db/0" level="1." new="yes">      <Author authinfo="Senior Network Engineer, PEAKS VOICE AND DATA COMMUNICATIONS">bericaleb</Author><Timestamp>Nov 5, 2009, 10:40pm PST</Timestamp><Msgbody>My apologies, here is the attachment.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) show ver output on both firewalls.doc&lt;br /&gt;</Msgbody><Attachment><Document><FileName>show ver output on both firewalls.doc</FileName><DocID>123264</DocID><ContentType>application/msword</ContentType><InternalType>word</InternalType><Size>31232</Size><ExpirationDate>11/05/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e1db/1" level="1.1" new="yes">            <Author authinfo=" PERIMETER TECHNOLOGY CENTER INC">cmcbride@perimetercenter.com</Author><Timestamp>Nov 6, 2009, 12:48pm PST</Timestamp><Msgbody>If you enable Stateful Failover, then VPN tunnels should failover in an active/standby configuration. &lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a00807dac5f.shtml&apos;)"&gt;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a00807dac5f.shtml&lt;/A&gt;&lt;br /&gt;&lt;br /&gt;That said, in the real world I&apos;ve seen problems with Firewall failover causing problems with VPN tunnels.  Almost always the problem is with the tunnels that are terminated by older Cisco equipment or non-cisco equipment.  I.e. Pix 501, 821 routers, etc.  But in VPN tunnels between ASA&apos;s it seems to failover the tunnel just fine.&lt;br /&gt;</Msgbody><Attachment/></Message></Reply></Reply><Reply><Message attachment="no" canreply="yes" id=".2cd4e1db/2" level="2." new="yes"><Author authinfo=" KFKI RENDSZERINTEGRACIOS ZARTKORUEN MUKODO RESZVENYTARSASAG" ccie="yes">orbanattila</Author><Timestamp>Nov 6, 2009, 10:00pm PST</Timestamp><Msgbody>When the ASA is configured for security contexts or Active/Active stateful failover, IPSec or SSL VPN cannot be enabled. Therefore, these features are unavailable. </Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e1db/3" level="2.1" new="yes">      <Author authinfo="Senior Network Engineer, PEAKS VOICE AND DATA COMMUNICATIONS">bericaleb</Author><Timestamp>Nov 16, 2009, 7:04pm PST</Timestamp><Msgbody>Hi&lt;br /&gt;thanks.&lt;br /&gt;So in my case, if the ASAs are on a single security context and failover is Active/Active, what do I do, if I want to also run IPSEC and SSL VPNs on these firewalls?</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4ef04" messages="2" subscribed="no" title="Use ASA to block P2P"><Message attachment="no" canreply="yes" id=".2cd4ef04" level=""><Author authinfo=" GUEST-TEK INTERACTIVE ENTERTAINMENT">zhaodifan</Author><Timestamp>Nov 13, 2009, 4:08pm PST</Timestamp><Msgbody>Hey guys,&lt;br /&gt;&lt;br /&gt;I am trying to use ASA to block P2P download. I did find this link and I tested it but it&apos;s not blocking my Bitcomet download...&lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808c38a6.shtml#built&apos;)"&gt;http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808c38a6.shtml#built&lt;/A&gt;&lt;br /&gt;&lt;br /&gt;The page said that "The ASA can block P2P type applications only if P2P traffic is being tunneled through HTTP". However when I am using my wireshark to monitor the traffic I only see UDP and TCP, not HTTP... I guess that&apos;s why it&apos;s not working.&lt;br /&gt;&lt;br /&gt;Then I checked more on the internet and seems I need to buy a AIP-SSM or CSC-SSM module to block the P2P. Is this true? If it&apos;s true, which one should I use? Or do you have another way to block P2P with just the ASA itself? Thanks a lot!</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4ef04/0" level="1." new="yes">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">plumbis</Author><Timestamp>Nov 15, 2009, 8:32am PST</Timestamp><Msgbody>This is correct, the regex classes in this example work by blocking HTTP requests. You could block someone from going to &lt;A HREF="javascript:newWin(&apos;http://www.thepiratebay.com&apos;)"&gt;www.thepiratebay.com&lt;/A&gt; for example but it wouldn&apos;t work if they already have a torrent running. &lt;br /&gt;&lt;br /&gt;I don&apos;t know about the AIP module but the CSC module can only filter on HTTP, FTP, SMTP and POP traffic so you wouldn&apos;t be able to filter bit torrent layer 7 traffic. </Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef04/1" level="1.1" new="yes"><Author authinfo=" GUEST-TEK INTERACTIVE ENTERTAINMENT">zhaodifan</Author><Timestamp>Nov 16, 2009, 3:02pm PST</Timestamp><Msgbody>Thank you Plumbis!</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4eeba" messages="4" subscribed="no" title="ASA &amp; AIP-SSM IPS"><Message attachment="no" canreply="yes" id=".2cd4eeba" level="">            <Author authinfo=" TNONC">ewong0088</Author><Timestamp>Nov 13, 2009, 11:52am PST</Timestamp><Msgbody>ANy help is appreciated.&lt;br /&gt;Getting ready to upgrade a ASA 5520 from 7.2 code to 8.x, all because of the IPS module needs to be upgraded from 6.1 to 7.x.&lt;br /&gt;Two question:&lt;br /&gt;(1) Should I expect a smooth upgrade (from 7.2 to 8.x) on the ASA box? Anyone runs into problem, gotcha kind of thing? ANy problem on the config file not being converted correctly?&lt;br /&gt;(2) For the IPS part, do you or do you not to use the upgrade command within the IPS module? From the IPS&apos;s doc. it says to use the upgrade command. From ASA&apos;s doc. it says to use: hw-module command. If I understand this correctly, by using hw-module command to upgrade the IPS from within the ASA, it would wipe my IPS config file.Don&apos;t want to do that if I can help it.&lt;br /&gt;Thank you.</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4eeba/0" level="1." new="yes">      <Author authinfo="CSE, CISCO SYSTEMS">mkharban</Author><Timestamp>Nov 16, 2009, 10:26am PST</Timestamp><Msgbody>Hi,&lt;br /&gt;&lt;br /&gt;There should not be any issues upgrading ASA from 7.2 to 8.x code. I would suggest going to the latest interim for 8.0(4) version as it has fixes for many caveats.&lt;br /&gt;&lt;br /&gt;Also in case an upgrade is performed on the module the configuration will not be wiped out. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Also, the upgrade command is used for performing signature upgrade for the module. You can not upgrade the version for the module with the upgrade command. &lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/products/hw/vpndevc/ps4077/products_configuration_example09186a0080816cb4.shtml#upgrade2&apos;)"&gt;http://www.cisco.com/en/US/products/hw/vpndevc/ps4077/products_configuration_example09186a0080816cb4.shtml#upgrade2&lt;/A&gt;&lt;br /&gt;&lt;br /&gt;Hope this helps!&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Manish&lt;br /&gt;Cisco TAC </Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4eeba/2" level="1.1" new="yes">            <Author authinfo=" TNONC">ewong0088</Author><Timestamp>Nov 16, 2009, 11:09am PST</Timestamp><Msgbody>mkharban, thank you for the info.&lt;br /&gt;SO what you are saying is that in order to go from 6.1.x to 7.x IPS, no matter what, I have to REIMAGE the IPS and therefore wipe my IPS config? Upgrade command within IPS won&apos;t work?&lt;br /&gt;Thanks. </Msgbody><Attachment/></Message></Reply></Reply><Reply><Message attachment="no" canreply="yes" id=".2cd4eeba/1" level="2." new="yes">      <Author authinfo="CSE - Security, CISCO SYSTEMS">pkampana</Author><Timestamp>Nov 16, 2009, 10:37am PST</Timestamp><Msgbody>(1) the upgrade should go smoothly and convert the config ok.&lt;br /&gt;&lt;br /&gt;(2) if you upgrade the IPS from the ASA ("hw module" command) than it will re-image the module and wipe it is config, that is correct. Make sure you keep a copy of it. And I suggest to upgrade from the module with the patch in order to avoid a full reimage.&lt;br /&gt;&lt;br /&gt;I hope it helps.&lt;br /&gt;&lt;br /&gt;PK</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4eeba/3" level="2.1" new="yes">            <Author authinfo=" TNONC">ewong0088</Author><Timestamp>Nov 16, 2009, 11:14am PST</Timestamp><Msgbody>pkampana, thank you for the info.&lt;br /&gt;So you are saying upgrade command does work within the IPS going from version 6.1.x to 7.x?&lt;br /&gt;These statement are contradictory. See above.&lt;br /&gt;Thank you for the help.&lt;br /&gt;&lt;br /&gt;</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4ece7" messages="4" subscribed="no" title="question concerning ICMP allowance"><Message attachment="no" canreply="yes" id=".2cd4ece7" level="">            <Author authinfo=" Computer Science Corporation">bruce.summers</Author><Timestamp>Nov 12, 2009, 2:50pm PST</Timestamp><Msgbody>I&apos;m running FWSM v3.2(2).  I have an allow icmp any any configured that I&apos;m allowing my intra-net folks to ping inbound.  I have a question and a scenario.&lt;br /&gt;question:&lt;br /&gt;&lt;br /&gt;  does icmp any any, really mean ANY type/code of icmp?&lt;br /&gt;&lt;br /&gt;scenario:&lt;br /&gt;i&apos;ve ran into an issue with my edge router.  &lt;br /&gt;&lt;br /&gt;The MTU size is set to 1400 on the edge.  If a server initiates an icmp packet with a "dont frag" flag, (doing it for path mtu test) the edge sends it back to the firewall advising the packets must be fragmented (due to the mtu 1400)  &lt;br /&gt;&lt;br /&gt;heres the catch, the firewall realizing the packet was destined to a remote location and not directly to the edge router, is dropping the packet with a "no matching session"...which of course makes sense, since the destination in the original packet wasnt the router.&lt;br /&gt;&lt;br /&gt;I&apos;m wondering how I allow the traffic back to the source (server) when the router grabs the packet and says, "you cant move forward due to MTU 1400" and shoots it back to the firewall?&lt;br /&gt;&lt;br /&gt;sincerely,&lt;br /&gt;&lt;br /&gt;bruce</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4ece7/0" level="1." new="yes">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 13, 2009, 12:08am PST</Timestamp><Msgbody>icmp any any - does cover any type/code of icmp.&lt;br /&gt;&lt;br /&gt;have you tried enabling icmp and icmp error inspection under global policy to see if it helps your scenario.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ece7/1" level="1.1" new="yes">            <Author authinfo=" Computer Science Corporation">bruce.summers</Author><Timestamp>Nov 15, 2009, 12:10pm PST</Timestamp><Msgbody>I havent tried that...is that just to monitor/inspect? or is that another layer of "allowance"?&lt;br /&gt;&lt;br /&gt;bruce</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ece7/2" level="1.1.1" new="yes">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 15, 2009, 10:33pm PST</Timestamp><Msgbody>That&apos;s for inpsection.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ece7/3" level="1.1.1.1" new="yes">      <Author authinfo="CSE - Security, CISCO SYSTEMS">pkampana</Author><Timestamp>Nov 16, 2009, 10:35am PST</Timestamp><Msgbody>"icmp any any time-exceeded" in an ACL if you don&apos;t have inspection or "inspect icmp error" will get you the solution.&lt;br /&gt;&lt;br /&gt;I hope it helps.&lt;br /&gt;&lt;br /&gt;PK</Msgbody><Attachment/></Message></Reply></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4f0b6" messages="1" subscribed="no" title="asa standby ports"><Message attachment="no" canreply="yes" id=".2cd4f0b6" level="">            <Author authinfo=" CARL TOWNSHEND">carl_townshend</Author><Timestamp>Nov 16, 2009, 4:48am PST</Timestamp><Msgbody>hi &lt;br /&gt;speaking to someone today, they said you shouldnt use the management port on the asa for the failover port, is this correct ? </Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f0b6/0" level="1." new="yes">      <Author authinfo="Senior Network Engineer, WPS EXTERNAL TECHNOLOGY SOLUTIONS">collin_clark</Author><Timestamp>Nov 16, 2009, 6:30am PST</Timestamp><Msgbody>That is correct. Check the 5th paragraph in this link.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a00807dac5f.shtml&apos;)"&gt;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a00807dac5f.shtml&lt;/A&gt;</Msgbody><Attachment/></Message></Reply></Replies></Conversation><Conversation id=".2cd4f0cb" messages="2" subscribed="no" title="FWSM Bridge Mode"><Message attachment="no" canreply="yes" id=".2cd4f0cb" level=""><Author authinfo=" UNION SWITCH AND SIGNAL US&amp;S IS">jfraasch</Author><Timestamp>Nov 16, 2009, 5:29am PST</Timestamp><Msgbody>Just found out a requirement I did not know about.&lt;br /&gt;&lt;br /&gt;I had failover set up for FWSM across two 6500 chassis. Things worked great....except failover between the two chassis took about 4 seconds.  I tested and each of five failovers I had a user drop about 3-5 pings before the standby FWSM took over.&lt;br /&gt;&lt;br /&gt;So, it looks like I need to take the default gateways off the FWSM and go back to HSRP.&lt;br /&gt;&lt;br /&gt;Has anyone had any success with FWSM in bridge mode?&lt;br /&gt;&lt;br /&gt;I am going to start scouring the site for links right now but thought I would ask here first.&lt;br /&gt;&lt;br /&gt;Thanks!&lt;br /&gt;&lt;br /&gt;James</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f0cb/0" level="1." new="yes">      <Author authinfo="Security System Engineer, NETDESIGN AS">jan.nielsen</Author><Timestamp>Nov 16, 2009, 5:50am PST</Timestamp><Msgbody>Sounds about right, even if you use the lowest hello timers (500mS) it will still spend 3-4 seconds before a failover accours, interface down detection can be optimized by using the autostate feature in the switch, which does not work in VSS setups.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f0cb/1" level="1.1" new="yes"><Author authinfo=" UNION SWITCH AND SIGNAL US&amp;S IS">jfraasch</Author><Timestamp>Nov 16, 2009, 5:55am PST</Timestamp><Msgbody>I will be running SSO fail over. I have redundant Supes in each of two chassis. I will not be running VSS mode because customer is not comfortable with it.</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4f069" messages="4" subscribed="no" title="Loopback bringing network down"><Message attachment="no" canreply="yes" id=".2cd4f069" level="">      <Author authinfo="Senior Systems Engineer, Capito">rexbiesty</Author><Timestamp>Nov 16, 2009, 1:16am PST</Timestamp><Msgbody>Hi, tricky one. We&apos;ve just taken over management of a site and my responsibility is for their Pix. This customer has 2 other sites that connect via MPLS (looked after by BT) who&apos;s traffic is filtered by the pix. However, one of these sites has an issue whereby if one of the users plugs a network cable into 2 ports it slowly brings down the network and stops access to our site. Given that this site is a school and the users are students, this happens quite often.&lt;br /&gt;&lt;br /&gt;Would I be right in thinking that any solution would need to be implemented on either the switch or router at the remote site? As I dont know must about routing protocols for switches or routers is there any advice I can give them given that I dont have any access to that site and is there anything I can implement on the firewall to help.&lt;br /&gt;&lt;br /&gt;Thanks, Rex.</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4f069/0" level="1." new="yes">            <Author authinfo=" SCRIBONA">hobbe</Author><Timestamp>Nov 16, 2009, 2:16am PST</Timestamp><Msgbody>My guess is that it is best solved with spanning tree in the switches.&lt;br /&gt;If they have "new" cisco switches then try to enable rapid spanning tree (if all the switches support it) and set the ports to portfast (it works nice with rapid)&lt;br /&gt;if the switches does not support rapid spanning tree, then use the "normal" spanning tree but do not set the ports to portfast (unless they are for a server)&lt;br /&gt;&lt;br /&gt;Since it is a school there are probably some bright kids there so there are some nice features that there is a possibility to implement fx floodguard and bpdu guard features.&lt;br /&gt;&lt;br /&gt;And no there is nothing you can do on your end. This is a local problem.&lt;br /&gt;&lt;br /&gt;HTH&lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f069/1" level="1.1" new="yes">      <Author authinfo="Senior Systems Engineer, Capito">rexbiesty</Author><Timestamp>Nov 16, 2009, 2:25am PST</Timestamp><Msgbody>Thanks, just the answer I was looking for. I&apos;ll pass this info on to those that look after the switches at the remote site to sort.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f069/2" level="1.1.1" new="yes">            <Author authinfo=" SCRIBONA">hobbe</Author><Timestamp>Nov 16, 2009, 2:34am PST</Timestamp><Msgbody>There is one drawback to using the old spanning tree and that is that the switches do not open the port until aprox 30 seconds, that can affect the dhcp process depending on how fast the computers are.&lt;br /&gt;&lt;br /&gt;"old" spanning-tree&lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/univercd/cc/td/doc/product/rtrmgmt/sw_ntman/cwsimain/cwsi2/cwsiug2/vlan2/stpapp.htm&apos;)"&gt;http://www.cisco.com/univercd/cc/td/doc/product/rtrmgmt/sw_ntman/cwsimain/cwsi2/cwsiug2/vlan2/stpapp.htm&lt;/A&gt;&lt;br /&gt;&lt;br /&gt;Rapid Spanning-tree&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/tech/tk389/tk621/technologies_white_paper09186a0080094cfa.shtml&apos;)"&gt;http://www.cisco.com/en/US/tech/tk389/tk621/technologies_white_paper09186a0080094cfa.shtml&lt;/A&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;HTH&lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4f069/3" level="1.1.1.1" new="yes">      <Author authinfo="Senior Systems Engineer, Capito">rexbiesty</Author><Timestamp>Nov 16, 2009, 2:38am PST</Timestamp><Msgbody>Thanks again.</Msgbody><Attachment/></Message></Reply></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4ef71" messages="8" subscribed="no" title="PIX 6.3.5 NAT Exemption Problem (Non VPN)"><Message attachment="no" canreply="yes" id=".2cd4ef71" level="">      <Author authinfo="Network Engineer Administrator, Nailco">pguibord</Author><Timestamp>Nov 14, 2009, 11:20am PST</Timestamp><Msgbody>Hi All!!!&lt;br /&gt;&lt;br /&gt;I am running a PIX 515 failover pair running 6.3.5 and get the error message that follows:&lt;br /&gt;&lt;br /&gt;"No translation group found for tcp src lyontwp-secure:172.16.7.69/52955 dst inside:4.2.2.2/9100"&lt;br /&gt;&lt;br /&gt;I am trying to use NAT Exemption to bypass NAT entirely for a specific source network (172.16.7.0/24) destined to any address and get the "no translation group" error. In this test host 172.16.7.69 is sitting behind the PIX interface named lyontwp-secure. &lt;br /&gt;&lt;br /&gt;These are the NAT exemption commads in the config:&lt;br /&gt;nat (lyontwp-secure) 0 access-list NoNat&lt;br /&gt;access-list NoNat permit ip 172.16.7.0 255.255.255.0 any&lt;br /&gt;&lt;br /&gt;The config is attached........&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) PIX-Config.txt&lt;br /&gt;</Msgbody> <Attachment><Document><FileName>PIX-Config.txt</FileName><DocID>123580</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>4598</Size><ExpirationDate>11/14/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4ef71/0" level="1." new="yes">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 14, 2009, 6:43pm PST</Timestamp><Msgbody>try with this&lt;br /&gt;&lt;br /&gt;static (lyontwp-secure,inside) 172.16.7.0 172.16.7.0 netmask 255.255.255.0 0 0</Msgbody><Attachment/></Message></Reply><Reply><Message attachment="no" canreply="yes" id=".2cd4ef71/1" level="2." new="yes">            <Author authinfo=" Cisco Systems, Inc." ccie="yes">hebaerte</Author><Timestamp>Nov 15, 2009, 2:41am PST</Timestamp><Msgbody>Note that the syslog says "inside:4.2.2.2" so it thinks 4.2.2.2 is on the *inside* and therefor (assuming that "inside" has a higher security-level than "lyontwp-secure")&lt;br /&gt;you would need a nat entry (or nat exemption) for 4.2.2.2.&lt;br /&gt;&lt;br /&gt;Is 4.2.2.2 really on the inside (I doubt it, unless you replaced the real address with 4.2.2.2, so just to be sure)?&lt;br /&gt;&lt;br /&gt;-If yes, add something like &lt;br /&gt;static(inside,lyontwp-secure) 4.2.2.2 4.2.2.2&lt;br /&gt;&lt;br /&gt;-If not, then check why it thinks it is. Usually this is caused by a routing error or a wrong static nat entry. If you need help with that, please post "show route" and "show run nat", "show run static"</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef71/2" level="2.1" new="yes">      <Author authinfo="Network Engineer Administrator, Nailco">pguibord</Author><Timestamp>Nov 15, 2009, 6:24am PST</Timestamp><Msgbody>&lt;br /&gt;Vikram,&lt;br /&gt;&lt;br /&gt;Thanks for the reply!&lt;br /&gt;&lt;br /&gt;Unfortunately I already tried that and still a no go.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hebaerte,&lt;br /&gt;&lt;br /&gt;Likewise, thank you for the reply!&lt;br /&gt;&lt;br /&gt;4.2.2.2 is on the inside so yes traffic is flowing from a lower security interface (internal network) &lt;br /&gt;to a higher (internal network). Eventually it will hit an ASA failover pair that is bordering the internet.&lt;br /&gt;&lt;br /&gt;I do not want this traffic natted as it passes through the internal network (gathering netflow stats) so that &lt;br /&gt;is why I am trying NAT exemtion from this source network to any out on the internet.&lt;br /&gt;&lt;br /&gt;I read that traffic can flow from lower to higher (see link and snippet below) as long as you have an access-list permitting it.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.enterastream.com/whitepapers/cisco/pix/pix-practical-guide.html&apos;)"&gt;http://www.enterastream.com/whitepapers/cisco/pix/pix-practical-guide.html&lt;/A&gt;&lt;br /&gt;&lt;br /&gt;"3. As the packet passed the inbound security check is passed to ASA that performs the inbound network &lt;br /&gt;translation (destination NAT)." &lt;br /&gt;&lt;br /&gt;So the question is should not NAT Exemption satisfy step 3 in this document?&lt;br /&gt;&lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef71/3" level="2.1.1" new="yes">            <Author authinfo=" Cisco Systems, Inc." ccie="yes">hebaerte</Author><Timestamp>Nov 15, 2009, 11:12am PST</Timestamp><Msgbody>If you don&apos;t want to translate the addresses on the lower security interface then you don&apos;t need to configure any NAT exemption or any kind of NAT for them.&lt;br /&gt;But again, you *do* need to do NAT (in this case identity NAT or NAT exemption) for the addresses on the inside (higher sec interface).&lt;br /&gt;&lt;br /&gt;So I repeat my suggestion of&lt;br /&gt;&lt;br /&gt;static (inside, ...) 4.2.2.2 4.2.2.2&lt;br /&gt;&lt;br /&gt;or alternatively&lt;br /&gt;&lt;br /&gt;access-list nonat permit host 4.2.2.2 any&lt;br /&gt;nat (inside) 0 access-list nonat&lt;br /&gt;&lt;br /&gt;(it may seem counter-intuitive that you need to define this as if it is for outbound traffic, but it&apos;s just like that, this will work both ways).&lt;br /&gt;&lt;br /&gt;Herbert</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef71/4" level="2.1.1.1" new="yes">      <Author authinfo="Network Engineer Administrator, Nailco">pguibord</Author><Timestamp>Nov 15, 2009, 1:00pm PST</Timestamp><Msgbody>&lt;br /&gt;Thank you Herbert but I cannot enter identity NAT or NAT exemption entries for every host that exists on the internet. 4.2.2.2 was only an example of a host (not even a host we own) siting out on the internet.&lt;br /&gt;&lt;br /&gt;Can I not do:&lt;br /&gt;&lt;br /&gt;access-list nonat permit ip any any&lt;br /&gt;nat (inside) 0 access-list nonat&lt;br /&gt;&lt;br /&gt;One more question, you are referencing the "inside" interface above and this traffic is being sourced (172.16.7.0/24)inbound on the lyontwp-secure interface passing through the PIX and then out the inside interface destined to 4.2.2.2. Shouldn&apos;t the commands be:&lt;br /&gt;&lt;br /&gt;access-list nonat permit ip 172.16.7.0 255.255.255.0 any&lt;br /&gt;nat (lyontwp-secure) 0 access-list nonat&lt;br /&gt;&lt;br /&gt;If you say no then I clearly do not understand NAT on the PIX and apologize.&lt;br /&gt;&lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef71/5" level="2.1.1.1.1" new="yes">      <Author authinfo="Network Engineer Administrator, Nailco">pguibord</Author><Timestamp>Nov 15, 2009, 1:29pm PST</Timestamp><Msgbody>&lt;br /&gt;(Herbert, In my last post I did not say I appreciate your assistance and patience in assisting with this issue, I truly do...) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thank you Herbert but I cannot enter identity NAT or NAT exemption entries for every host that exists on the internet. 4.2.2.2 was only an example of a host (not even a host we own) siting out on the internet. &lt;br /&gt;&lt;br /&gt;Can I not do: &lt;br /&gt;&lt;br /&gt;access-list nonat permit ip any any &lt;br /&gt;nat (inside) 0 access-list nonat &lt;br /&gt;&lt;br /&gt;One more question, you are referencing the "inside" interface above and this traffic is being sourced (172.16.7.0/24)inbound on the lyontwp-secure interface passing through the PIX and then out the inside interface destined to 4.2.2.2. Shouldn&apos;t the commands be: &lt;br /&gt;&lt;br /&gt;access-list nonat permit ip 172.16.7.0 255.255.255.0 any &lt;br /&gt;nat (lyontwp-secure) 0 access-list nonat &lt;br /&gt;&lt;br /&gt;If you say no then I clearly do not understand NAT on the PIX and apologize. &lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef71/7" level="2.1.1.1.1.1" new="yes">            <Author authinfo=" Cisco Systems, Inc." ccie="yes">hebaerte</Author><Timestamp>Nov 16, 2009, 1:58am PST</Timestamp><Msgbody>My motto is "Patience is a virtue" :)&lt;br /&gt;The answer is indeed No (I did say it may seem couner-intuitive), but ther is no need to apologize - I remember when I first worked with a Pix, I didn&apos;t get it either.&lt;br /&gt;&lt;br /&gt;The one thing to remember about NAT on Pix, and I&apos;ve said it before, and I&apos;m not sure how to phrase it otherwise: you always always always (*) - need an xlate (this is what we call an entry in the translation table) for the address on the _higher_ security interface.&lt;br /&gt;&lt;br /&gt;So for low-to-high, you need to "translate" (or exempt) the _destination_ address, not the source.&lt;br /&gt;&lt;br /&gt;In the more common scenario, this is probably more logical, i.e. you have a webserver on the inside, and a client on the outside connecting to it; in that case you need a static(inside,outside) for the webserver address.&lt;br /&gt;&lt;br /&gt;In your scenario, 4.2.2.2 is like the webserver on the inside, and your 172.x.x.x is the client on the "outside" (allow me to call it outside since it is easier to type - in general, whenever I say outside I mean lower security, and inside is higher security).&lt;br /&gt;&lt;br /&gt;So what can you do:&lt;br /&gt;&lt;br /&gt;a) you can indeed do "access-list nonat permit ip any any"&lt;br /&gt;&lt;br /&gt;b) you could swap the security levels (I would advise to also change the name "inside" to avoid confusion later) so that the Internet (and the network between the Pix and the ASA pair) is the outside. Then you can do nat exemption for 172.x.x.x like you originally tried.&lt;br /&gt;Note that in this case you may also need to put an ACL on the now-outside interface if you need to allow some traffic in the other direction.&lt;br /&gt;&lt;br /&gt;I hope I didn&apos;t make it more complicated instead of more clear... let me know.&lt;br /&gt;&lt;br /&gt;Herbert&lt;br /&gt;&lt;br /&gt;(*) well, as with all rules there is an exception - but not on Pix 6; in version 8 IIRC you can disable nat-control and then this requirement is no longer true.</Msgbody><Attachment/></Message></Reply></Reply></Reply></Reply><Reply><Message attachment="no" canreply="yes" id=".2cd4ef71/6" level="2.1.2" new="yes">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 15, 2009, 10:58pm PST</Timestamp><Msgbody>did you get the same error message " No translation group found " with the static too.&lt;br /&gt;&lt;br /&gt;I believe you must be doing some kind of nat for "lyontwp-secure" network.&lt;br /&gt;&lt;br /&gt;and also check the nat VS Static. section at this link&lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/docs/security/pix/pix63/command/reference/mr.html#wp1185638&apos;)"&gt;http://www.cisco.com/en/US/docs/security/pix/pix63/command/reference/mr.html#wp1185638&lt;/A&gt;</Msgbody><Attachment/></Message></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4e9ec" messages="9" subscribed="no" title="PIX and default route for VPN clients?"><Message attachment="no" canreply="yes" id=".2cd4e9ec" level="">            <Author authinfo=" HP Canada">fsmontenegro</Author><Timestamp>Nov 11, 2009, 7:27am PST</Timestamp><Msgbody>Hi everyone!&lt;br /&gt;&lt;br /&gt;Weird problem on a PIX515 with 7.2.4: adding the "route inside 0.0.0.0 0.0.0.0 &lt;gw&gt; tunneled" fails.&lt;br /&gt;&lt;br /&gt;See below:&lt;br /&gt;PIX-1# sh run | inc route&lt;br /&gt;route outside 0.0.0.0 0.0.0.0 x.x.x.x&lt;br /&gt;route inside InternalNets 255.0.0.0 10.255.x.1 1&lt;br /&gt;route inside 192.168.0.0 255.255.0.0 10.255.x.1 1&lt;br /&gt;PIX-1# conf t&lt;br /&gt;PIX-1(config)# route inside 0.0.0.0 0.0.0.0  10.255.x.1 tunneled &lt;br /&gt;ERROR: Cannot add route entry, conflict with existing routes&lt;br /&gt;&lt;br /&gt;Any ideas?&lt;br /&gt;&lt;br /&gt;Thanks!&lt;br /&gt;</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/0" level="1.">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 11, 2009, 7:52am PST</Timestamp><Msgbody>it&apos;s because you are using a inside interface in the tunneled route and outside interface for the default route.&lt;br /&gt;&lt;br /&gt;Check this link: &lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/docs/security/asa/asa71/configuration/guide/ip.html#wp1047900&apos;)"&gt;http://www.cisco.com/en/US/docs/security/asa/asa71/configuration/guide/ip.html#wp1047900&lt;/A&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/1" level="1.1">            <Author authinfo=" COMPASS NETWORK SERVICES">acomiskey</Author><Timestamp>Nov 11, 2009, 8:03am PST</Timestamp><Msgbody>What is he doing should work just fine. I use it on a few ASA&apos;s myself.</Msgbody><Attachment/></Message></Reply><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/2" level="1.2">            <Author authinfo=" HP Canada">fsmontenegro</Author><Timestamp>Nov 11, 2009, 8:05am PST</Timestamp><Msgbody>Hi Vikram,&lt;br /&gt;&lt;br /&gt;I&apos;m doing the same thing in an ASA:&lt;br /&gt;route outside 0.0.0.0 0.0.0.0 y.y.y.y 1&lt;br /&gt;route inside 10.0.0.0 255.0.0.0 10.5.x.x 1&lt;br /&gt;route inside 0.0.0.0 0.0.0.0 10.5.x.x tunneled&lt;br /&gt;&lt;br /&gt;Could it be a PIX/ASA difference? Something else? Same thing happens with 8.0.4 code as well.&lt;br /&gt;&lt;br /&gt;Thanks!&lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/3" level="1.2.1">            <Author authinfo=" COMPASS NETWORK SERVICES">acomiskey</Author><Timestamp>Nov 11, 2009, 8:08am PST</Timestamp><Msgbody>Does it complain if you try adding the inside tunneled route first, then the outside route?</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/5" level="1.2.1.1">            <Author authinfo=" HP Canada">fsmontenegro</Author><Timestamp>Nov 11, 2009, 8:12am PST</Timestamp><Msgbody>Hi,&lt;br /&gt;&lt;br /&gt;Haven&apos;t tried that as we were accessing the PIX remotely via outside...&lt;br /&gt;&lt;br /&gt;Will try to get someone to test it on-site for us.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</Msgbody><Attachment/></Message></Reply></Reply><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/4" level="1.2.2">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 11, 2009, 8:11am PST</Timestamp><Msgbody>are you saying it&apos;s working in ASA, if yes then we are only left with PIX/ASA difference.&lt;br /&gt;&lt;br /&gt;what version are you running by the way.</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/6" level="1.2.2.1">            <Author authinfo=" HP Canada">fsmontenegro</Author><Timestamp>Nov 11, 2009, 8:13am PST</Timestamp><Msgbody>Hi, I have a separate ASA5520 pair running 8.0.4 that is working fine with that configuration.&lt;br /&gt;&lt;br /&gt;This particular scenario is another VPN headend, a single PIX515 running 7.2.x (same thing happened with 8.0.x code).&lt;br /&gt;&lt;br /&gt;</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/7" level="1.2.2.1.1">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 11, 2009, 9:09am PST</Timestamp><Msgbody>tried to lookup if there are any bugs, but no luck.&lt;br /&gt;&lt;br /&gt;strange issue. &lt;br /&gt;&lt;br /&gt;Not sure if a reboot would help.</Msgbody><Attachment/></Message></Reply><Reply><Message attachment="no" canreply="yes" id=".2cd4e9ec/8" level="1.2.2.1.2">      <Author authinfo="Network Engineer, Microsoft R&amp;D ( India) Limited" ccie="yes">vikram_anumukonda</Author><Timestamp>Nov 15, 2009, 11:00pm PST</Timestamp><Msgbody>would like to know  if you managed to fix this issue.</Msgbody><Attachment/></Message></Reply></Reply></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4ef1b" messages="2" subscribed="no" title="Using Vonage with a Cisco ASA5505"><Message attachment="no" canreply="yes" id=".2cd4ef1b" level="">            <Author authinfo=" ROUTEFX">pkrysinski</Author><Timestamp>Nov 13, 2009, 9:45pm PST</Timestamp><Msgbody>Hello All,&lt;br /&gt;&lt;br /&gt;I recently purchased a Cisco ASA5505 (basic license) for use at home.  I also just purchased Vonage for home phone &amp; fax line usage.&lt;br /&gt;&lt;br /&gt;While reading the instructions, the Vonage hardware needs to be placed between the cable modem &amp; my internal LAN equipment.&lt;br /&gt;&lt;br /&gt;Instead of going with this model, I was curious if anyone knows or could provide details on how to place the Vonage hardware behind the ASA5505?&lt;br /&gt;&lt;br /&gt;I don&apos;t know if this could be possible by placing the Vonage device into a DMZ port or if there was another way this could be accomplished.&lt;br /&gt;&lt;br /&gt;If you can provide a configuration example that would be extremely helpful as well!&lt;br /&gt;&lt;br /&gt;Thank you in advance for your assistance!&lt;br /&gt;&lt;br /&gt;-- Phil</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4ef1b/0" level="1." new="yes">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">plumbis</Author><Timestamp>Nov 15, 2009, 8:29am PST</Timestamp><Msgbody>I&apos;m not sure how vontage works but it probably requires a static translation. You can add something like&lt;br /&gt;&lt;br /&gt;static (inside,outside) 1.1.1.2 192.168.1.2 netmask 255.255.255.255&lt;br /&gt;&lt;br /&gt;To translate the 1.1.1.1 outside address to the 192.168.1.2 inside address. </Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ef1b/1" level="1.1" new="yes">            <Author authinfo=" ROUTEFX">pkrysinski</Author><Timestamp>Nov 15, 2009, 6:40pm PST</Timestamp><Msgbody>Thank you very much for the suggestion.  I am going to try this as soon as I receive the Vonage hardware.&lt;br /&gt;&lt;br /&gt;Hopefully I can make this work without having to upgrade my license to allow DMZ functionality, since that is around 500 dollars I think.&lt;br /&gt;&lt;br /&gt;-- Phil</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4efe6" messages="2" subscribed="no" title="ASA 5505 Issue"><Message attachment="no" canreply="yes" id=".2cd4efe6" level=""><Author authinfo=" ">iketurner931</Author><Timestamp>Nov 15, 2009, 11:29am PST</Timestamp><Msgbody>Hello,&lt;br /&gt;&lt;br /&gt;      I have an ASA 5505 and setup a outside interface that has ip address dhcp for my internet connection. I am  running dhcp on this box for my inside network. I ping the ip addresses on the internet however I keep getting these errors when I try to browse the internet from the inside network.&lt;br /&gt;6	Nov 15 2009	14:15:38	110002	192.168.1.10	2069			Failed to locate egress interface for TCP from inside:192.168.1.10/2069 to 77.178.232.99/80&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6	Nov 15 2009	14:25:56	305012	192.168.1.10	58055	86.16.2.106	1038	Teardown dynamic UDP translation from inside:192.168.1.10/58055 to outside:88.16.2.106/1038 duration 0:00:30&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4efe6/0" level="1." new="yes"><Author authinfo=" NETWORK RAIL INFRASTRUCTURE LTD">jon.marshall</Author><Timestamp>Nov 15, 2009, 12:12pm PST</Timestamp><Msgbody>Charlie&lt;br /&gt;&lt;br /&gt;So the outside interface is up and getting an IP address ? &lt;br /&gt;&lt;br /&gt;If so can you check your routing table - you should have a default-route in their pointing to the next-hop ISP address.&lt;br /&gt;&lt;br /&gt;Jon</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4efe6/1" level="1.1" new="yes"><Author authinfo=" ">iketurner931</Author><Timestamp>Nov 15, 2009, 12:29pm PST</Timestamp><Msgbody>Thanks,&lt;br /&gt;&lt;br /&gt;       Got it everything is working great now. I can&apos;t belive I missed that. </Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation><Conversation id=".2cd4efb2" messages="0" subscribed="no" title="ASA - Scanning Burst Rate"><Message attachment="no" canreply="yes" id=".2cd4efb2" level=""><Author authinfo=" NA">tech_trac</Author><Timestamp>Nov 15, 2009, 4:00am PST</Timestamp><Msgbody>Hello, &lt;br /&gt;&lt;br /&gt;I have configured the burst rate and average rate to 20 and the average drops/sec and current drops/sec is very well below 20. But I still see the trigger count going up with the syslog&lt;br /&gt;message&lt;br /&gt;&lt;br /&gt;ASA-4-%733100: [Scanning] drop rate-1 exceeded. Current burst rate is 10 per second, max configured rate is 20; Current average rate is 7 per second, max configured rate is 20; &lt;br /&gt;Cumulative total count is 4667&lt;br /&gt;&lt;br /&gt;Why is the syslog message still getting generated. Do I need to restart the ASA for the change in configuration to take effect. &lt;br /&gt;&lt;br /&gt;Thanks.</Msgbody> <Attachment/></Message></Conversation><Conversation id=".2cd4e7c9" messages="4" subscribed="no" title="FWSM interfaces down"><Message attachment="no" canreply="yes" id=".2cd4e7c9" level=""><Author>thegrave2000</Author><Timestamp>Nov 10, 2009, 7:18am PST</Timestamp><Msgbody>Hello,&lt;br /&gt;&lt;br /&gt;I have a problem with FWSM running version 3.2(5) on Catalyst 6506 with 12.2SXH(33)a. All the interfaces of the FWSM are in down/down state without any explicable reason. The output is in the attachment - FWSM2 is the problematic one, FWSM1 is working fine. Uptime is 16 days on both modules.&lt;br /&gt;&lt;br /&gt;Both switches have this configuration:&lt;br /&gt;&lt;br /&gt;firewall multiple-vlan-interfaces&lt;br /&gt;firewall module 1 vlan-group 2,&lt;br /&gt;firewall vlan-group 2  77-80,749,750&lt;br /&gt;&lt;br /&gt;I have one more 6506 with FWSM both running the same versions - the module works just fine. The trunks between the two switches are up, the VLANs are in STP Forwarding State (I&apos;m running MST btw), everything looks just fine. The more interesting thing is that I&apos;m 99% sure this problem is reoccurring in time - it appears for a while then it disappears without any logical reason. I searched through the bug toolkit as the FWSM version is quite old but I couldn&apos;t find a bug matching this description. Anyone had a similar problem? I plan to do an upgrade tomorrow if I don&apos;t find another solution.&lt;br /&gt;&lt;br /&gt;Kind Regards,&lt;br /&gt;&lt;br /&gt;Stefan&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Attachment Keywords : &lt;/b&gt; &lt;br /&gt;1) FWSM Output.txt&lt;br /&gt;</Msgbody> <Attachment><Document><FileName>FWSM Output.txt</FileName><DocID>123435</DocID><ContentType>text/plain</ContentType><InternalType>text</InternalType><Size>7722</Size><ExpirationDate>11/10/2014</ExpirationDate><IsExpired>no</IsExpired></Document></Attachment></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4e7c9/0" level="1." new="yes"><Author authinfo=" SISTEMAS AVANZADOS DE TECNOLOGIA S.A.">fdelcura@satec.es</Author><Timestamp>Nov 13, 2009, 5:17am PST</Timestamp><Msgbody>Hello:&lt;br /&gt;&lt;br /&gt;It&apos;s strange you can access to FWSM cause the SXH IOS is not valid for FWSM support, you need the SXI IOS.&lt;br /&gt;&lt;br /&gt;Go to this link:&lt;br /&gt;&lt;br /&gt;&lt;A HREF="javascript:newWin(&apos;http://tools.cisco.com/ITDIT/CFN/Dispatch?act=rlsSelect&amp;task=search&amp;searchby=image&apos;)"&gt;http://tools.cisco.com/ITDIT/CFN/Dispatch?act=rlsSelect&amp;task=search&amp;searchby=image&lt;/A&gt;&lt;br /&gt;&lt;br /&gt;Select the image you have and you&apos;ll see that IOS doesn&apos;t support FWSM.&lt;br /&gt;&lt;br /&gt;Regards</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e7c9/1" level="1.1" new="yes"><Author>thegrave2000</Author><Timestamp>Nov 14, 2009, 4:13am PST</Timestamp><Msgbody>I think you are referring to this feature:&lt;br /&gt;&lt;br /&gt;VSS - Firewall Service Module (FWSM) support&lt;br /&gt;&lt;br /&gt;This is for 6500 VSS systems and that&apos;s not my case. I have a 6509 with Sup10G and FWSM and believe me - it works.&lt;br /&gt;&lt;br /&gt;Anyway, the problem disappeared after a restart. I realized that the FWSM was like that since that switch had a major crash 17 days ago as this was the uptime of the module and a single packet wasn&apos;t transmitted. If the problem appears again though I&apos;ll upgrade the software. Any observations on 4.x track? Is it stable, does it cause any issues with regular L2/L3 protocols?</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e7c9/2" level="1.1.1" new="yes">      <Author authinfo="Customer Support Engineer, CISCO SYSTEMS">plumbis</Author><Timestamp>Nov 14, 2009, 10:25am PST</Timestamp><Msgbody>The latest 4.0 code is pretty solid and also gives you more room for ACL entries due to code optimizations. </Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4e7c9/3" level="1.1.1.1" new="yes"><Author>thegrave2000</Author><Timestamp>Nov 14, 2009, 12:13pm PST</Timestamp><Msgbody>Thanks for the information! Do you have any idea if it&apos;s necessary to upgrade the license I have for 3.2 to go to 4.x?</Msgbody><Attachment/></Message></Reply></Reply></Reply></Reply></Replies></Conversation><Conversation id=".2cd4ef21" messages="1" subscribed="no" title="VPN redirect traffic"><Message attachment="no" canreply="yes" id=".2cd4ef21" level=""><Author authinfo=" FUTURE TECHNOLOGY">faizankhursheed</Author><Timestamp>Nov 13, 2009, 10:44pm PST</Timestamp><Msgbody>Dear All&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Issue regarding HUB and spoke topology .I have Two RTR Primary and seconday i&lt;br /&gt;configured remote access VPN on Head office Permiter RTR   to  remotely acces&lt;br /&gt;my head office  and branches .Actually im facing Issue is that the few&lt;br /&gt;branches terminate on Secondary RTR which i m not able to access them remotely&lt;br /&gt;coz i know the reson  i configrued Remote access vpn on permiter RTR&lt;br /&gt;.is ther any possbiility to redirect my traffic  so im able to remotely access&lt;br /&gt;my those  branches which comes from secondary router</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4ef21/0" level="1." new="yes">      <Author authinfo="Senior European Network Engineer, Monster Worldwide">andrew.prince@monster.com</Author><Timestamp>Nov 14, 2009, 9:30am PST</Timestamp><Msgbody>Check your routing, this can possible be fixed with routing.&lt;br /&gt;&lt;br /&gt;HTH&gt;</Msgbody><Attachment/></Message></Reply></Replies></Conversation><Conversation id=".2cd4ed22" messages="2" subscribed="no" title="Using WCCP in ASA 8.x"><Message attachment="no" canreply="yes" id=".2cd4ed22" level="">            <Author authinfo=" PT MITRA INTEGRASI INFORMATIKA">melatisariindah</Author><Timestamp>Nov 12, 2009, 8:52pm PST</Timestamp><Msgbody>Dear All,&lt;br /&gt;&lt;br /&gt;I want to ask about the WCCP feature in ASA 8.x&lt;br /&gt;&lt;br /&gt;I am using squid proxy as a transparent mode. What should I do to redirect the user web traffic to this proxy passthrough the ASA?&lt;br /&gt;&lt;br /&gt;The ASA is configured with the sub interface. And the users is in different subnet with the proxy.&lt;br /&gt;&lt;br /&gt;Can we do the redirect progress in this case ? &lt;br /&gt;&lt;br /&gt;“WCCP redirect is supported only on the ingress of an interface. The only topology that the security appliance supports is when client and cache engine are behind the same interface of the security appliance and the cache engine can directly communicate with the client without going through the security appliance.” (&lt;A HREF="javascript:newWin(&apos;http://www.cisco.com/en/US/docs/security/asa/asa72/configuration/guide/dhcp.html&apos;)"&gt;http://www.cisco.com/en/US/docs/security/asa/asa72/configuration/guide/dhcp.html&lt;/A&gt;)&lt;br /&gt;&lt;br /&gt;Thx for the response.</Msgbody> <Attachment/></Message><Replies><MessagesSelected>30</MessagesSelected><Reply><Message attachment="no" canreply="yes" id=".2cd4ed22/0" level="1." new="yes">      <Author authinfo="CSE - Security, CISCO SYSTEMS">pkampana</Author><Timestamp>Nov 13, 2009, 8:29am PST</Timestamp><Msgbody>If the proxy is behind a different subinterface compared to your users that need to be redirected it won&apos;t work.&lt;br /&gt;&lt;br /&gt;The squid needs to be behind the same interface/subinterface as the users to be redirected.&lt;br /&gt;&lt;br /&gt;I hope it helps.&lt;br /&gt;&lt;br /&gt;PK</Msgbody><Attachment/></Message><Reply><Message attachment="no" canreply="yes" id=".2cd4ed22/1" level="1.1" new="yes">            <Author authinfo=" PT MITRA INTEGRASI INFORMATIKA">melatisariindah</Author><Timestamp>Nov 13, 2009, 8:04pm PST</Timestamp><Msgbody>The squid should in the same interface/subinterface or in the same network ID?&lt;br /&gt;For example, at INSIDE interface in ASA, I have L3 switch which have server vlan and client vlan. It is possible to use wccp in this case? Because the traffic will out from the same interface (INSIDE) but with different network ID (squid in vlan server and client in vlan client). &lt;br /&gt;&lt;br /&gt;Thx.</Msgbody><Attachment/></Message></Reply></Reply></Replies></Conversation></Topic></Forum></Community></ActiveMessages>')
