发现群晖的 iptables filter 表的规则是下面这样的(删了不相关的 chain),按 archiwiki 来说,QUICKCONNECT_RELAY 最后一条 drop 后,后续的 rule 和 chain 都不会执行了,怎么一个群晖的 https 请求还能通过 QUICKCONNECT_RELAY 后继续执行 INPUT_FIREWALL ?
Chain INPUT (policy ACCEPT) target prot opt source destination QUICKCONNECT_RELAY all -- anywhere anywhere INPUT_FIREWALL all -- anywhere anywhere Chain INPUT_FIREWALL (1 references) target prot opt source destination ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED RETURN udp -- anywhere anywhere udp spt:41641 RETURN tcp -- anywhere anywhere multiport dports DSM-https,6690 RETURN udp -- anywhere anywhere udp dpt:41641 DROP all -- anywhere anywhere DROP all -- anywhere anywhere Chain QUICKCONNECT_RELAY (1 references) target prot opt source destination ACCEPT tcp -- anywhere anywhere tcp dpt:6690 ACCEPT tcp -- anywhere anywhere tcp dpt:DSM-https ACCEPT icmp -- anywhere anywhere DROP all -- anywhere anywhere 
