Kreker Asked: 2012-05-17 00:29:05 +0800 CST2012-05-17 00:29:05 +0800 CST 2012-05-17 00:29:05 +0800 CST 无法通过主机名 ping Ubuntu 服务器 772 我知道这已经被问到了,但我找不到明确的答案。我在我的局域网中放置了一个新的 Ubuntu 服务器,但我无法 ping 它,但主机名。我不想编辑我所有的 LAN Windows 主机文件(+40 个)并添加条目。也许我有另一个 Ubuntu 服务器,我可以通过主机名 ping 它而不做任何更改。 所有服务器和客户端都使用另一个基于旧 redhat 安装的内部 DNS 服务器。 我无法ping通的服务器中的主机名已设置。我必须做什么/检查什么? ping hostname 4 个回答 Voted Best Answer James Yale 2012-05-17T01:25:38+08:002012-05-17T01:25:38+08:00 您有两个选项,您可以选择其中一个或同时执行两个选项: 安装 Samba (apt-get install samba) 并激活 nmbd 组件,这将使 Ubuntu 服务器响应来自 Windows 客户端的广播 NetBIOS 名称请求,而无需进一步配置。 向您的 DNS 服务器添加一条记录。您提到 DNS 服务器是 RedHat EL 4,因此很可能运行 ISC Bind。配置已在/etc/named此处且 RedHat 兼容手册仍然可用:http ://www.centos.org/docs/4/html/rhel-rg-en-4/ch-bind.html 编辑:第二个更好,你不应该依赖 NetBIOS 为你做名称解析。 boburob 2012-05-17T00:52:14+08:002012-05-17T00:52:14+08:00 在 Ubuntu 机器的正向查找区域中的域控制器上添加一个 DNS 条目,这是我通常做的。 Sašo 2012-05-17T00:38:16+08:002012-05-17T00:38:16+08:00 hostname.local 应该可以,如果不行,请参考Ubuntu Zeroconf 指南。 mircea 2016-09-14T11:53:23+08:002016-09-14T11:53:23+08:00 看到这个答案:https ://askubuntu.com/a/516533 sudo apt-get install winbind sudo apt-get install libnss-winbind sudo gedit /etc/nsswitch.conf and append "wins" after "files" hosts: files wins mdns4_minimal [NOTFOUND=return] dns ping WinComputer应该在你的 ubuntu 机器上工作。 从 WinComputer 你应该能够ping UbuntuComp
您有两个选项,您可以选择其中一个或同时执行两个选项:
安装 Samba (apt-get install samba) 并激活 nmbd 组件,这将使 Ubuntu 服务器响应来自 Windows 客户端的广播 NetBIOS 名称请求,而无需进一步配置。
向您的 DNS 服务器添加一条记录。您提到 DNS 服务器是 RedHat EL 4,因此很可能运行 ISC Bind。配置已在
/etc/named
此处且 RedHat 兼容手册仍然可用:http ://www.centos.org/docs/4/html/rhel-rg-en-4/ch-bind.html编辑:第二个更好,你不应该依赖 NetBIOS 为你做名称解析。
在 Ubuntu 机器的正向查找区域中的域控制器上添加一个 DNS 条目,这是我通常做的。
hostname.local 应该可以,如果不行,请参考Ubuntu Zeroconf 指南。
看到这个答案:https ://askubuntu.com/a/516533
sudo apt-get install winbind
sudo apt-get install libnss-winbind
sudo gedit /etc/nsswitch.conf and append "wins" after "files"
hosts: files wins mdns4_minimal [NOTFOUND=return] dns
ping WinComputer
应该在你的 ubuntu 机器上工作。从 WinComputer 你应该能够
ping UbuntuComp