0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/firewalld/firewalld.plugin.zsh

18 lines
499 B
Bash
Raw Normal View History

2016-09-08 01:05:43 +02:00
alias fw="sudo firewall-cmd"
alias fwp="sudo firewall-cmd --permanent"
alias fwr="sudo firewall-cmd --reload"
alias fwrp="sudo firewall-cmd --runtime-to-permanent"
2016-09-07 13:56:19 +02:00
function fwl () {
# converts output to zsh array ()
# @f flag split on new line
zones=("${(@f)$(sudo firewall-cmd --get-active-zones | grep -v 'interfaces\|sources')}")
2016-09-07 13:56:19 +02:00
for i in $zones; do
sudo firewall-cmd --zone ${i/ \(default\)} --list-all
2016-09-07 13:56:19 +02:00
done
echo 'Direct Rules:'
2016-09-08 01:05:43 +02:00
sudo firewall-cmd --direct --get-all-rules
2016-09-07 13:56:19 +02:00
}