From a53c84745ff11d43e89f06dffb746fcabb5b5173 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, here called an area router. Data to be sent to all nodes is sent wia unicast to each area router which, in turn, brodcasts it to the network it is resposible for. Move this 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 7121b850..5625d044 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;