@@ -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: