From 86feb86378d290b9999ca11fa423a638d71552e1 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Tue, 18 Jan 2022 13:10:09 +0100 Subject: [PATCH] clusterd: Change area router for 141.14.31.255 to wtf Some of the communications of clusterd is based on ip broadcasts. If the nodes are distributed over multiple ipv4 networks, different nodes need to do the broadcasts, because without special router setups, you can't broadcasts to remote subnets. For this reason, one node is a designated broadcaster for each subnet. This node is called "area router" in the code. Data to be sent to all nodes is sent via unicast to each area router which, in turn, brodcast it to the networks they are resposible for. Move the area router role for network 141.14.16/0 with broadcast address 141.14.31.255 from lol to wtf. --- clusterd/clusterd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clusterd/clusterd b/clusterd/clusterd index 7121b85..5625d04 100755 --- a/clusterd/clusterd +++ b/clusterd/clusterd @@ -1656,8 +1656,7 @@ sub sync_cluster_pw { our %AREA_ROUTER= ( -lol => '141.14.31.255', -# orkrist=> '10.14.0.255', + wtf => '141.14.31.255', ); our $area_socket;