一台主机多个IP
我正在设置一个支持网格的集群。我计划为我的头节点分配 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我担心如果您想解析“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.
正如我猜测的那样,它会简单地忽略第二个条目。为每个条目选择不同的主机名,例如
myserver.local
和myserver.remote
。It will simply ignore the second entry, as I guess. Choose different hostnames for each entry, e.g.
myserver.local
andmyserver.remote
.