mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
Merge pull request #1021 from tldr-pages/ufw
This commit is contained in:
commit
6a9f7e74ca
@ -11,14 +11,26 @@
|
||||
|
||||
`ufw disable`
|
||||
|
||||
- Add ufw allow rule:
|
||||
- Show ufw rules, along with their numbers:
|
||||
|
||||
`ufw allow {{port}} {{service_name}}`
|
||||
`ufw status numbered`
|
||||
|
||||
- Add ufw deny rule:
|
||||
- Allow incoming traffic on port 5432 on this host:
|
||||
|
||||
`ufw deny {{port}} {{service_name}}`
|
||||
`ufw allow {{5432}}`
|
||||
|
||||
- Show ufw rules:
|
||||
- Allow only TCP traffic from 192.168.0.4 to any address on this host, on port 22:
|
||||
|
||||
`ufw status`
|
||||
`ufw allow proto {{tcp}} from {{192.168.0.4}} to {{any}} port {{22}}`
|
||||
|
||||
- Deny traffic on port 80 on this host:
|
||||
|
||||
`ufw deny {{80}}`
|
||||
|
||||
- Deny all UDP traffic to port 22:
|
||||
|
||||
`ufw deny proto {{udp}} from {{any}} to {{any}} port {{22}}`
|
||||
|
||||
- Delete a particular rule. The rule number can be retrieved from the `ufw status numbered` command:
|
||||
|
||||
`ufw delete {{rule_number}}`
|
||||
|
Loading…
Reference in New Issue
Block a user