mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-17 04:29:14 +02:00
added file content
This commit is contained in:
parent
73da6166e5
commit
6d7fdee1bb
1 changed files with 11 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
# Some useful iptables aliases for New SysAdmins
|
||||
|
||||
|
||||
alias fw_show="iptables -L -n -v" # Displaying the Status of Your Firewall
|
||||
alias fw_show_line="iptables -n -L -v --line-numbers" # Display Line
|
||||
alias fw_start="service iptables start" # Start the Firewall
|
||||
alias fw_restart="service iptables restart" # Restart the Firewall
|
||||
alias fw_stop="service iptables stop" # Stop the Firewall
|
||||
alias fw_save="service iptables save" # Save the Firewall
|
||||
alias fw_icmp_drop="iptables -A INPUT -p icmp --icmp-type echo-request -j DROP" # Block ICMP Ping Request
|
||||
alias fw_flush="iptables -F"
|
||||
Loading…
Add table
Add a link
Reference in a new issue