1
0

apply incoming-allowed-ip[46] rules to input as well as forward pkts

this makes it possible to open ports on the router itself
This commit is contained in:
Daniel Barlow 2024-10-10 18:18:23 +01:00
parent e383f1b3d3
commit 5112eab4da

View File

@ -90,7 +90,7 @@ in {
# accept inbound from the WAN
(if allow-incoming
then accept "oifname \"int\" iifname \"ppp0\""
else "oifname \"int\" iifname \"ppp0\" jump incoming-allowed-ip6"
else "iifname \"ppp0\" jump incoming-allowed-ip6"
)
# allow all outbound and any inbound that's part of a
# recognised (outbound-initiated) flow
@ -210,7 +210,7 @@ in {
"icmp type { echo-request, echo-reply } accept"
"iifname int jump input-ip4-lan"
"iifname ppp0 jump input-ip4-wan"
"oifname \"int\" iifname \"ppp0\" jump incoming-allowed-ip4"
"iifname ppp0 jump incoming-allowed-ip4"
"ct state established,related accept"
"log prefix \"DENIED CHAIN=input-ip4 \""
];