diff options
author | Silvino <silvino@bk.ru> | 2021-02-25 23:22:17 +0000 |
---|---|---|
committer | Silvino <silvino@bk.ru> | 2021-02-25 23:22:17 +0000 |
commit | d12b35a47b9a872ecb5e037f1c2b02e1ea8927fb (patch) | |
tree | 8fdac6dfc8cabb9f85a2db3a3bd628cfe44438cd /linux/conf/rc.d/iptables | |
parent | 0a6b0fc9769daf0932cb207c3285baa31547b489 (diff) | |
parent | a3628fc49db4d88ff3e4067268650710d1da3f6f (diff) | |
download | doc-d12b35a47b9a872ecb5e037f1c2b02e1ea8927fb.tar.gz |
merge openbsd branch into develop
new directory layout
Diffstat (limited to 'linux/conf/rc.d/iptables')
-rw-r--r-- | linux/conf/rc.d/iptables | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/linux/conf/rc.d/iptables b/linux/conf/rc.d/iptables new file mode 100644 index 0000000..44f6bb2 --- /dev/null +++ b/linux/conf/rc.d/iptables @@ -0,0 +1,22 @@ +#!/bin/bash + +case $1 in + start) + echo "clear all iptables tables" + #nohup bash /etc/iptables/ipt-start.sh & + nohup bash /etc/iptables/ipt-start.sh & + ;; + stop) + echo "clear all iptables tables" + nohup bash /etc/iptables/ipt-stop.sh & + ;; + restart) + $0 start + ;; + status) + /usr/sbin/iptables -L -n -v + ;; + *) + echo "Usage: $0 [start|stop]" + ;; +esac |