CentOS 서버에 nslookup을 설치할 수 없습니다.

CentOS 서버에 nslookup을 설치할 수 없습니다.

nslookupCentOS 7.2에 설치할 수 없습니다 .

yum install nslookup
[root@localhost network-scripts]# yum install -y nslookup
added plugin:fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.sunnyvision.com
 * epel: my.mirrors.thegigabit.com
 * extras: mirror.sunnyvision.com
 * updates: mirrors.icidc.com
No available nslookup

답변1

nslookupbind-utils패키지 에 포함되어 있습니다 .

설치하려면 다음 명령을 사용해야 합니다.

# yum install bind-utils

답변2

다음을 사용하여 어떤 패키지가 이를 제공하는지 확인할 수 있습니다 yum whatprovides nslookup.

~$ yum whatprovides nslookup
Loaded plugins: fastestmirror
Determining fastest mirrors
.
.
32:bind-utils-9.11.4-9.P2.el7.x86_64 : Utilities for querying DNS name servers
Repo        : base
Matched from:
Filename    : /usr/bin/nslookup



32:bind-utils-9.9.4-74.el7_6.2.x86_64 : Utilities for querying DNS name servers
Repo        : @updates
Matched from:
Filename    : /usr/bin/nslookup

그런 다음 yum을 사용하여 패키지를 설치할 수 있습니다yum install bind-utils

관련 정보