From 5e2678d0f8fca6e0416f62df365ca2a41266a9ad Mon Sep 17 00:00:00 2001 From: DL6ER Date: Wed, 24 Apr 2019 12:00:20 +0200 Subject: [PATCH] Fix font size issue on OpenVPN/Firewall page Signed-off-by: DL6ER --- docs/guides/vpn/firewall.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/docs/guides/vpn/firewall.md b/docs/guides/vpn/firewall.md index 3a0e94f..546d022 100644 --- a/docs/guides/vpn/firewall.md +++ b/docs/guides/vpn/firewall.md @@ -94,10 +94,10 @@ and they should look something like this: ``` Chain INPUT (policy DROP) -num target prot opt source destination -1 ACCEPT all -- anywhere anywhere +num target prot opt source destination +1 ACCEPT all -- anywhere anywhere 2 ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED -3 ACCEPT all -- anywhere anywhere +3 ACCEPT all -- anywhere anywhere 4 ACCEPT tcp -- anywhere anywhere tcp dpt:domain 5 ACCEPT udp -- anywhere anywhere udp dpt:domain 6 ACCEPT tcp -- anywhere anywhere tcp dpt:http @@ -116,18 +116,18 @@ num target prot opt source destination 19 REJECT tcp -- anywhere anywhere tcp dpt:https reject-with icmp-port-unreachable Chain FORWARD (policy ACCEPT) -num target prot opt source destination +num target prot opt source destination Chain OUTPUT (policy ACCEPT) -num target prot opt source destination +num target prot opt source destination ``` Similarly, `ip6tables -L --line-numbers` should look like this: ``` Chain INPUT (policy DROP) -num target prot opt source destination -1 ACCEPT all anywhere anywhere +num target prot opt source destination +1 ACCEPT all anywhere anywhere 2 ACCEPT all anywhere anywhere state RELATED,ESTABLISHED 3 ACCEPT tcp anywhere anywhere tcp dpt:domain 4 ACCEPT udp anywhere anywhere udp dpt:domain @@ -139,10 +139,10 @@ num target prot opt source destination 10 REJECT tcp anywhere anywhere tcp dpt:https reject-with icmp6-port-unreachable Chain FORWARD (policy ACCEPT) -num target prot opt source destination +num target prot opt source destination Chain OUTPUT (policy ACCEPT) -num target prot opt source destination +num target prot opt source destination ``` ##### Verify the rules are working @@ -164,4 +164,3 @@ Similarly, you can restore these rules: iptables-restore < /etc/pihole/rules.v4 ip6tables-restore < /etc/pihole/rules.v6 ``` ---- \ No newline at end of file