You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "ARomantsov (JIRA)" <ji...@apache.org> on 2018/10/12 10:07:00 UTC

[jira] [Created] (IGNITE-9867) Add ability to block out of range IP on discovery request

ARomantsov created IGNITE-9867:
----------------------------------

             Summary: Add ability to block out of range IP on discovery request
                 Key: IGNITE-9867
                 URL: https://issues.apache.org/jira/browse/IGNITE-9867
             Project: Ignite
          Issue Type: Improvement
          Components: general
    Affects Versions: 2.7
            Reporter: ARomantsov
             Fix For: 2.8


Now we can set list of cluster collector node, but cannot deny another ips to connect to our cluster


{code:java}
<bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
                <property name="ackTimeout" value="60000"/>
                <property name="maxAckTimeout" value="300000"/>
                <property name="reconnectCount" value="2"/>
                <property name="socketTimeout" value="30000"/>
                <property name="ipFinder">
                    <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
                        <property name="addresses">
                            <list>
                            </list>
                        </property>
                    </bean>
                </property>
            </bean>
{code}




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)