<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ACE in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/ace/m-p/862546#M16879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dinesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to perform client nat when servers try to access the vip (this is true for every loadbalancers).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case, create an acl to match the traffic from the real servers to the vip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie:&lt;/P&gt;&lt;P&gt;class-map src-rserver &lt;/P&gt;&lt;P&gt;  match access-list ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create a natpool on the server vlan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface vlan XXX&lt;/P&gt;&lt;P&gt;  natpool 1 x.x.x.x .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create a policy-map to link the nat-pool and the class-map&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map multimatch nat-rserver&lt;/P&gt;&lt;P&gt;  class src-rserver&lt;/P&gt;&lt;P&gt;   nat dynamic 1 vlan XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, configure the policy-map on the server interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface vlan XXX&lt;/P&gt;&lt;P&gt;  service-policy input nat-rserver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jan 2008 13:25:42 GMT</pubDate>
    <dc:creator>Gilles Dufour</dc:creator>
    <dc:date>2008-01-17T13:25:42Z</dc:date>
    <item>
      <title>ACE</title>
      <link>https://community.cisco.com/t5/application-networking/ace/m-p/862545#M16878</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I have configured VIP in ACE and users are able to access the VIP .&lt;/P&gt;&lt;P&gt;How can I access VIP from the real server?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;__ Rgds&lt;/P&gt;&lt;P&gt;Dinesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2008 13:14:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace/m-p/862545#M16878</guid>
      <dc:creator>dinesh1977</dc:creator>
      <dc:date>2008-01-17T13:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: ACE</title>
      <link>https://community.cisco.com/t5/application-networking/ace/m-p/862546#M16879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dinesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to perform client nat when servers try to access the vip (this is true for every loadbalancers).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case, create an acl to match the traffic from the real servers to the vip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie:&lt;/P&gt;&lt;P&gt;class-map src-rserver &lt;/P&gt;&lt;P&gt;  match access-list ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create a natpool on the server vlan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface vlan XXX&lt;/P&gt;&lt;P&gt;  natpool 1 x.x.x.x .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create a policy-map to link the nat-pool and the class-map&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map multimatch nat-rserver&lt;/P&gt;&lt;P&gt;  class src-rserver&lt;/P&gt;&lt;P&gt;   nat dynamic 1 vlan XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, configure the policy-map on the server interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface vlan XXX&lt;/P&gt;&lt;P&gt;  service-policy input nat-rserver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 13:25:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace/m-p/862546#M16879</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2008-01-17T13:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: ACE</title>
      <link>https://community.cisco.com/t5/application-networking/ace/m-p/862547#M16880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gilles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the below config &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface vlan 15&lt;/P&gt;&lt;P&gt;  description server-side Interface&lt;/P&gt;&lt;P&gt;  bridge-group 10&lt;/P&gt;&lt;P&gt;  access-group input ORACLE-ACCESS&lt;/P&gt;&lt;P&gt;  access-group output ORACLE-ACCESS&lt;/P&gt;&lt;P&gt;  no shutdown&lt;/P&gt;&lt;P&gt;********&lt;/P&gt;&lt;P&gt;class-map match-all ORACLE&lt;/P&gt;&lt;P&gt;  2 match virtual-address 172.16.150.250 tcp eq www &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should i configure natpool on vlan 15 ?&lt;/P&gt;&lt;P&gt;What will be the IP address ? ( natpool 1 X.X.X.X) . could you please clarify this also ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-- Dinesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 18:19:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace/m-p/862547#M16880</guid>
      <dc:creator>dinesh1977</dc:creator>
      <dc:date>2008-01-17T18:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: ACE</title>
      <link>https://community.cisco.com/t5/application-networking/ace/m-p/862548#M16881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gilles ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have configured bridge group in ACE .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both client side and server side vlan are in same segments . In that case how to achieve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Dinesh &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 09:42:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace/m-p/862548#M16881</guid>
      <dc:creator>dinesh1977</dc:creator>
      <dc:date>2008-01-18T09:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: ACE</title>
      <link>https://community.cisco.com/t5/application-networking/ace/m-p/862549#M16882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dinesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, the natpool should be configured on VLAN 15, and the IP address should be a valid and available one on the same subnet as BVI 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 10:34:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace/m-p/862549#M16882</guid>
      <dc:creator>IAN PERRY</dc:creator>
      <dc:date>2009-02-23T10:34:06Z</dc:date>
    </item>
  </channel>
</rss>

