Update README.md

This commit is contained in:
Chris Titus
2019-06-23 20:59:27 -05:00
committed by GitHub
parent 94c99a562e
commit c57bf6cfc9
+9 -1
View File
@@ -14,7 +14,15 @@ sudo apt install iptables-persistent
sudo /etc/init.d/netfilter-persistent save
```
### Arch Linux Distributions
*(Use iptable-save which is pre-installed)*
*Use iptable-save which is pre-installed*
```
sudo iptables-save
```
### RHEL / CentOS Distributions
*This is by far the simpliest way to save rules and check them # chkconfig --list | grep iptables*
*Note: chkconfig iptables on only needs to be run once to turn the service on*
```
sudo chkconfig iptables on
sudo service iptables save
```