0 Replies Latest reply on Jun 22, 2015 12:51 AM by valsaraj007

    How to setup different clusters in common IP

    valsaraj007

      Hi,

       

      I have many nodes that has IP address 10.4.0.X. I need to group them in 2 different clusters. Unfortunately I received message from nodes that doesn't included in a cluster. Each cluster receives messages from all nodes since they are all under 10.4.0. Here is my mod_cluster configuration in Apache:

       

      # MOD_CLUSTER_ADDS

      # Adjust to you hostname and subnet.

      <IfModule manager_module>

        Listen 10.4.0.1:10001

        ManagerBalancerName testbalancer

        <VirtualHost 10.4.0.1:10001>

          <Location />

           Order deny,allow

           Deny from all

           Allow from 10.4.0.

          </Location>

       

       

          KeepAliveTimeout 300

          MaxKeepAliveRequests 0

          #ServerAdvertise on http://10.4.0.1:10001

          AdvertiseFrequency 5

          #AdvertiseSecurityKey secret

          #AdvertiseGroup 224.0.1.105:23364

          EnableMCPMReceive

       

       

          <Location /mod_cluster_manager>

             SetHandler mod_cluster-manager

             Order deny,allow

             Deny from all

             Allow from 10.4.0

          </Location>

       

       

        </VirtualHost>

      </IfModule>

       

      Can anybody suggest a method to solve this issue?

       

      Thanks!