about summary refs log tree commit diff stats
path: root/linux/conf/iptables/ipt-start.sh
diff options
context:
space:
mode:
Diffstat (limited to 'linux/conf/iptables/ipt-start.sh')
-rw-r--r--linux/conf/iptables/ipt-start.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/linux/conf/iptables/ipt-start.sh b/linux/conf/iptables/ipt-start.sh
new file mode 100644
index 0000000..65b848c
--- /dev/null
+++ b/linux/conf/iptables/ipt-start.sh
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+echo "starting iptables..."
+
+source /etc/iptables/ipt-firewall.sh
+
+ipt_clear
+ipt_tables
+
+# Unlimited on loopback
+$IPT -A INPUT -i lo -s 127.0.0.0/8 -d 127.0.0.0/8 -j ACCEPT
+$IPT -A OUTPUT -o lo -s 127.0.0.0/8 -d 127.0.0.0/8 -j ACCEPT
+
+case $TYPE in
+    bridge)
+        #ipt_clear
+        echo 1 > /proc/sys/net/ipv4/ip_forward
+        source /etc/iptables/ipt-bridge.sh
+        exit 0
+        ;;
+    server)
+        #ipt_clear
+        source /etc/iptables/ipt-server.sh
+        exit 0
+        ;;
+    client)
+        source /etc/iptables/ipt-client.sh
+        exit 0
+        ;;
+    open)
+        source /etc/iptables/ipt-open.sh
+        exit 0
+        ;;
+esac
anger/commit/doc/pydoc/ranger.__main__.html?h=v1.2.0&id=b3556b21e23eb3381b220e0d3319d94b3a89e0ac'>b3556b21 ^
62cd83ba ^






4c13e1f2 ^
















62cd83ba ^
4c13e1f2 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47