<?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: clustering configuration in Web Security</title>
    <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222658#M643</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello josh,&lt;BR /&gt;&lt;BR /&gt;Are there plans to implemented real failover not using wccp or an external loadbalancer? Like for example vrrp as used by bluecoat?&lt;BR /&gt;&lt;BR /&gt;Best regards&lt;BR /&gt;&lt;BR /&gt;Bart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Jun 2009 18:45:23 GMT</pubDate>
    <dc:creator>bartknippenberg</dc:creator>
    <dc:date>2009-06-16T18:45:23Z</dc:date>
    <item>
      <title>clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222652#M637</link>
      <description>&lt;P&gt;hi,&lt;BR /&gt;i m new to Ironport WSA so i need some information....&lt;BR /&gt;is there any document which can describe how to configure two WSA in failover or redundancy or clustering mode.&lt;BR /&gt;&lt;BR /&gt;i want to know is any of them can be configured on web security appliance.&lt;BR /&gt;&lt;BR /&gt;thanx,&lt;BR /&gt;Mac&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jan 2009 13:23:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222652#M637</guid>
      <dc:creator>mac.til_ironport</dc:creator>
      <dc:date>2009-01-17T13:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222653#M638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mac,&lt;BR /&gt;&lt;BR /&gt;There is currently not clustering / failover abilities built into the WSA. &lt;BR /&gt;&lt;BR /&gt;Please be aware that if you are using transparent proxy with WCCP, the WCCP protocol inherently utilizes load balancing and failover if a problem happens on any web-cache devices within the same service ID. &lt;BR /&gt;&lt;BR /&gt;IE: If you have two WSAs in a single service ID, traffic will be load shared between them and if one WSA fails, all traffic will be routed to the working WSA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2009 01:50:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222653#M638</guid>
      <dc:creator>jowolfer</dc:creator>
      <dc:date>2009-01-20T01:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222654#M639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your reply,&lt;BR /&gt;&lt;BR /&gt;But i have some little information that we can achive this using PAC file hosting facility on the box. Do you have any idea about that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 13:58:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222654#M639</guid>
      <dc:creator>mac.til_ironport</dc:creator>
      <dc:date>2009-02-02T13:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222655#M640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mac,&lt;BR /&gt;&lt;BR /&gt;It is possible utilize multiple WSAs by writing a .pac file script. &lt;BR /&gt;&lt;BR /&gt;We cannot assist in writing, modifying, or maintaining .pac file code, but I have a pac file example that may help.&lt;BR /&gt;&lt;BR /&gt;This is for load balancing between 2 proxies:&lt;BR /&gt;&lt;BR /&gt;------------------------------------------ &lt;BR /&gt;function FindProxyForURL(url,host){&lt;BR /&gt;      switch(URLHash(url)%2){&lt;BR /&gt;             case 1:  return "PROXY &lt;B&gt;wsa.proxy1&lt;/B&gt;:3128";&lt;BR /&gt;             default: return "PROXY &lt;B&gt;wsa.proxy2&lt;/B&gt;:3128";&lt;BR /&gt;      }&lt;BR /&gt;} &lt;BR /&gt;&lt;BR /&gt;function URLHash(url) {&lt;BR /&gt;server_name=url.split("/")[2]&lt;BR /&gt;if(!server_name) {return url.length;}&lt;BR /&gt;    return server_name.length;&lt;BR /&gt;}&lt;BR /&gt;------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 23:53:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222655#M640</guid>
      <dc:creator>jowolfer</dc:creator>
      <dc:date>2009-02-02T23:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222656#M641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about an example for failover via pac file?&lt;BR /&gt;&lt;BR /&gt;I have looked at using &lt;PRE __jive_macro_name="code" class="jive_text_macro jive_macro_code" ___default_attr="plain"&gt;return "PROXY ironport:8080; PROXY otherproxy:8080";&lt;/PRE&gt;but I am not clear if traffic will push over to otherproxy randomly or only if ironport1 is not available or times out.&lt;BR /&gt;&lt;BR /&gt;Any thoughts or suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2009 06:00:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222656#M641</guid>
      <dc:creator>RBC____CS</dc:creator>
      <dc:date>2009-02-07T06:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222657#M642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following can be used for a simple failover: &lt;BR /&gt;&lt;BR /&gt;function FindProxyForURL(url,host) {&lt;BR /&gt;	return "PROXY ironport:8080;&lt;BR /&gt;		PROXY otherproxy:8080;&lt;BR /&gt;		DIRECT";&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2009 00:06:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222657#M642</guid>
      <dc:creator>jowolfer</dc:creator>
      <dc:date>2009-02-11T00:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222658#M643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello josh,&lt;BR /&gt;&lt;BR /&gt;Are there plans to implemented real failover not using wccp or an external loadbalancer? Like for example vrrp as used by bluecoat?&lt;BR /&gt;&lt;BR /&gt;Best regards&lt;BR /&gt;&lt;BR /&gt;Bart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 18:45:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222658#M643</guid>
      <dc:creator>bartknippenberg</dc:creator>
      <dc:date>2009-06-16T18:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222659#M644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bart,&lt;BR /&gt;&lt;BR /&gt;We do have a feature request for this functionality, but I do not have any roadmap information for it. &lt;BR /&gt;&lt;BR /&gt;Enhancement: 38634 Ability to setup WSA as Active-Standby failover in forward proxy mode&lt;BR /&gt;&lt;BR /&gt;I recommend bringing this up with your sales representative as well, so that we can properly log the importance for this feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 00:10:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222659#M644</guid>
      <dc:creator>jowolfer</dc:creator>
      <dc:date>2009-06-17T00:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222660#M645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The failover should only occur if the first proxy is no longer pingable. That's my experience anyway. Also, you might need to host the pac file on another webserver. If you host it on say proxy1, and it's the one that goes down, the browser won't know how to get to proxy2. I guess you could host it on both and roundrobin the DNS record. Anyone else doing that?&lt;BR /&gt;&lt;BR /&gt;--Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2009 00:45:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222660#M645</guid>
      <dc:creator>Tim Jackson</dc:creator>
      <dc:date>2009-06-19T00:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222661#M646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys. &lt;BR /&gt;&lt;BR /&gt;I found a very interesting article about Load Balance between Proxies. I did some testing with the script and works well. The problem is always with https connections which are lost in the process of balancing, and management of the workaround is a bit cumbersome.&lt;BR /&gt;&lt;BR /&gt;http://www.isaserver.org/tutorials/Load-Balancing-Web-Proxy-Clients-With-ISA-Server-2004-Standard-Edition-Part1.html&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 05:16:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222661#M646</guid>
      <dc:creator>alisson.santos_ironport</dc:creator>
      <dc:date>2009-07-31T05:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: clustering configuration</title>
      <link>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222662#M647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alisson,&lt;BR /&gt;&lt;BR /&gt;Thanks for the link!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 22:25:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/web-security/clustering-configuration/m-p/1222662#M647</guid>
      <dc:creator>jowolfer</dc:creator>
      <dc:date>2009-07-31T22:25:18Z</dc:date>
    </item>
  </channel>
</rss>

