web-dev-qa-db-ja.com

suse11sp3-自分のホスト名をping /解決できません

suse Enterprise 11 sp3をインストールしたローカル仮想マシン(ローカルにインストールされたvmwareワークステーションで実行され、ネットワークがNATに設定されている)があります。

マシンは(vmwareから)dhcpを使用してIPアドレスを取得するように設定されており、これは機能します-少なくとも私はインターネットに接続できます。

問題は、それ自体のホスト名を解決できないことです。

suse11:~ # hostname
suse11
suse11:~ # ping suse11
ping: unknown Host suse11
suse11:~ # ping www.google.com
PING www.google.com (74.125.131.99) 56(84) bytes of data.

ホスト名を/ etc/hostsに127.0.0.1として追加したくありません。理想的には、Windowsと同じように動作させたいです。自分のホスト名にpingを実行すると、「実際の」IPアドレス(おそらく多くのIPアドレスの1つ)に解決されます。

/etc/resolve.conf:

### /etc/resolv.conf file autogenerated by netconfig!
#
# Before you change this file manually, consider to define the
# static DNS configuration using the following variables in the
# /etc/sysconfig/network/config file:
#     NETCONFIG_DNS_STATIC_SEARCHLIST
#     NETCONFIG_DNS_STATIC_SERVERS
#     NETCONFIG_DNS_FORWARDER
# or disable DNS configuration updates via netconfig by setting:
#     NETCONFIG_DNS_POLICY=''
#
# See also the netconfig(8) manual page and other documentation.
#
# Note: Manual change of this file disables netconfig too, but
# may get lost when this file contains comments or empty lines
# only, the netconfig settings are same with settings in this
# file and in case of a "netconfig update -f" call.
#
### Please remove (at least) this line when you modify the file!
search localdomain
nameserver 192.168.19.2

/etc/nsswitch.conf:

#
# /etc/nsswitch.conf
#
# An example Name Service Switch config file. This file should be
# sorted with the most-used services at the beginning.
#
# The entry '[NOTFOUND=return]' means that the search for an
# entry should stop if the search in the previous entry turned
# up nothing. Note that if the search failed due to some other reason
# (like no NIS server responding) then the search continues with the
# next entry.
#
# Legal entries are:
#
#       compat                  Use compatibility setup
#       nisplus                 Use NIS+ (NIS version 3)
#       nis                     Use NIS (NIS version 2), also called YP
#       dns                     Use DNS (Domain Name Service)
#       files                   Use the local files
#       [NOTFOUND=return]       Stop searching if not found so far
#
# For more information, please read the nsswitch.conf.5 manual page.
#

# passwd: files nis
# shadow: files nis
# group:  files nis

passwd: compat
group:  compat

hosts:      files dns
networks:   files dns

services:   files
protocols:  files
rpc:        files
ethers:     files
netmasks:   files
netgroup:   files nis
publickey:  files

bootparams: files
automount:  files nis
aliases:    files
1
radai

動作は予想どおりであり、ネームサーバーはドメインネームスペースに従ってホスト名を解決します。/etc/hostsの動作とは何の関係もありません。

次のように考えてください。

Ping suse11を実行すると、suse11が存在しないため、最初に/ etc/hostsを使用して解決を試み、次にネームサーバー192.168.19.2を使用しようとしますが、/ etc /resolv.confの「searchlocaldomain」に注意してください。 「query」に対して、192.168.19.2はsuse11.localdomainを解決しようとします。そのようなドメインは、パブリックネームスペースに存在しません。

pingは、ホストの解決をテストするためのツールではなく、そのためのものではありません。

本当にDNSルックアップツールを使用すると、よりよく表示されます。

掘る@ 192.168.19.2 suse11

HTH

1
sebelk

Windowsドメインに参加すると、PDCに統合されたdhcpサービスがWindowsDNSサービスに1つのDNSAレコードを追加します。そのため、WindowsドメインネットワークでWindowsPCを解決します。

0
c4f4t0r