Updated OCI; Oracle Cloud Instance; Quick how to enable DynMap (markdown)

Athar42 2022-11-30 21:20:06 +01:00
parent ef4ce7ce41
commit ec6a080766

@ -67,6 +67,13 @@ sudo ufw allow 25565/tcp
sudo ufw allow 19132/udp sudo ufw allow 19132/udp
``` ```
N.B : For the first command, you can see I didn't specify the port, but the service name, so the first command "sudo ufw allow ssh" is equal to "sudo ufw allow 22/tcp".
In fact, you can use any service name, which you can retrieve this way :
```
cat /etc/services
```
Add any rules you needs, then once done, we enable the firewall with those new rules (and check that everything is OK with the status command) : Add any rules you needs, then once done, we enable the firewall with those new rules (and check that everything is OK with the status command) :
``` ```