]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/ufw/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / ufw / README.md
1 # UFW plugin
2
3 This plugin adds completion for managing everybody's favorite Uncomplicated Firewall (UFW),
4 a simple interface for managing iptables. Learn more about [`UFW`](https://wiki.ubuntu.com/UncomplicatedFirewall).
5
6 To use it, add ufw to the plugins array of your zshrc file:
7 ```
8 plugins=(... ufw)
9 ```
10
11 Some of the commands include:
12
13 * `allow <port>/<optional: protocol>` add an allow rule 
14 * `default` set default policy
15 * `delete <port>/<optional: protocol>` delete RULE
16 * `deny <port>/<optional: protocol>` add deny rule
17 * `disable` disables the firewall
18 * `enable` enables the firewall