<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic [ACE] Real servers and VIP in the same VLAN in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358163#M40974</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Miquel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oh i read the question again:) Since the client is external there is no need for server to send traffic to FW but ACE(if ace is the default gateway) or according to the route which in your case was not right. I read the question wrongly that client is also in same subnet. My bad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kanwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jan 2014 17:16:51 GMT</pubDate>
    <dc:creator>Kanwaljeet Singh</dc:creator>
    <dc:date>2014-01-17T17:16:51Z</dc:date>
    <item>
      <title>[ACE] Real servers and VIP in the same VLAN</title>
      <link>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358158#M40969</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´m facing an issue because the real servers and the VIP address are in the same VLAN, when a request comes from an external client to the VIP (crossing an ASA firewall) , the ACK gets back using the IP of one of the real servers instead of the VIP so this traffic is blocked by our WAN firewall probably due the inspection rules.&lt;/P&gt;&lt;P&gt;My question is if there is some way make the VIP the address who ACK´s that requests? Creating a new VLAN would be complicated because there are other services already running on those real servers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;Miquel&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2014 22:48:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358158#M40969</guid>
      <dc:creator>msantiveri</dc:creator>
      <dc:date>2014-01-16T22:48:30Z</dc:date>
    </item>
    <item>
      <title>[ACE] Real servers and VIP in the same VLAN</title>
      <link>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358159#M40970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Miquel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do source nat on ACE so that return traffic gets sent to ACE and not FW. Pasting an example for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;==========================================================================
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;One-Armed Load Balancing with VIP, Servers, &amp;amp; NAT Pool on the Same Subnet
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;==========================================================================


login timeout 0

access-list ANYONE line 10 extended permit ip any any

rserver host SERVER_01
&amp;nbsp; ip address 192.168.1.11
&amp;nbsp; inservice
rserver host SERVER_02
&amp;nbsp; ip address 192.168.1.12
&amp;nbsp; inservice
rserver host SERVER_03
&amp;nbsp; ip address 192.168.1.13
&amp;nbsp; inservice

serverfarm host REAL_SERVERS
&amp;nbsp; rserver SERVER_01
&amp;nbsp;&amp;nbsp;&amp;nbsp; inservice
&amp;nbsp; rserver SERVER_02
&amp;nbsp;&amp;nbsp;&amp;nbsp; inservice
&amp;nbsp; rserver SERVER_03
&amp;nbsp;&amp;nbsp;&amp;nbsp; inservice

class-map match-all VIP-30
&amp;nbsp; 2 match virtual-address 192.168.1.30 tcp eq www

class-map type management match-any REMOTE_ACCESS
&amp;nbsp; description remote-access-traffic-match
&amp;nbsp; 2 match protocol telnet any
&amp;nbsp; 3 match protocol ssh any
&amp;nbsp; 4 match protocol icmp any

policy-map type management first-match REMOTE_MGT
&amp;nbsp; class REMOTE_ACCESS
&amp;nbsp;&amp;nbsp;&amp;nbsp; permit

policy-map type loadbalance first-match SLB_LOGIC
&amp;nbsp; class class-default
&amp;nbsp;&amp;nbsp;&amp;nbsp; serverfarm REAL_SERVERS

policy-map multi-match CLIENT_VIPS
&amp;nbsp; class VIP-30
&amp;nbsp;&amp;nbsp;&amp;nbsp; loadbalance vip inservice
&amp;nbsp;&amp;nbsp;&amp;nbsp; loadbalance policy SLB_LOGIC
&amp;nbsp;&amp;nbsp;&amp;nbsp; loadbalance vip icmp-reply active
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;nat dynamic 1 vlan 451&lt;/STRONG&gt;

interface vlan 451
&amp;nbsp; description Servers vlan
&amp;nbsp; ip address 192.168.1.2 255.255.255.0
&amp;nbsp; access-group input ANYONE
&amp;nbsp; service-policy input CLIENT_VIPS
&amp;nbsp; &lt;STRONG&gt;nat-pool 1 192.168.1.10 192.168.1.10 netmask 255.255.255.0 pat&lt;/STRONG&gt;
&amp;nbsp; no shutdown

ip route 0.0.0.0 0.0.0.0 192.168.1.1
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have any question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kanwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 23:10:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358159#M40970</guid>
      <dc:creator>Kanwaljeet Singh</dc:creator>
      <dc:date>2014-01-16T23:10:45Z</dc:date>
    </item>
    <item>
      <title>[ACE] Real servers and VIP in the same VLAN</title>
      <link>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358160#M40971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Kanwal for your kind feedback.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a NAT policy already running on the same interface, this could impact to the existing services?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map multi-match NAT-POLICY&lt;/P&gt;&lt;P&gt;&amp;nbsp; class NAT-CLASS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nat static X.X.X.X netmask 255.255.255.0 vlan 102&lt;/P&gt;&lt;P&gt;&amp;nbsp; class SLPGMS-SSL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; loadbalance vip inservice&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; loadbalance policy SLPGMS-SSL-l7slb&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ssl-proxy server SLPGMS-Proxy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface vlan 102&lt;/P&gt;&lt;P&gt;&amp;nbsp; description SLHP ACE VLAN&lt;/P&gt;&lt;P&gt;&amp;nbsp; ip address X:X:X:X 255.255.255.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; alias X:X:X:X 255.255.255.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; peer ip address X:X:X:X 255.255.255.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; no normalization&lt;/P&gt;&lt;P&gt;&amp;nbsp; access-group input ALL&lt;/P&gt;&lt;P&gt;&amp;nbsp; service-policy input int102&lt;/P&gt;&lt;P&gt;&amp;nbsp; service-policy input remote_mgmt_allow_policy&lt;/P&gt;&lt;P&gt;&amp;nbsp; service-policy input NAT-POLICY&lt;/P&gt;&lt;P&gt;&amp;nbsp; no shutdown&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you one more time.&lt;/P&gt;&lt;P&gt;Miquel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 08:58:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358160#M40971</guid>
      <dc:creator>msantiveri</dc:creator>
      <dc:date>2014-01-17T08:58:57Z</dc:date>
    </item>
    <item>
      <title>[ACE] Real servers and VIP in the same VLAN</title>
      <link>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358161#M40972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Miquel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, it shouldn't. The users here will match a different class-map, different policy and a different nat-pool. It should not have impact on existing NAT services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kanwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 15:47:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358161#M40972</guid>
      <dc:creator>Kanwaljeet Singh</dc:creator>
      <dc:date>2014-01-17T15:47:17Z</dc:date>
    </item>
    <item>
      <title>[ACE] Real servers and VIP in the same VLAN</title>
      <link>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358162#M40973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Finally, we had a bad static route on the servers, removing that route the traffic back is sent to the ACE so we solved the problem, anyway I marked your answer as valid because coud be useful for others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;Miquel Santiveri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 17:13:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358162#M40973</guid>
      <dc:creator>msantiveri</dc:creator>
      <dc:date>2014-01-17T17:13:30Z</dc:date>
    </item>
    <item>
      <title>[ACE] Real servers and VIP in the same VLAN</title>
      <link>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358163#M40974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Miquel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oh i read the question again:) Since the client is external there is no need for server to send traffic to FW but ACE(if ace is the default gateway) or according to the route which in your case was not right. I read the question wrongly that client is also in same subnet. My bad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kanwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 17:16:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-real-servers-and-vip-in-the-same-vlan/m-p/2358163#M40974</guid>
      <dc:creator>Kanwaljeet Singh</dc:creator>
      <dc:date>2014-01-17T17:16:51Z</dc:date>
    </item>
  </channel>
</rss>

