LIVE NOW
DartDay - 24 Hours of Blow Out Deals!
00d : 00h : 00m : 00s
Go To the Event

Knowledge Base

Find detailed guides, step-by-step tutorials, and FAQs to help you get the most from your DartNode services.

home security-firewall server-setup

How to Set Up firewalld (CentOS/AlmaLinux)

How to Set Up firewalld (CentOS/AlmaLinux)

# Check status
firewall-cmd --state

# Allow common services
firewall-cmd --permanent --add-service=ssh
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https

# Allow a specific port
firewall-cmd --permanent --add-port=8080/tcp

# Apply changes
firewall-cmd --reload

# List all rules
firewall-cmd --list-all