1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

add firewalld aliases

This commit is contained in:
Rob Ede 2016-09-07 12:56:19 +01:00
parent 71201ffd67
commit e726af8f83

View file

@ -0,0 +1,17 @@
alias fw="firewall-cmd"
alias fwp="firewall-cmd --permanent"
alias fwr="firewall-cmd --reload"
alias fwrp="firewall-cmd --runtime-to-permanent"
function fwl () {
# converts output to zsh array ()
# @f flag split on new line
zones=("${(@f)$(firewall-cmd --get-active-zones | grep -v interfaces)}")
for i in $zones; do
firewall-cmd --zone $i --list-all
done
echo 'Direct Rules:'
firewall-cmd --direct --get-all-rules
}