ufwπ
NOTE: Do not copy paste these commands except you understand each of them.
Installationπ
Setupπ
ufw allow 22/tcp
ufw allow 80/tcp
ufw allow 443/tcp
ufw allow 22195
ufw allow from <EDGE_NODE_IP> to any port 8000 # connect edge agents to portainer
ufw default reject incoming
ufw default allow outgoing
ufw default deny routed
ufw show added
ufw show listening
After reviewed. Activate your firewall
Chain Default Actionπ
Safe Mode (Allow all chain)π
Recommendedπ
Firewall Rulesπ
Rule Syntaxπ
ufw [rule]
[delete] [insert NUM] [prepend]
allow|deny|reject|limit
[in|out [on INTERFACE]]
[log|log-all]
[proto PROTOCOL]
[from ADDRESS [port PORT | app APPNAME ]]
[to ADDRESS [port PORT | app APPNAME ]]
[comment COMMENT]
Abbreviated allow syntax using Port/Protocolπ
Abbreviated allow syntax using Service Nameπ
Check service name from /etc/services
and replace port/protocol with it.
Abbreviated allow syntax using UFW Application Profileπ
# check available app profiels
ufw app list
# app profile info
ufw app info <appname>
# app profiles directory : /etc/ufw/applications.d/
Full allow incoming connection syntaxπ
## using port/protocol
ufw allow in proto tcp to any port 22## using service name
ufw allow in to any port ssh## using application profile
ufw allow in to any app OpenSSH
Allow incoming connection from specific sourceπ
- Network Interface: add
in on <interface>
afterufw
- Source IP/CIDR: add
from <IP/CIDR>
afterufw allow
## specific incoming interface
ufw allow in on eth0 proto tcp to any port 22
ufw allow in on eth0 to any port ssh## specific source ip
ufw allow from 192.168.1.0/24 proto tcp to any port 22
ufw allow from 172.16.1.10 proto tcp to any port 80
ufw allow from 172.16.1.10 proto tcp to any port 443## or both
ufw allow in on eth0 from 192.168.1.0/24 to any port 22
Show Reportπ
Report Syntaxπ
ufw show raw
ufw show builtins|before-rules|user-rules|after-rules|logging-rules
ufw show listening
ufw show added
Show listening ports along with firewall rulesπ
NOTE: if some service doesnβt have any rules then default chain action is executed.
Show added rulesπ
Control your Firewallπ
ufw enable
β Activate ufw by adding all ufw iptables rulesufw disable
β Remove all ufw iptables rulesufw reload
β Reload config (e.g./etc/default/ufw
/etc/ufw/*
)
Status β Check UFW Statusπ
Syntax: ufw status [verbose|numbered]