- 用户 A 在主机 Ubuntu 机器上运行一个 http 服务器,其 IP 为“HostIP”,端口为 8081。
- 现在用户 A 创建了一个非特权 lxc 容器(container1)
- 用户 A 登录
lxc-attach -n container1
。 - 现在 container1 中的 root 用户进行了类似call 的
http://HostIP:8081/api
调用
我的问题是这个呼叫是直接还是通过局域网路由到主机。基本上,如果 http 服务器托管在主机上,需要进行哪些配置更改以避免局域网流量。
我们的 LXC 网络配置是:
lxc.network.type = veth
lxc.network.link = lxcbr0
lxc.network.flags = up
lxc.network.hwaddr = 00:16:3e:30:d2:42
所有容器都在主机 Ubuntu 内运行。