一台主机多个IP

发布于 2024-10-02 17:48:43 字数 362 浏览 8 评论 0原文

我正在设置一个支持网格的集群。我计划为我的头节点分配 2 个 IP:一个用于本地连接(用于将作业分配到计算节点的 LAN),一个用于公共(用于用户访问的互联网)。所以,我的 /etc/hosts 文件看起来像这样:

111.111.111.111 myserver.whatever.com myserver #for public IP
11.11.11.11 myserver.whatever.com myserver #for local LAN
22.22.22.22 computenode01
33.33.33.33 computenode03

我在这里担心的是 myserver 的主机名会因为映射到两个 IP 而变得混乱吗?

I am setting up a grid-enabled cluster. I plan to assign 2 IP to my head node: one for local connection (LAN for distributing jobs to compute nodes) and one for public (internet for user access). So, my /etc/hosts file looks something like this:

111.111.111.111 myserver.whatever.com myserver #for public IP
11.11.11.11 myserver.whatever.com myserver #for local LAN
22.22.22.22 computenode01
33.33.33.33 computenode03

My concern here is will the hostname of myserver get messed up since it is mapped to two IPs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

阳光①夏 2024-10-09 17:48:43

我担心如果您想解析“myserver”地址,系统将始终选择第一个条目(111.111.111.111)。

I fear the system will always choose the first entry (111.111.111.111) if you want to resolve "myserver" address.

离笑几人歌 2024-10-09 17:48:43

正如我猜测的那样,它会简单地忽略第二个条目。为每个条目选择不同的主机名,例如myserver.localmyserver.remote

It will simply ignore the second entry, as I guess. Choose different hostnames for each entry, e.g. myserver.local and myserver.remote.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文