README.md 596 Bytes
Newer Older
Marc Cornellà's avatar
Reword    
Marc Cornellà committed
1
2
3
4
# UFW plugin

This plugin adds completion for managing everybody's favorite Uncomplicated Firewall (UFW),
a simple interface for managing iptables. Learn more about [`UFW`](https://wiki.ubuntu.com/UncomplicatedFirewall).
Alex Morozoff's avatar
Alex Morozoff committed
5
6
7
8
9
10
11
12
13
14
15
16
17
18

To use it, add ufw to the plugins array of your zshrc file:
```
plugins=(... ufw)
```

Some of the commands include:

* `allow <port>/<optional: protocol>` add an allow rule 
* `default` set default policy
* `delete <port>/<optional: protocol>` delete RULE
* `deny <port>/<optional: protocol>` add deny rule
* `disable` disables the firewall
* `enable` enables the firewall