Example: Static IP based Discovery

For cases when multicast is disabled, use TcpDiscoveryVmIpFinder with pre-configured list of IP addresses.

<bean class="org.apache.ignite.configuration.IgniteConfiguration">
  ...
  <property name="discoverySpi">
    <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
      <property name="ipFinder">
        <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
          <property name="addresses">
            <list>
              <!--
 	Explicitly specifying address of a local node to let it start and operate normally even if there is no more nodes in the cluster.You can also optionally specify an individual port or port range.
 	 -->
              <value>1.2.3.4</value>
              
              <!-- 
                  IP Address and optional port range of a remote node. You can also optionally specify an individual port and don't set	the port range at all.
              -->
              <value>1.2.3.5:47500..47509</value>
            </list>
          </property>
        </bean>
      </property>
    </bean>
  </property>
</bean>