我已经成功地让JGroups通过使用TCP的不同机器在本地网络上工作,我无法使用多播。我需要能够让两个节点通过互联网进行通信。将地址更改为公共地址似乎不起作用,需要进行其他配置。 我看过http://www.jgroups.org/manual-3.x/html/protlist.html 并设置external_addr,但也许还有更多设置。
如何设置它以通过公共地址进行通信?
配置:
<config xmlns="urn:org:jgroups"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/jgroups-4.0.xsd">
<TCP bind_port="7800"
recv_buf_size="${tcp.recv_buf_size:130k}"
send_buf_size="${tcp.send_buf_size:130k}"
max_bundle_size="64K"
sock_conn_timeout="300"
client_bind_addr="GLOBAL"
thread_pool.min_threads="0"
thread_pool.max_threads="20"
thread_pool.keep_alive_time="30000"/>
<TCPPING async_discovery="true"
initial_hosts="${jgroups.tcpping.initial_hosts:52.211.80.63[7801]}"
port_range="2"/>
<MERGE3 min_interval="10000"
max_interval="30000"/>
<FD_SOCK/>
<FD timeout="3000" max_tries="3" />
<VERIFY_SUSPECT timeout="1500" />
<BARRIER />
<pbcast.NAKACK2 use_mcast_xmit="false"
discard_delivered_msgs="true"/>
<UNICAST3 />
<pbcast.STABLE desired_avg_gossip="50000"
max_bytes="4M"/>
<pbcast.GMS print_local_addr="true" join_timeout="2000"
view_bundling="true"/>
<MFC max_credits="2M"
min_threshold="0.4"/>
<FRAG2 frag_size="60K" />
<!--RSVP resend_interval="2000" timeout="10000"/-->
<pbcast.STATE_TRANSFER/>
</config>
答案 0 :(得分:0)
不,除非你支持NAT,否则你不会需要external_addr
。你需要做的是:
TCP.bind_addr
(我建议删除TCP.client_bind_addr
),例如到其中一个公共IP地址(50.x.x.x
)TCPPING.initial_hosts
需要所有(或大多数)成员&#39;地址您当前的配置不起作用,因为(1)bind_addr
未定义,(2)initial_hosts
列出了7801
端口的成员,但TCP.bind_port
是7800
。