PROJET AUTOBLOG


Shaarli - Les discussions de Shaarli

Archivé

Site original : Shaarli - Les discussions de Shaarli du 23/07/2013

⇐ retour index

Firewall Setup - Syncthing v0.11 documentation

samedi 6 juin 2015 à 16:01
Liens en vrac de SimonLefort 06/06/2015
J'ai installé Syncthing sur un serveur pour faire des backups automatisés. Ça ne fonctionnait pas -encore- parce qu'il faut ouvrir deux ports :

la doc :
| ========
Local Firewall

If your PC has a local firewall, you will need to open the following ports for incoming traffic:

   Port 22000/TCP (or the actual listening port if you have changed the Sync Protocol Listen Address setting.)
   Port 21025/UDP (for discovery broadcasts)
| ========

J'ai rajouté ces lignes dans mon fichier "/etc/init.d/firewall" :
| ========
# Syncthing ( source: http://docs.syncthing.net/users/firewall.html )
iptables -t filter -A OUTPUT -p tcp --dport 22000 -j ACCEPT
iptables -t filter -A INPUT -p tcp --dport 22000 -j ACCEPT
iptables -t filter -A OUTPUT -p udp --dport 21025 -j ACCEPT
iptables -t filter -A INPUT -p udp --dport 21025 -j ACCEPT
| ========
(Permalink)