英文:
Connect to ssh tunnel in host from podman container
问题
我希望容器通过主机上的SSH隧道访问远程服务器。
它应该类似于这个问题。但我正在使用Podman(MacOS),在ifconfig
中看不到任何Podman网络接口。我看到其他人有cni-podman0
,但看起来cni
在Podman版本4中已被弃用。
https://stackoverflow.com/questions/40782404/docker-connecting-to-host-tunnel-from-container
英文:
I would like the container to access the remote server with a ssh tunnel on host.
It should be similar to this question. But I am using podman (MacOS) and I don't see any podman network interface in ifconfig
. I see other people having cni-podman0
but it looks like cni
is deprecated in podman version 4.
https://stackoverflow.com/questions/40782404/docker-connecting-to-host-tunnel-from-container
答案1
得分: 0
我发现我可以从容器中使用 host.containers.internal
访问主机上的远程服务器,通过主机机器上的SSH隧道。
英文:
I found out that I can use host.containers.internal
from the container to access the remote server through the ssh tunnel on the host machine.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论