Skip to content
Snippets Groups Projects
Commit e00dd390 authored by Florent Gluck's avatar Florent Gluck
Browse files

Slight install.md mod

parent 8106ab66
Branches
No related tags found
No related merge requests found
......@@ -318,7 +318,7 @@ The `ufw` tool provides an easy way to configure the Linux kernel firewall. Inst
sudo apt-get install -y ufw
```
Then, make sure to configure the fiewall to match open ports specified in `nexus-server/config/nexus.conf`. There is the API port and the range of ports for Spice.
Then, make sure to configure the fiewall to match open ports specified in `nexus-server/config/nexus.conf`. There is the API port and the range of ports for Spice.
Let's assume the API port is 1077 and the range of Spice ports is [42000-43000]. Use `ufw` to add the following firewall rules with:
```
......@@ -326,6 +326,11 @@ ufw allow 1077/tcp
ufw allow 42000:43000/tcp
```
To open ssh access:
```
ufw allow 22/tcp
```
To remove some firewall rules, list their numbers with:
```
ufw status numbered
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment