From a3628fc49db4d88ff3e4067268650710d1da3f6f Mon Sep 17 00:00:00 2001 From: Silvino Silva Date: Fri, 12 Feb 2021 03:59:34 +0000 Subject: initial openbsd support --- linux/conf/rc.d/iptables | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 linux/conf/rc.d/iptables (limited to 'linux/conf/rc.d/iptables') 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 -- cgit 1.4.1-2-gfad0