<?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 HOWTO: explicitly send particular host traffic to one rserver in in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679337#M33799</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the delayed response,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are trying to work out if the code above will only match on 'http' traffic? we need to match on both http and https traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment I have coded this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--------------------------------------------------------&lt;/P&gt;&lt;P&gt;class-map type http loadbalance MY_TEST_FARM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 match source-address 10.10.10.0 255.255.255.248&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so by default if I have left out the 'match-all' or 'match-any' what is the default action?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jul 2011 17:47:13 GMT</pubDate>
    <dc:creator>robwu2006</dc:creator>
    <dc:date>2011-07-19T17:47:13Z</dc:date>
    <item>
      <title>HOWTO: explicitly send particular host traffic to one rserver in a serverfarm</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679335#M33797</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment we have a situation where we have one serverfarm, with rserverA and rserverB, behind one VIP address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We would like to do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Send a select list of Client IP's to rserver A.&lt;/P&gt;&lt;P&gt;2) The rest of the traffic to rserver B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any code segments would be help as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also we are doing stickiness based on source IP address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need anymore info?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2011 15:54:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679335#M33797</guid>
      <dc:creator>robwu2006</dc:creator>
      <dc:date>2011-07-01T15:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: explicitly send particular host traffic to one rserve</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679336#M33798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this using either ACLs which can become difficult to t-shoot or the easy/scalable way with L7 policy load balance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to do create new serverfarms where you will include only serverfarm A and B separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;serverfarm host A&lt;/P&gt;&lt;P&gt;&amp;nbsp; rserver A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; inservice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;serverfarm host B&lt;/P&gt;&lt;P&gt;&amp;nbsp; rserver B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; inservice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Here you would match the different hosts/subnets &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type http loadbalance match-any Host-A&lt;BR /&gt;&amp;nbsp; 2 match source-address 10.10.10.0 255.255.255.248&lt;/P&gt;&lt;P&gt;&amp;nbsp; 3 match source-address 67.21.6.1 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type http loadbalance match-any Host-B&lt;BR /&gt;&amp;nbsp;&amp;nbsp; 2 match source-address 192.168.10.0 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp; Then you do your first match policy. This is a logic "OR"&amp;nbsp; supposing there are clients that will not fall wihtin the subnets/hosts described above, class-default will take care of that traffic and will end up being load balancing to the "Mixed" serverfam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type loadbalance first-match LB&lt;/P&gt;&lt;P&gt;&amp;nbsp; class Host-A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; serverfarm A&lt;/P&gt;&lt;P&gt;&amp;nbsp; class Host-B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; serverfarm B&lt;/P&gt;&lt;P&gt;&amp;nbsp; class class-default&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sticky-serverfarm Mixed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="min-height: 8pt;"&gt;HTH&lt;/P&gt;&lt;P style="min-height: 8pt;"&gt;__ __ &lt;/P&gt;&lt;P style="min-height: 8pt;"&gt;Pablo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jul 2011 16:22:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679336#M33798</guid>
      <dc:creator>pablo.nxh</dc:creator>
      <dc:date>2011-07-01T16:22:18Z</dc:date>
    </item>
    <item>
      <title>HOWTO: explicitly send particular host traffic to one rserver in</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679337#M33799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the delayed response,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are trying to work out if the code above will only match on 'http' traffic? we need to match on both http and https traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment I have coded this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--------------------------------------------------------&lt;/P&gt;&lt;P&gt;class-map type http loadbalance MY_TEST_FARM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 match source-address 10.10.10.0 255.255.255.248&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so by default if I have left out the 'match-all' or 'match-any' what is the default action?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jul 2011 17:47:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679337#M33799</guid>
      <dc:creator>robwu2006</dc:creator>
      <dc:date>2011-07-19T17:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: explicitly send particular host traffic to one rserve</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679338#M33800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The class-maps type http will work to match both; HTTP and HTTPS because in this case the ACE won't need to check beyond layer 3 to make a decision.You can also do it with a generic class-map but it is pretty much the same thing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type generic match-any LB&lt;/P&gt;&lt;P&gt; 10 match source-address 192.168.11.2 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The default action; if not specified is a "match-all"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;__ __ &lt;/P&gt;&lt;P&gt;Pablo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jul 2011 18:46:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679338#M33800</guid>
      <dc:creator>pablo.nxh</dc:creator>
      <dc:date>2011-07-19T18:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: explicitly send particular host traffic to one rserve</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679339#M33801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pablo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we got this working, with the http policy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just wondering though when we have the following command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"policy-map type loadbalance first-match LB"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't see issue a generic class map after this, just the http class maps, is the above line default to only reference certain class-maps?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2011 10:43:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679339#M33801</guid>
      <dc:creator>robwu2006</dc:creator>
      <dc:date>2011-07-20T10:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: explicitly send particular host traffic to one rserve</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679340#M33802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad to hear you got working!!! &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem with generic class-maps is that can only be attached under "type" generic first-match policies, &lt;/P&gt;&lt;P&gt;i.e "policy-map type loadbalance generic LB"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Personally I've never seen generic policies being used; as the documentation states "use this keyword to provide support for protocols that the ACE does not explicitly support".You rarely see a "not supported" protocol because most of them work at layer 4 which represents not problem to the ACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Is the above line default to only reference certain class-maps?"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well... kinda, it allows you to match layer 3-4 class-maps and HTTP (L5), HTTP class-maps are design for L5 matching but they can also inspect from L3 to L7. HTTPS is readable up to layer 4 to the ACE or any device (if SSL termination is not configured); so that's why you can do a "source-match" for SSL traffic under a HTTP class-map/policy-match; in this case L5 inspection is not required at all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;__ __&lt;/P&gt;&lt;P&gt;Pablo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2011 18:34:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679340#M33802</guid>
      <dc:creator>pablo.nxh</dc:creator>
      <dc:date>2011-07-20T18:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: explicitly send particular host traffic to one rserve</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679341#M33803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, so if we need to load balance some FTP traffic as well on the same VIP, with deterministic source IPs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would we modify our config to suit this new requirement or would it already do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also&amp;nbsp; if our HTTP traffic comes over a customised port say tcp port 8080, do&amp;nbsp; we need to do anything on the ACE, or it is smart enough to know about&amp;nbsp; HTTP on a different port?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help so far, its been very helpful!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2011 11:28:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679341#M33803</guid>
      <dc:creator>robwu2006</dc:creator>
      <dc:date>2011-07-21T11:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: explicitly send particular host traffic to one rserve</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679342#M33804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yup, if you wanted to balance any other L3/L4 protocol you're in good shape now, for example for FTP you can use the same class-map that includes the "source-match" then configure a new first-match policy and the new VIP or same VIP with "eq ftp". (FTP configuration is a little bit tricky though).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Also&amp;nbsp; if our HTTP traffic comes over a customised port say tcp port&amp;nbsp; 8080, do&amp;nbsp; we need to do anything on the ACE, or it is smart enough to&amp;nbsp; know about&amp;nbsp; HTTP on a different port?"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same thing here, as long as you have a VIP that matches incoming traffic with dst port 8080 you shouldn't have any problem because it is still a L4 matching from the ACE perspective. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example if you want to match standard and secondary HTTP ports under the same class-map assuming both ports are balanced to the same real servers then you would do it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map match-any WEB&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2 match virtual-address 10.10.10.10 tcp eq www&lt;/P&gt;&lt;P&gt;&amp;nbsp; 3 match virtual-address 10.10.10.10 tcp eq 8080&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that you can apply the same filtering to both ports under the first-match policy; saving config lines and resources at the same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;__ __ &lt;/P&gt;&lt;P&gt;Pablo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2011 18:53:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679342#M33804</guid>
      <dc:creator>pablo.nxh</dc:creator>
      <dc:date>2011-07-21T18:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: explicitly send particular host traffic to one rserve</title>
      <link>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679343#M33805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, I'm trying this implementation again, but we are getting this error, it seems that our policy-map only supports the 'class class-default' keywords for some reason???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DCSACE01/PDMZ-VRF(config)# policy-map type loadbalance first-match WEBPROXY02_CLUSTER_v3&lt;/P&gt;&lt;P&gt;&amp;nbsp; class WEBPROXY_TESTFARM_B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sticky-serverfarm webproxy02_TESTFARM-sticky&lt;/P&gt;&lt;P&gt;DCSACE01/PDMZ-VRF(config-pmap-lb)#&amp;nbsp;&amp;nbsp; class WEBPROXY_TESTFARM_B&lt;/P&gt;&lt;P&gt;&amp;nbsp; class class-default&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sticky-serverfarm webproxy02-stickyError: Specified class-map is not consistent with the policy-map type&lt;/P&gt;&lt;P&gt;DCSACE01/PDMZ-VRF(config-pmap-lb)#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sticky-serverfarm webproxy02_TESTFARM-sticky&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;/P&gt;&lt;P&gt;% invalid command detected at '^' marker.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DCSACE01/PDMZ-VRF(config-pmap-lb)# &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DCSACE01/PDMZ-VRF(config)# policy-map type loadbalance first-match WEBPROXY02_CLUSTER_v3&lt;/P&gt;&lt;P&gt;DCSACE01/PDMZ-VRF(config-pmap-lb)# class ?&lt;/P&gt;&lt;P&gt;&amp;nbsp; class-default&amp;nbsp; Specify actions for default class-map&lt;/P&gt;&lt;P&gt;DCSACE01/PDMZ-VRF(config-pmap-lb)# class &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The version we are running is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Version A2(1.2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Yes its a bit old)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2011 13:43:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/howto-explicitly-send-particular-host-traffic-to-one-rserver-in/m-p/1679343#M33805</guid>
      <dc:creator>robwu2006</dc:creator>
      <dc:date>2011-09-28T13:43:59Z</dc:date>
    </item>
  </channel>
</rss>

