/
Learn how to configure UFW or iptables on Linux to allow Dermi Atlas Professional connections, including specific port configurations.
If ufw is active, the ports used by Dermi Atlas Professional must be allowed.
sudo ufw statussudo ufw allow 15015/tcp
sudo ufw allow 15045/tcp
sudo ufw allow 15815/tcp
sudo ufw allow 15845/tcp
sudo ufw allow 15000/tcpPort 15000 is the gateway port serving the certificate /download, /status, and /health endpoints, and it must be allowed for LAN devices to retrieve the SSL certificate.
sudo ufw status numberedIf iptables is used directly:
sudo iptables -A INPUT -p tcp --dport 15015 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 15045 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 15815 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 15845 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 15000 -j ACCEPTMake sure to save the rules so they persist after reboot (method varies by distribution, e.g., iptables-save).
Your feedback helps us improve our documentation
Contact our support team for personalized help