Commit e726af8f authored by Rob Ede's avatar Rob Ede
Browse files

add firewalld aliases

parent 71201ffd
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
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment