tldr/pages/linux/ufw.md

37 lines
756 B
Markdown
Raw Normal View History

# ufw
> Uncomplicated Firewall.
> Frontend for iptables aiming to make configuration of a firewall easier.
- Enable ufw:
`ufw enable`
- Disable ufw:
`ufw disable`
2016-08-28 12:51:54 +03:00
- Show ufw rules, along with their numbers:
2016-05-17 14:31:03 +03:00
2016-08-28 12:51:54 +03:00
`ufw status numbered`
2016-05-17 14:31:03 +03:00
2016-08-28 12:51:54 +03:00
- Allow incoming traffic on port 5432 on this host:
2016-08-28 12:51:54 +03:00
`ufw allow {{5432}}`
2016-08-28 12:51:54 +03:00
- Allow only TCP traffic from 192.168.0.4 to any address on this host, on port 22:
`ufw allow proto {{tcp}} from {{192.168.0.4}} to {{any}} port {{22}}`
2016-08-28 12:51:54 +03:00
- Deny traffic on port 80 on this host:
2016-08-28 12:51:54 +03:00
`ufw deny {{80}}`
- Deny all UDP traffic to port 22:
`ufw deny proto {{udp}} from {{any}} to {{any}} port {{22}}`
2016-08-28 12:51:54 +03:00
2016-09-01 13:32:55 +03:00
- Delete a particular rule. The rule number can be retrieved from the `ufw status numbered` command:
2016-08-28 12:51:54 +03:00
`ufw delete {{rule_number}}`