<?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: IP Spoofing with CSS or CSM module and Cache in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167435#M2067</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did it with a CSS.&lt;/P&gt;&lt;P&gt;So it is feasible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;client --- router1 --- CSS---- Router2 -- Internet&lt;/P&gt;&lt;P&gt;                        |&lt;/P&gt;&lt;P&gt;                      cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since you want to do ip spoofind on the cache, you need  the clients to be 1 hop away from the CSS (so router1) and you need traffic from cache to internet to use another router (so router2).&lt;/P&gt;&lt;P&gt;This is required so the CSS knows what to do with the response from the server to the client ip address.&lt;/P&gt;&lt;P&gt;(one time sent to cache and one time sent to client).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the CSS you need the following static routes&lt;/P&gt;&lt;P&gt;ip route &lt;CLIENT-RANGE&gt; &lt;CLIENT_MASK&gt; &lt;ROUTER1&gt;&lt;/ROUTER1&gt;&lt;/CLIENT_MASK&gt;&lt;/CLIENT-RANGE&gt;&lt;/P&gt;&lt;P&gt;ip route &lt;CLIENT-RANGE&gt; &lt;CLIENT_MASK&gt; &lt;CACHE&gt;&lt;/CACHE&gt;&lt;/CLIENT_MASK&gt;&lt;/CLIENT-RANGE&gt;&lt;/P&gt;&lt;P&gt;ip route 0.0.0.0 0.0.0.0 &lt;ROUTER2&gt;&lt;/ROUTER2&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create the service :&lt;/P&gt;&lt;P&gt;service cache&lt;/P&gt;&lt;P&gt;  ip address x.x.x.x&lt;/P&gt;&lt;P&gt;  type transparent&lt;/P&gt;&lt;P&gt;  active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the rule&lt;/P&gt;&lt;P&gt;owner mycompany&lt;/P&gt;&lt;P&gt;  content cache&lt;/P&gt;&lt;P&gt;    proto tcp&lt;/P&gt;&lt;P&gt;    port 80&lt;/P&gt;&lt;P&gt;    add service cache&lt;/P&gt;&lt;P&gt;    active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, you need an acl to avoid redirecting traffic from the cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;acl 1&lt;/P&gt;&lt;P&gt;  clause 20 bypass any any destination any&lt;/P&gt;&lt;P&gt;  apply circuit(VLAN&lt;CACHE&gt;)&lt;/CACHE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;acl 2&lt;/P&gt;&lt;P&gt;  clause 80 permit any any destination any&lt;/P&gt;&lt;P&gt;  apply circuit(VLAN&lt;OTHERS&gt;)&lt;/OTHERS&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With a CSM, it should be possible as well with less restrictions&lt;/P&gt;&lt;P&gt;          +-------------+&lt;/P&gt;&lt;P&gt;client ---|-MSFC----csm-|--vlan&lt;Y&gt;- internet&lt;/Y&gt;&lt;/P&gt;&lt;P&gt;          +-----------|-+&lt;/P&gt;&lt;P&gt;                      |&amp;lt;-----Vlan &lt;Z&gt;&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;                     cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mod csm &lt;SLOT&gt;&lt;/SLOT&gt;&lt;/P&gt;&lt;P&gt;  vlan &lt;X&gt; client&lt;/X&gt;&lt;/P&gt;&lt;P&gt;  vlan &lt;Y&gt; server&lt;/Y&gt;&lt;/P&gt;&lt;P&gt;    gateway x.x.x.x&lt;/P&gt;&lt;P&gt;  vlan &lt;Z&gt; server&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;  serverfarm cache&lt;/P&gt;&lt;P&gt;    no nat client&lt;/P&gt;&lt;P&gt;    no nat server&lt;/P&gt;&lt;P&gt;    real&lt;/P&gt;&lt;P&gt;      x.x.x.x&lt;/P&gt;&lt;P&gt;      inservice&lt;/P&gt;&lt;P&gt;  ! &lt;/P&gt;&lt;P&gt;  serverfarm route&lt;/P&gt;&lt;P&gt;    no nat client&lt;/P&gt;&lt;P&gt;    no nat server&lt;/P&gt;&lt;P&gt;    predictor forward&lt;/P&gt;&lt;P&gt;  !&lt;/P&gt;&lt;P&gt;  vserver tocache&lt;/P&gt;&lt;P&gt;    virtual 0.0.0.0 /0 tcp 80&lt;/P&gt;&lt;P&gt;    vlan x&lt;/P&gt;&lt;P&gt;    vlan y&lt;/P&gt;&lt;P&gt;    serverfarm cache&lt;/P&gt;&lt;P&gt;    inservice&lt;/P&gt;&lt;P&gt;  vserver fromcache&lt;/P&gt;&lt;P&gt;   virtual 0.0.0.0 /0 any&lt;/P&gt;&lt;P&gt;   serverfarm route&lt;/P&gt;&lt;P&gt;   vlan &lt;Z&gt;&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;   inservice&lt;/P&gt;&lt;P&gt;  !&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;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 Jul 2003 08:42:26 GMT</pubDate>
    <dc:creator>Gilles Dufour</dc:creator>
    <dc:date>2003-07-20T08:42:26Z</dc:date>
    <item>
      <title>IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167434#M2066</link>
      <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need configure IP Spoofing, and me scheme the configuration is:&lt;/P&gt;&lt;P&gt;Transparent mode with CSS (or Switch Catalyst 6500 w/CSM module) and one Cache 7320.&lt;/P&gt;&lt;P&gt;There is some way for do  its, how is?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Guillermo &lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2003 16:40:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167434#M2066</guid>
      <dc:creator>pbadorrey</dc:creator>
      <dc:date>2003-07-18T16:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167435#M2067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did it with a CSS.&lt;/P&gt;&lt;P&gt;So it is feasible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;client --- router1 --- CSS---- Router2 -- Internet&lt;/P&gt;&lt;P&gt;                        |&lt;/P&gt;&lt;P&gt;                      cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since you want to do ip spoofind on the cache, you need  the clients to be 1 hop away from the CSS (so router1) and you need traffic from cache to internet to use another router (so router2).&lt;/P&gt;&lt;P&gt;This is required so the CSS knows what to do with the response from the server to the client ip address.&lt;/P&gt;&lt;P&gt;(one time sent to cache and one time sent to client).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the CSS you need the following static routes&lt;/P&gt;&lt;P&gt;ip route &lt;CLIENT-RANGE&gt; &lt;CLIENT_MASK&gt; &lt;ROUTER1&gt;&lt;/ROUTER1&gt;&lt;/CLIENT_MASK&gt;&lt;/CLIENT-RANGE&gt;&lt;/P&gt;&lt;P&gt;ip route &lt;CLIENT-RANGE&gt; &lt;CLIENT_MASK&gt; &lt;CACHE&gt;&lt;/CACHE&gt;&lt;/CLIENT_MASK&gt;&lt;/CLIENT-RANGE&gt;&lt;/P&gt;&lt;P&gt;ip route 0.0.0.0 0.0.0.0 &lt;ROUTER2&gt;&lt;/ROUTER2&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create the service :&lt;/P&gt;&lt;P&gt;service cache&lt;/P&gt;&lt;P&gt;  ip address x.x.x.x&lt;/P&gt;&lt;P&gt;  type transparent&lt;/P&gt;&lt;P&gt;  active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the rule&lt;/P&gt;&lt;P&gt;owner mycompany&lt;/P&gt;&lt;P&gt;  content cache&lt;/P&gt;&lt;P&gt;    proto tcp&lt;/P&gt;&lt;P&gt;    port 80&lt;/P&gt;&lt;P&gt;    add service cache&lt;/P&gt;&lt;P&gt;    active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, you need an acl to avoid redirecting traffic from the cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;acl 1&lt;/P&gt;&lt;P&gt;  clause 20 bypass any any destination any&lt;/P&gt;&lt;P&gt;  apply circuit(VLAN&lt;CACHE&gt;)&lt;/CACHE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;acl 2&lt;/P&gt;&lt;P&gt;  clause 80 permit any any destination any&lt;/P&gt;&lt;P&gt;  apply circuit(VLAN&lt;OTHERS&gt;)&lt;/OTHERS&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With a CSM, it should be possible as well with less restrictions&lt;/P&gt;&lt;P&gt;          +-------------+&lt;/P&gt;&lt;P&gt;client ---|-MSFC----csm-|--vlan&lt;Y&gt;- internet&lt;/Y&gt;&lt;/P&gt;&lt;P&gt;          +-----------|-+&lt;/P&gt;&lt;P&gt;                      |&amp;lt;-----Vlan &lt;Z&gt;&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;                     cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mod csm &lt;SLOT&gt;&lt;/SLOT&gt;&lt;/P&gt;&lt;P&gt;  vlan &lt;X&gt; client&lt;/X&gt;&lt;/P&gt;&lt;P&gt;  vlan &lt;Y&gt; server&lt;/Y&gt;&lt;/P&gt;&lt;P&gt;    gateway x.x.x.x&lt;/P&gt;&lt;P&gt;  vlan &lt;Z&gt; server&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;  serverfarm cache&lt;/P&gt;&lt;P&gt;    no nat client&lt;/P&gt;&lt;P&gt;    no nat server&lt;/P&gt;&lt;P&gt;    real&lt;/P&gt;&lt;P&gt;      x.x.x.x&lt;/P&gt;&lt;P&gt;      inservice&lt;/P&gt;&lt;P&gt;  ! &lt;/P&gt;&lt;P&gt;  serverfarm route&lt;/P&gt;&lt;P&gt;    no nat client&lt;/P&gt;&lt;P&gt;    no nat server&lt;/P&gt;&lt;P&gt;    predictor forward&lt;/P&gt;&lt;P&gt;  !&lt;/P&gt;&lt;P&gt;  vserver tocache&lt;/P&gt;&lt;P&gt;    virtual 0.0.0.0 /0 tcp 80&lt;/P&gt;&lt;P&gt;    vlan x&lt;/P&gt;&lt;P&gt;    vlan y&lt;/P&gt;&lt;P&gt;    serverfarm cache&lt;/P&gt;&lt;P&gt;    inservice&lt;/P&gt;&lt;P&gt;  vserver fromcache&lt;/P&gt;&lt;P&gt;   virtual 0.0.0.0 /0 any&lt;/P&gt;&lt;P&gt;   serverfarm route&lt;/P&gt;&lt;P&gt;   vlan &lt;Z&gt;&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;   inservice&lt;/P&gt;&lt;P&gt;  !&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;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jul 2003 08:42:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167435#M2067</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2003-07-20T08:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167436#M2068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Gilles:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, for all your information.&lt;/P&gt;&lt;P&gt;Is it possible, with it scheme?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;client ---- router ------ Internet&lt;/P&gt;&lt;P&gt;                    |&lt;/P&gt;&lt;P&gt;              CSS (or  CSM)&lt;/P&gt;&lt;P&gt;                    |           |&lt;/P&gt;&lt;P&gt;              cache1   cache2   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The router will have two vlan againt the CSS (one for return internet from the cache, and other for redirection of the packets from the client).&lt;/P&gt;&lt;P&gt;I need that the CSS work balancing on either Cache's (with the application of  IP Spoofing between they).&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;Guillermo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2003 11:23:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167436#M2068</guid>
      <dc:creator>pbadorrey</dc:creator>
      <dc:date>2003-07-21T11:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167437#M2069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guillermo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem with ip spoofing is that the Cache will use the ip address of the client as source.&lt;/P&gt;&lt;P&gt;So, the server response will go back to the client ip address.&lt;/P&gt;&lt;P&gt;When the response gets to the router, it will see that it is directly connected to the client and will forward the response there bypassing the cache/CSS and the client will not accept understand this response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use policy routing to redirect the http response to the CSS (on another vlan otherwise it will still not work) but be carefull about the performance of the box when using policy routing.&lt;/P&gt;&lt;P&gt;It's much better to have 2 routers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2003 12:15:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167437#M2069</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2003-07-21T12:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167438#M2070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, the scheme is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;client ---- router ------ Internet &lt;/P&gt;&lt;P&gt;.................. | &lt;/P&gt;&lt;P&gt;................ CSS (or CSM) &lt;/P&gt;&lt;P&gt;................ |.......... | &lt;/P&gt;&lt;P&gt;............ cache1.. cache2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Client------- Router------CSS------Router------Internet&lt;/P&gt;&lt;P&gt;.........................................|&lt;/P&gt;&lt;P&gt;.....................................cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can here applicated Ip spoofing?&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;Guillermo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2003 12:40:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167438#M2070</guid>
      <dc:creator>pbadorrey</dc:creator>
      <dc:date>2003-07-21T12:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167439#M2071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With CSM module in Catalyst 6500 and Cache 7320 (mode transparent)&lt;/P&gt;&lt;P&gt;how enable and configured IP Spoofing in both?&lt;/P&gt;&lt;P&gt;I only know the command "wccp spoof-client-ip enable", for cache; but that configuration have do in the Catalyst.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Client----Router------CSM--------Router-------Internet&lt;/P&gt;&lt;P&gt;.......................................|&lt;/P&gt;&lt;P&gt;..................................cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Client-------Router------------Internet  &lt;/P&gt;&lt;P&gt;.........................|&lt;/P&gt;&lt;P&gt;......................CSM&lt;/P&gt;&lt;P&gt;.........................|&lt;/P&gt;&lt;P&gt;.....................cache&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;Guillermo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2003 11:17:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167439#M2071</guid>
      <dc:creator>pbadorrey</dc:creator>
      <dc:date>2003-07-22T11:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167440#M2072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you enable ip spoofing on the cahce with the command you gave :  "wccp spoof-client-ip enable"&lt;/P&gt;&lt;P&gt;It works even if you don't use wccp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the CSS, you define the cache as a service with 'type transparent-cache'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If using a CSM, you define a serverfarm with 'no nat client' and 'no nat server'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once again, I think in term of design you need 2 separate routers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2003 14:51:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167440#M2072</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2003-07-22T14:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167441#M2073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don´t understand if I need to configure WCCP in any of the routers or only configuring WCCP SPOOF-CLIENT-IP ENABLE in the cache is enough.&lt;/P&gt;&lt;P&gt;Thank you very much for your help.&lt;/P&gt;&lt;P&gt;Guillermo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2003 15:09:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167441#M2073</guid>
      <dc:creator>pbadorrey</dc:creator>
      <dc:date>2003-07-22T15:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167442#M2074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do not configure WCCP.&lt;/P&gt;&lt;P&gt;It is not required.&lt;/P&gt;&lt;P&gt;Just use the command 'wccp spoof-client-ip' on the cache.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2003 08:15:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167442#M2074</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2003-07-23T08:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167443#M2075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the Catalyst 6500 w/csm module I need two Routers (1-Client and 1-Internet), or is possible other scheme.&lt;/P&gt;&lt;P&gt;In the Catalyst not have that configure acl, and static route; or have that configure the same that in the CSS.&lt;/P&gt;&lt;P&gt;How configure if I have two or more CACHE and I need balance between they.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Guillermo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2003 11:19:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167443#M2075</guid>
      <dc:creator>pbadorrey</dc:creator>
      <dc:date>2003-07-23T11:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167444#M2076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with a cat6500 and a csm and a msfc, this is possible to do this.&lt;/P&gt;&lt;P&gt;         +----------------+&lt;/P&gt;&lt;P&gt;client --| MSFC --- CSM --|----- Internet&lt;/P&gt;&lt;P&gt;         +-----------|----+&lt;/P&gt;&lt;P&gt;                     |&lt;/P&gt;&lt;P&gt;                    Cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on MSFC&lt;/P&gt;&lt;P&gt;-------&lt;/P&gt;&lt;P&gt;vlan 10 --&amp;gt; client&lt;/P&gt;&lt;P&gt;vlan 20 --&amp;gt; msfc/csm&lt;/P&gt;&lt;P&gt;On CSM&lt;/P&gt;&lt;P&gt;-------&lt;/P&gt;&lt;P&gt;vlan 20&lt;/P&gt;&lt;P&gt;vlan 30 -&amp;gt; internet&lt;/P&gt;&lt;P&gt;vlan 40 -&amp;gt; Cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The config of the CSM should be&lt;/P&gt;&lt;P&gt;mod csm slot &lt;X&gt;&lt;/X&gt;&lt;/P&gt;&lt;P&gt; vlan 20 client&lt;/P&gt;&lt;P&gt;   ip x.x.x.x&lt;/P&gt;&lt;P&gt;   route ....&lt;/P&gt;&lt;P&gt; vlan 30 server&lt;/P&gt;&lt;P&gt;   ip x.x.x.x&lt;/P&gt;&lt;P&gt;   gateway ....&lt;/P&gt;&lt;P&gt; vlan 40 server&lt;/P&gt;&lt;P&gt;   ip x.x.x.x&lt;/P&gt;&lt;P&gt; !&lt;/P&gt;&lt;P&gt; serverfarm Caches&lt;/P&gt;&lt;P&gt;   no nat client&lt;/P&gt;&lt;P&gt;   no nat server&lt;/P&gt;&lt;P&gt;   real x.x.x.x&lt;/P&gt;&lt;P&gt;     inservice&lt;/P&gt;&lt;P&gt;   real x.x.x.x&lt;/P&gt;&lt;P&gt;     inservice&lt;/P&gt;&lt;P&gt; !&lt;/P&gt;&lt;P&gt; serverfarm route&lt;/P&gt;&lt;P&gt;   no nat client&lt;/P&gt;&lt;P&gt;   no nat server&lt;/P&gt;&lt;P&gt;   predictor forward&lt;/P&gt;&lt;P&gt; !&lt;/P&gt;&lt;P&gt; vserver bypass&lt;/P&gt;&lt;P&gt;   virtual 0.0.0.0/0&lt;/P&gt;&lt;P&gt;   vlan 20&lt;/P&gt;&lt;P&gt;   serverfarm route&lt;/P&gt;&lt;P&gt;   inservice&lt;/P&gt;&lt;P&gt; !&lt;/P&gt;&lt;P&gt; vserver cacheme&lt;/P&gt;&lt;P&gt;   virtual 0.0.0.0 /0 tcp 80&lt;/P&gt;&lt;P&gt;   vlan 20&lt;/P&gt;&lt;P&gt;   serverfarm Caches&lt;/P&gt;&lt;P&gt;   inservice&lt;/P&gt;&lt;P&gt; !&lt;/P&gt;&lt;P&gt; vserver response&lt;/P&gt;&lt;P&gt;   virtual 0.0.0.0/0 &lt;/P&gt;&lt;P&gt;   vlan 30&lt;/P&gt;&lt;P&gt;   serverfarm Caches&lt;/P&gt;&lt;P&gt;   inservice&lt;/P&gt;&lt;P&gt;  !&lt;/P&gt;&lt;P&gt;  vserver fromcache&lt;/P&gt;&lt;P&gt;   virtual 0.0.0.0/0&lt;/P&gt;&lt;P&gt;   vlan 40&lt;/P&gt;&lt;P&gt;   serverfarm route&lt;/P&gt;&lt;P&gt;   inservice&lt;/P&gt;&lt;P&gt;  !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2003 12:15:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167444#M2076</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2003-07-23T12:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: IP Spoofing with CSS or CSM module and Cache</title>
      <link>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167445#M2077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for all information, it was very good. I probe it and solve the problem, but now need connected two or more CACHE with one CSS, and I don't can make correctly.&lt;/P&gt;&lt;P&gt;How redirected the traffic from Internet the CACHE that make the request, and not the other cache?&lt;/P&gt;&lt;P&gt;I use static route with one Cache, OK (example, the config send for you); but with more cache. How? (in one CSS).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Guillermo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2003 18:42:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ip-spoofing-with-css-or-csm-module-and-cache/m-p/167445#M2077</guid>
      <dc:creator>pbadorrey</dc:creator>
      <dc:date>2003-07-28T18:42:28Z</dc:date>
    </item>
  </channel>
</rss>

