Hi there,
I have a setup where I’d like to only update things along a certain path:
+- satellite link -- _local_server_1_ -- wifi_1
_Server_ --+
+- satellite link -- _local_server_2_ -- wifi_2
+- satellite link -- wifi_3
My _Server_
is available with a public IP. As I live behind satellite-links but have some _local_server_n_
available, it is faster to copy things to the _local_server
, and then let those communicate with the _Server_
. For the moment I do this with some rsync
and local samba-shares. But if I could tell syncthing to update only to _local_server
, if available, this would be easier…
So:
- If I’m in
wifi_1
, all my files first go to_local_server_1_
, before being copied to_Server_
and_local_server_2_
- If I’m in
wifi_2
, all my files first go to_local_server_2_
, before being copied to_Server_
and_local_server_1_
- If I’m in
wifi_3
, all my files get copied directly to_Server_
, and then to_local_server_1_
and_local_server_2_
Any idea?