2023-10-02 01:35:38 +00:00
|
|
|
https://docs.syncthing.net/intro/getting-started.html#getting-started
|
|
|
|
|
2023-10-02 01:33:37 +00:00
|
|
|
Syncthing was installed with `sudo apt install syncthing` after all packages and lists were updated.
|
2023-10-02 01:35:38 +00:00
|
|
|
|
2023-10-02 01:36:37 +00:00
|
|
|
TCP port 8384 was allowed through the firewall with:
|
2023-10-02 01:35:38 +00:00
|
|
|
```
|
2023-10-02 01:36:37 +00:00
|
|
|
iptables -I INPUT 1 -i enX0 -p tcp --dport 8080 -j ACCEPT
|
2023-10-02 01:35:38 +00:00
|
|
|
```
|
2023-10-02 01:36:37 +00:00
|
|
|
|
|
|
|
You can validate which ports are open with `iptables -L`
|