停靠的烧瓶/waitress.serve 在本地网络中不可见
docked flask / waitress.serve not visible in local network
我的服务器 运行 在 docker 下,使用命令 serve(app, listen='*:5000')
.
启动它
我可以:
- 在
127.0.0.1:5000
和 localhost:5000
下的容器中访问它
- 从
localhost:5000
下的容器外部访问它
我不能:
- 从“127.0.0.1:5000”下的外部容器访问它
- 使用本地 ip 从本地网络访问它(这对我来说最重要)
我试图将本地地址传递给服务命令,但它抛出错误,指出无法访问该地址。也尝试了host='0.0.0.0'
。没有帮助。
有人知道如何让它在我的机器外可见吗?
如果您还没有这样做,请尝试公开端口 5000。
这可以通过添加
来完成
EXPOSE 5000
添加到您的 Dockerfile。您还需要在服务器中设置 host='0.0.0.0' 才能从本地网络访问您的页面。
好的,所以我找到了一个似乎可以解决问题的解决方案。问题是wsl。
在 github wsl repo 有一个设置桥梁的脚本。
下面是我 post 的代码,因此它不会消失。
感谢 edwindijas
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';
if( $found ){
$remoteport = $matches[0];
} else{
echo "The Script Exited, the ip address of WSL 2 cannot be found";
exit;
}
#[Ports]
#All the ports you want to forward separated by coma
$ports=@(80,443,10000,3000,5000);
#[Static ip]
#You can change the addr to your ip config to listen to a specific address
$addr='0.0.0.0';
$ports_a = $ports -join ",";
#Remove Firewall Exception Rules
iex "Remove-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' ";
#adding Exception Rules for inbound and outbound Rules
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Outbound -LocalPort $ports_a -Action Allow -Protocol TCP";
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Inbound -LocalPort $ports_a -Action Allow -Protocol TCP";
for( $i = 0; $i -lt $ports.length; $i++ ){
$port = $ports[$i];
iex "netsh interface portproxy delete v4tov4 listenport=$port listenaddress=$addr";
iex "netsh interface portproxy add v4tov4 listenport=$port listenaddress=$addr connectport=$port connectaddress=$remoteport";
}
我的服务器 运行 在 docker 下,使用命令 serve(app, listen='*:5000')
.
我可以:
- 在
127.0.0.1:5000
和localhost:5000
下的容器中访问它
- 从
localhost:5000
下的容器外部访问它
我不能:
- 从“127.0.0.1:5000”下的外部容器访问它
- 使用本地 ip 从本地网络访问它(这对我来说最重要)
我试图将本地地址传递给服务命令,但它抛出错误,指出无法访问该地址。也尝试了host='0.0.0.0'
。没有帮助。
有人知道如何让它在我的机器外可见吗?
如果您还没有这样做,请尝试公开端口 5000。
这可以通过添加
来完成EXPOSE 5000
添加到您的 Dockerfile。您还需要在服务器中设置 host='0.0.0.0' 才能从本地网络访问您的页面。
好的,所以我找到了一个似乎可以解决问题的解决方案。问题是wsl。 在 github wsl repo 有一个设置桥梁的脚本。 下面是我 post 的代码,因此它不会消失。 感谢 edwindijas
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';
if( $found ){
$remoteport = $matches[0];
} else{
echo "The Script Exited, the ip address of WSL 2 cannot be found";
exit;
}
#[Ports]
#All the ports you want to forward separated by coma
$ports=@(80,443,10000,3000,5000);
#[Static ip]
#You can change the addr to your ip config to listen to a specific address
$addr='0.0.0.0';
$ports_a = $ports -join ",";
#Remove Firewall Exception Rules
iex "Remove-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' ";
#adding Exception Rules for inbound and outbound Rules
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Outbound -LocalPort $ports_a -Action Allow -Protocol TCP";
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Inbound -LocalPort $ports_a -Action Allow -Protocol TCP";
for( $i = 0; $i -lt $ports.length; $i++ ){
$port = $ports[$i];
iex "netsh interface portproxy delete v4tov4 listenport=$port listenaddress=$addr";
iex "netsh interface portproxy add v4tov4 listenport=$port listenaddress=$addr connectport=$port connectaddress=$remoteport";
}