tldr/pages/linux/ufw.md

38 lines
912 B
Markdown
Raw Normal View History

# ufw
> Uncomplicated Firewall.
> Frontend for `iptables` aiming to make configuration of a firewall easier.
2021-06-25 05:43:37 +01:00
> More information: <https://wiki.ubuntu.com/UncomplicatedFirewall>.
- Enable ufw:
`ufw enable`
- Disable ufw:
`ufw disable`
2016-08-28 10:51:54 +01:00
- Show ufw rules, along with their numbers:
2016-05-17 12:31:03 +01:00
2016-08-28 10:51:54 +01:00
`ufw status numbered`
2016-05-17 12:31:03 +01:00
2017-10-06 15:37:07 +01:00
- Allow incoming traffic on port 5432 on this host with a comment identifying the service:
`ufw allow {{5432}} comment "{{Service}}"`
2016-08-28 10:51:54 +01: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 10:51:54 +01:00
- Deny traffic on port 80 on this host:
2016-08-28 10:51:54 +01:00
`ufw deny {{80}}`
- Deny all UDP traffic to ports in range 8412:8500:
2016-08-28 10:51:54 +01:00
`ufw deny proto {{udp}} from {{any}} to {{any}} port {{8412:8500}}`
2016-08-28 10:51:54 +01:00
2016-09-01 11:32:55 +01:00
- Delete a particular rule. The rule number can be retrieved from the `ufw status numbered` command:
2016-08-28 10:51:54 +01:00
`ufw delete {{rule_number}}`