The Nautilus system admins team has rolled out a web UI application for their backup utility on the Nautilus backup server within the Stratos Datacenter. This application operates on port 5004, and firewalld is active on the server.
- Allow all incoming connections on port 5004/tcp.
- Ensure the zone is set to public.
- Log in to Backup Server:
ssh your_username@backup_server_ip
- Allow Incoming Connections on Port 5004/tcp:
sudo firewall-cmd --zone=public --add-port=5004/tcp --permanent
- Reload the Firewall to Apply Changes:
sudo firewall-cmd --reload
- Verify the Port is Allowed:
sudo firewall-cmd --zone=public --list-ports
- Command Explanation:
ssh your_username@backup_server_ip: Log in to the backup server. sudo firewall-cmd --zone=public --add-port=5004/tcp --permanent: Allow incoming connections on port 5004/tcp within the public zone. sudo firewall-cmd --reload: Reload the firewall to apply the changes. sudo firewall-cmd --zone=public --list-ports: Verify that port 5004/tcp is allowed in the public zone.