We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b831b1 commit 1a68b8cCopy full SHA for 1a68b8c
data/server/firewall.md renamed to data/server/network/firewall.md
data/server/network/iptables.md
@@ -0,0 +1,16 @@
1
+## list iptables
2
+```bash
3
+iptables -L
4
+# Permission denied (you must be root)
5
+
6
7
+sudo iptables -L
8
+# Chain INPUT (policy ACCEPT)
9
+# target prot opt source destination
10
11
+# Chain FORWARD (policy ACCEPT)
12
13
14
+# Chain OUTPUT (policy ACCEPT)
15
16
+```
data/server/network/route.md
@@ -33,9 +33,3 @@ route
33
# 172.23.0.0 0.0.0.0 255.255.0.0 U 0 0 0 br-44526eaa5e73
34
# 192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
35
```
36
-
37
38
-## list iptables
39
-```bash
40
-sudo iptables -L
41
-```
0 commit comments