I am trying to configure UFW (uncomplicated firewall) so that is will deny all ports exept port 443 and 4444. How do i do this?
MasterHacker110 -4 Newbie Poster
Recommended Answers
Jump to PostBasically run:
sudo ufw default deny sudo ufw enable sudo ufw allow 443/tcp sudo ufw allow 4444/tcp
and also udp if you need to enable that too. You can list all rules by using:
sudo ufw status
You can read more by using
man ufw
or reading this …
All 4 Replies
cereal 1,524 Nearly a Senior Poster Featured Poster
MasterHacker110 -4 Newbie Poster
cereal 1,524 Nearly a Senior Poster Featured Poster
MasterHacker110 -4 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.