Linux System Management
Processes
Networking
IP Configuration
Firewall
sudo -s
apt-get install ufw
# --------------------
# This says that it will allow any outgoing connections on port 22 using the TCP protocol
ufw allow out 22/tcp
# This allows all traffic on port 22 TCP/UDP
ufw allow 22
# This will deny ALL outgoing connections
ufw default deny outgoing Automation
Crontabs
Value
Description
Creating & Editing a crontab



Last updated