이 작업을 수행하려고 하는데 nslookup skhdphost1
다음 오류가 발생합니다. 명령을 사용하여 역방향 조회 검사를 다시 수행 하려고 하면 nslookup 172.16.xxx.xx
동일한 오류가 발생합니다.
오류 메시지는 다음과 같습니다.
[root@skhdphost1 ~]# nslookup 172.16.xxx.xx
Server: 8.8.8.8
Address: 8.8.8.8#53
** server can't find xxx.xxx.16.172.in-addr.arpa.: NXDOMAIN
[root@skhdphost1 ~]#
내 설정은 다음과 같습니다.
/etc/hosts
파일의 항목
172.16.xxx.xx skhdphost1.example.com skhdphost1
/etc/sysconfig/network
파일의 항목
NETWORKING=yes
#HOSTNAME=skhdphost1
HOSTNAME=skhdphost1.example.com
PEERDNS=no
GATEWAYDEV=eth5
GATEWAY=172.16.xxx.xxx
입력하다/etc/resolv.conf
nameserver 8.8.8.8
nameserver 172.16.xxx.xx
입력하다/etc/nsswitch.conf
[root@skhdphost1 ~]# vi /etc/nsswitch.conf
# 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.
#
# Valid entries include:
#
# 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
# db Use the local database (.db) files
# compat Use NIS on compat mode
# hesiod Use Hesiod for user lookups
# [NOTFOUND=return] Stop searching if not found so far
#
# To use db, put the "db" in front of "files" for entries you want to be
# looked up first in the databases
#
# Example:
#passwd: db files nisplus nis
#shadow: db files nisplus nis
#group: db files nisplus nis
passwd: files
shadow: files
group: files
#hosts: db files nisplus nis dns
hosts: files dns
# Example - obey only what nisplus tells us...
#services: nisplus [NOTFOUND=return] files
#networks: nisplus [NOTFOUND=return] files
#protocols: nisplus [NOTFOUND=return] files
#rpc: nisplus [NOTFOUND=return] files
#ethers: nisplus [NOTFOUND=return] files
#netmasks: nisplus [NOTFOUND=return] files
bootparams: nisplus [NOTFOUND=return] files
ethers: files
netmasks: files
networks: files
protocols: files
rpc: files
services: files
netgroup: nisplus
publickey: nisplus
automount: files nisplus
aliases: files nisplus
위 변경 후 네트워크를 다시 시작했지만 작동하지 않았습니다. 나에게 해결책을 제안해 주실 수 있나요?