# Firewall permissions

In order for the node to receive incoming HTTP requests, it must give firewall permissions to open necessary ports, as follows:<br>

```bash
# Allow Atoma service port
sudo ufw allow 3000/tcp # change this port to match the docker compose file

# Allow vLLM service port
sudo ufw allow 50000/tcp # change this port to match the docker compose file
```
