Ufw: Difference between revisions

From DWIKI
mNo edit summary
Line 30: Line 30:
==Allow port range==
==Allow port range==
  ufw allow from any to any port 60000:60010 proto udp
  ufw allow from any to any port 60000:60010 proto udp
==Where do application files come from?==
For example "Apache Full" gets installed with the apache2 package.

Revision as of 13:58, 12 August 2024

UFW - Uncomplicated firewall

Links

HOWTO

Allow SSH

ufw allow from 12.3.4 to any app OpenSSH

From host to port

ufw allow from 198.51.100.0 to any port 22 proto tcp

From host to app

ufw allow from 192.168.3.4 to any app SSH

List rules

ufw status numbered


Stop logging

ufw logging off


Add allow rule with logging

ufw allow log-all from any to any port 113 proto tcp

Allow port range

ufw allow from any to any port 60000:60010 proto udp

Where do application files come from?

For example "Apache Full" gets installed with the apache2 package.