<?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: CSS Loadbalancing between internal servers in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767864#M14730</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 a ton for your response - let me restate the issue. in my content rule, i have 4 services defined - when service 1 wants to talk to a backend server, it should loadbalance to service 2, 3, 4. similarly, when service 2 needs to contact a backend server, it should get loadbalanced between service 1, 3, 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now, i'm wondering if i do need client NAT at all? can't i create another 4 content rules, one for each service to use for backend communication. so for example, service 1 would talk to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;content service-1-backend &lt;/P&gt;&lt;P&gt;protocol tcp &lt;/P&gt;&lt;P&gt;port 80 &lt;/P&gt;&lt;P&gt;add service www-server2 &lt;/P&gt;&lt;P&gt;add service www-server3 &lt;/P&gt;&lt;P&gt;add service www-server4 &lt;/P&gt;&lt;P&gt;vip address x.x.x.x&lt;/P&gt;&lt;P&gt;active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this means that service1's src ip would remain its original ip so if it gets mapped to service2, for the backend communication, service2 can talk directly back to service1 - is there any reason this wouldn't work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would it help to use the group/acl statement in my scenario?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again for your continued support,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hoogen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jun 2007 05:04:00 GMT</pubDate>
    <dc:creator>hoogen_82</dc:creator>
    <dc:date>2007-06-08T05:04:00Z</dc:date>
    <item>
      <title>CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767859#M14725</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have my setup still in the design stage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am going to deploy a simple L4 loadbalancing. I have my clients sitting behind the CSS11501 trying to access my 4 weblogic servers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my config would look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!*************************** GLOBAL *************************** &lt;/P&gt;&lt;P&gt;  ip route 0.0.0.0 0.0.0.0 192.168.1.100 1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!************************* INTERFACE ************************* &lt;/P&gt;&lt;P&gt;interface e12 &lt;/P&gt;&lt;P&gt;  bridge vlan 10 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!************************** CIRCUIT ************************** &lt;/P&gt;&lt;P&gt;circuit VLAN1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ip address 192.168.1.50 255.255.255.0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;circuit VLAN10 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ip address 10.10.10.50 255.255.255.0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!************************** SERVICE ************************** &lt;/P&gt;&lt;P&gt;service www-server1 &lt;/P&gt;&lt;P&gt;  ip address 10.10.10.1 &lt;/P&gt;&lt;P&gt;  keepalive type http &lt;/P&gt;&lt;P&gt;  active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service www-server2 &lt;/P&gt;&lt;P&gt;  ip address 10.10.10.2 &lt;/P&gt;&lt;P&gt;  keepalive type http &lt;/P&gt;&lt;P&gt;  active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service www-server3 &lt;/P&gt;&lt;P&gt;  ip address 10.10.10.3 &lt;/P&gt;&lt;P&gt;  keepalive type http &lt;/P&gt;&lt;P&gt;  active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service www-server4&lt;/P&gt;&lt;P&gt;  ip address 10.10.10.4&lt;/P&gt;&lt;P&gt;  keepalive type http &lt;/P&gt;&lt;P&gt;  active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!*************************** OWNER *************************** &lt;/P&gt;&lt;P&gt;owner Sample &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  content web-servers &lt;/P&gt;&lt;P&gt;    protocol tcp &lt;/P&gt;&lt;P&gt;    port 80 &lt;/P&gt;&lt;P&gt;    add service www-server1 &lt;/P&gt;&lt;P&gt;    add service www-server2 &lt;/P&gt;&lt;P&gt;    add service www-server3&lt;/P&gt;&lt;P&gt;    add service www-server4&lt;/P&gt;&lt;P&gt;    vip address 192.168.1.1 &lt;/P&gt;&lt;P&gt;    active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the above should do it. Now to the other part, my client says sometimes one of the servers might itself act like a client and talk to the other server(might be Server1 talking to Server2,3,&amp;amp;4 or might to only Server 2&amp;amp;3 alone) on a specific port and he needs this traffic also to be loadbalanced is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Hoogen&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Any help appreciated&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jun 2007 13:38:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767859#M14725</guid>
      <dc:creator>hoogen_82</dc:creator>
      <dc:date>2007-06-07T13:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767860#M14726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hoogen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is possible.&lt;/P&gt;&lt;P&gt;This is the same type of config except you have to add client nat to guarantee that the response from the servers do not bypass the CSS.&lt;/P&gt;&lt;P&gt;Client is configured with the command 'group'.&lt;/P&gt;&lt;P&gt;You can use it in combination with an ACL to limit the client nat function to server-to-server traffic.&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, 07 Jun 2007 13:52:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767860#M14726</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2007-06-07T13:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767861#M14727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm... Would it be like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!*************************** GROUP ****************************          &lt;/P&gt;&lt;P&gt;         group Servers &lt;/P&gt;&lt;P&gt;             vip address &lt;IP address=""&gt;          &lt;/IP&gt;&lt;/P&gt;&lt;P&gt;           add destination www-server1          &lt;/P&gt;&lt;P&gt;           add destination www-server2&lt;/P&gt;&lt;P&gt;           add destination www-server3          &lt;/P&gt;&lt;P&gt;           add destination www-server4&lt;/P&gt;&lt;P&gt;	   active     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would my ip address be then, and could you give me sample help on with the ACLS. Another thing is that the loadbalnce would happen on probably another port, how would i achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Hoogen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 14:02:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767861#M14727</guid>
      <dc:creator>hoogen_82</dc:creator>
      <dc:date>2007-06-07T14:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767862#M14728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hoogen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think you want the solution you provided  as it would do not for all traffic - not just servers to servers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is an example at &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_tech_note09186a0080093dfc.shtml" target="_blank"&gt;http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_tech_note09186a0080093dfc.shtml&lt;/A&gt;&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, 07 Jun 2007 16:20:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767862#M14728</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2007-06-07T16:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767863#M14729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Traffics using this src group can not be load balanced ever (can I say that Gilles?), rather use Content Rules for this purpose, as you might well aware of.  In otherwords, if you are for load balancing there is no way but to make use of content rules. Lets think this way of implmentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually sometime ago, we had a very similar situation, what we asked the client was to use the domain name rather than an ip address, while talking to the other similar servers that are part of load balancing cloud. Configure weblogic servers to use external dns servers, if not the hosts files. The weblogic servers would then hit content rule VIPs and gets load balanced as usual.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want this (internally originated) traffic to hit a different content rule, use port numbers tagged in the domain name urls. eg. &lt;A class="jive-link-custom" href="http://cisco.com:8090" target="_blank"&gt;http://cisco.com:8090&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Gilles was saying destination services under groups, wouldn't do load balancing, rather just stop doing its default act of dest-NAT-ing (meaning stop spoofing client ip) and instead start doing source NAT-ing. This way you are actually making sure of not bypassing the CSS, however no load balancing though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 23:45:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767863#M14729</guid>
      <dc:creator>skumar1969</dc:creator>
      <dc:date>2007-06-07T23:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767864#M14730</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 a ton for your response - let me restate the issue. in my content rule, i have 4 services defined - when service 1 wants to talk to a backend server, it should loadbalance to service 2, 3, 4. similarly, when service 2 needs to contact a backend server, it should get loadbalanced between service 1, 3, 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now, i'm wondering if i do need client NAT at all? can't i create another 4 content rules, one for each service to use for backend communication. so for example, service 1 would talk to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;content service-1-backend &lt;/P&gt;&lt;P&gt;protocol tcp &lt;/P&gt;&lt;P&gt;port 80 &lt;/P&gt;&lt;P&gt;add service www-server2 &lt;/P&gt;&lt;P&gt;add service www-server3 &lt;/P&gt;&lt;P&gt;add service www-server4 &lt;/P&gt;&lt;P&gt;vip address x.x.x.x&lt;/P&gt;&lt;P&gt;active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this means that service1's src ip would remain its original ip so if it gets mapped to service2, for the backend communication, service2 can talk directly back to service1 - is there any reason this wouldn't work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would it help to use the group/acl statement in my scenario?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again for your continued support,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hoogen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 05:04:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767864#M14730</guid>
      <dc:creator>hoogen_82</dc:creator>
      <dc:date>2007-06-08T05:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767865#M14731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, this config will not work in your case because of the CSS's ip spoofing behaviour. What it does mean is that CSS would use the real client ip (browser PC's, but in your case just another server) when it talks to any of the backend servers. Servers are not aware that CSS is actually spoofing. So they respond back directly, but no response, eventually CSS is bypassed. So, we need to stop this behaviour. So, use 'add destination service'. Yes, you can use 4 CRs for this purpose. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 05:23:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767865#M14731</guid>
      <dc:creator>skumar1969</dc:creator>
      <dc:date>2007-06-08T05:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767866#M14732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hoogen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's easy to see why it would not work.&lt;/P&gt;&lt;P&gt;Let's says server1 sends a SYN to the VIP, the CSS forwards the SYN to server2 with source ip of server1.&lt;/P&gt;&lt;P&gt;So, server2 responds with SYN/ACK to server1 directly.&lt;/P&gt;&lt;P&gt;server1 did not send a SYN to server2 but to the VIP, so it does reject the connection and sends a RESET directly to server2 which drops the connection.&lt;/P&gt;&lt;P&gt;You need client nat if you want to go from vlan_A to vlan_A.  It does not matter if the devices in the vlan participate or not to the loadbalancing.&lt;/P&gt;&lt;P&gt;So, in your case, you need the client nat with an acl and don't bother doing separate content rules for each server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jun 2007 09:12:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767866#M14732</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2007-06-09T09:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767867#M14733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any link where we can find the full CSS load balancing examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please if you could help me out this would be great help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mukesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Jun 2007 15:45:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767867#M14733</guid>
      <dc:creator>maskmukesh</dc:creator>
      <dc:date>2007-06-10T15:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Loadbalancing between internal servers</title>
      <link>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767868#M14734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Giles&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per your update i have created a config as per my understanding. would be possible for you to verify this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100# configure&lt;/P&gt;&lt;P&gt;CS100(config)# acl 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 50 permit any any destination any&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# apply circuit-(VLAN1)&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# ex&lt;/P&gt;&lt;P&gt;CS100(config)# acl enable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100(config)# group clients-group1&lt;/P&gt;&lt;P&gt;CS100(config-group[clients-group])# vip address 10.10.10.11&lt;/P&gt;&lt;P&gt;CS100(config-group[clients-group])# act&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100(config)# group clients-group2&lt;/P&gt;&lt;P&gt;CS100(config-group[clients-group])# vip address 10.10.10.12&lt;/P&gt;&lt;P&gt;CS100(config-group[clients-group])# act&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100(config)# group clients-group3&lt;/P&gt;&lt;P&gt;CS100(config-group[clients-group])# vip address 10.10.10.13&lt;/P&gt;&lt;P&gt;CS100(config-group[clients-group])# act&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100(config)# group clients-group4&lt;/P&gt;&lt;P&gt;CS100(config-group[clients-group])# vip address 10.10.10.14&lt;/P&gt;&lt;P&gt;CS100(config-group[clients-group])# act&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100(config)# acl disable&lt;/P&gt;&lt;P&gt;CS100(config)# acl 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 10 permit any 10.10.10.0 255.255.255.0&lt;/P&gt;&lt;P&gt;                   destination 10.10.10.0 255.255.255.0&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 15 permit any 10.10.10.2 255.255.255.255 &lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group1&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 16 permit any 10.10.10.3 255.255.255.255&lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group1&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 17 permit any 10.10.10.4 255.255.255.255 &lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group1&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 25 permit any 10.10.10.1 255.255.255.255 &lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group2&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 26 permit any 10.10.10.3 255.255.255.255&lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group2&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 27 permit any 10.10.10.4 255.255.255.255 &lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group2&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 35 permit any 10.10.10.2 255.255.255.255 &lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group3&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 36 permit any 10.10.10.1 255.255.255.255&lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group3&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 37 permit any 10.10.10.4 255.255.255.255 &lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group3&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 45 permit any 10.10.10.2 255.255.255.255 &lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group4&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 46 permit any 10.10.10.3 255.255.255.255&lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group4&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# clause 47 permit any 10.10.10.1 255.255.255.255 &lt;/P&gt;&lt;P&gt;                   destination any sourcegroup clients-group4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# remove circuit-(VLAN1)&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# apply circuit-(VLAN1)&lt;/P&gt;&lt;P&gt;CS100(config-acl[1])# ex&lt;/P&gt;&lt;P&gt;CS100(config)# acl enable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hoogen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:46:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-loadbalancing-between-internal-servers/m-p/767868#M14734</guid>
      <dc:creator>hoogen_82</dc:creator>
      <dc:date>2007-06-11T10:46:30Z</dc:date>
    </item>
  </channel>
</rss>

