gpt4 book ai didi

linux - 允许使用 iptables 进行重定向

转载 作者:太空宇宙 更新时间:2023-11-04 05:05:19 24 4
gpt4 key购买 nike

使用以下规则,php无法生成redirect到另一个文件。当它到达header("Content-type: video/x-flv");
header("Location:" . $VIDEO);
时它就卡住了或者可能是get_headers();在我的 php 脚本上。

我的iptables:

 iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:22151
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere tcp dpt:webcache
ACCEPT tcp -- anywhere anywhere tcp spt:webcache
ACCEPT tcp -- anywhere anywhere tcp spt:http
DROP all -- anywhere anywhere

Chain FORWARD (policy ACCEPT)
target prot opt source destination

Chain OUTPUT (policy ACCEPT)
target prot opt source destination

我尝试过的

iptables -A INPUT -p ICMP --icmp-type 8 -j ACCEPT

一旦我删除DROP all -- anywhere anywhere一切正常。

最佳答案

当您使用 get_headers() 时,您的脚本会建立传出 HTTP 连接。您需要通过允许已建立 session 来允许回复流量返回。

sudo iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT

参见here了解更多信息

关于linux - 允许使用 iptables 进行重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15936069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com