mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-22 10:58:57 +00:00
etc: Updated ufw firewall application preset with default GUI port
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3774
This commit is contained in:
parent
3266aae1c3
commit
7157917a16
@ -4,19 +4,28 @@ Installation
|
|||||||
-----------
|
-----------
|
||||||
**Please note:** When you installed syncthing using the official deb package, you can skip the copying.
|
**Please note:** When you installed syncthing using the official deb package, you can skip the copying.
|
||||||
|
|
||||||
Copy the file `syncthing` to your ufw applications directory usually located at `/etc/ufw/applications.d/`. (root permissions required).
|
Copy the file `syncthing` to your ufw applications directory usually located at `/etc/ufw/applications.d/` (root permissions required).
|
||||||
|
|
||||||
In a terminal run
|
In a terminal run
|
||||||
```
|
```
|
||||||
sudo ufw app update syncthing
|
sudo ufw app update syncthing
|
||||||
|
sudo ufw app update syncthing-gui
|
||||||
```
|
```
|
||||||
to load the preset.
|
to load the presets.
|
||||||
To allow the syncthing ports, run
|
To allow the syncthing ports, run
|
||||||
```
|
```
|
||||||
sudo ufw allow syncthing
|
sudo ufw allow syncthing
|
||||||
```
|
```
|
||||||
You can then verify the opened ports
|
If you want to access the web gui from anywhere (not only from localhost), you can also allow the gui port.
|
||||||
|
This is step is **not** necessary for a "normal" installation!
|
||||||
|
```
|
||||||
|
sudo ufw allow syncthing-gui
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
Verification
|
||||||
|
----------
|
||||||
|
You can verify the opened ports by running
|
||||||
```
|
```
|
||||||
sudo ufw status verbose
|
sudo ufw status verbose
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -2,3 +2,8 @@
|
|||||||
title=Syncthing
|
title=Syncthing
|
||||||
description=Syncthing file synchronisation
|
description=Syncthing file synchronisation
|
||||||
ports=22000/tcp|21027/udp
|
ports=22000/tcp|21027/udp
|
||||||
|
|
||||||
|
[syncthing-gui]
|
||||||
|
title=Syncthing-GUI
|
||||||
|
description=Syncthing web gui
|
||||||
|
ports=8384/tcp
|
||||||
|
Loading…
Reference in New Issue
Block a user