配置Linux主機名
阿新 • • 發佈:2021-08-07
為了方便區分區域網中的多個Linux主機,可以為每臺機器設定主機名,本文介紹hostname配置方法。
目錄1. 配置Linux hostname
下面配置兩臺centos7 虛擬機器,主機名分別配置為client和server,它們主機IP 地址分別為192.168.30.8和192.168.30.9。
配置client主機
[root@client ~]# vi /etc/sysconfig/network
新增如下內容,儲存:
# Created by anaconda
NETWORKING=yes
hostname=client
重啟網路:
[root@client ~]# systemctl restart network
[root@client ~]# hostname
client
[root@client ~]#
如果不生效可以使用如下命令:
[root@client ~]# hostnamectl set-hostname client
配置server主機
[root@server ~]# hostnamectl set-hostname server
重啟網路:
[root@server ~]# systemctl restart network [root@server ~]# hostname server [root@server ~]# uname -n server
2. 配置hostname與IP對映
配置client和server的hosts檔案
vi /etc/hosts
新增如下內容:
192.168.30.8 client
192.168.30.9 server
3. 測試
通過ping hostname來測試是否配置成功:
client ping server:
[root@client ~]# ping server -c 3 PING server (192.168.30.9) 56(84) bytes of data. 64 bytes from server (192.168.30.9): icmp_seq=1 ttl=64 time=0.616 ms 64 bytes from server (192.168.30.9): icmp_seq=2 ttl=64 time=0.384 ms 64 bytes from server (192.168.30.9): icmp_seq=3 ttl=64 time=0.566 ms --- server ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2001ms rtt min/avg/max/mdev = 0.384/0.522/0.616/0.099 ms [root@client ~]#
server ping client:
[root@Server ~]# ping client -c 3
PING client (192.168.30.8) 56(84) bytes of data.
64 bytes from client (192.168.30.8): icmp_seq=1 ttl=64 time=0.502 ms
64 bytes from client (192.168.30.8): icmp_seq=2 ttl=64 time=0.678 ms
64 bytes from client (192.168.30.8): icmp_seq=3 ttl=64 time=0.323 ms
--- client ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2003ms
rtt min/avg/max/mdev = 0.323/0.501/0.678/0.144 ms
[root@Server ~]#
配置hostname與IP對映後,可以直接ping主機名而不用ping IP地址了。
4. 配置windows hosts
配置windows hosts,以便在windows下面能通過主機名進行訪問。
編輯 C:\Windows\System32\drivers\etc\hosts檔案,新增如下內容:
192.168.30.8 client
192.168.30.9 server
儲存
5. windows測試
C:\Users\10287>ping client -n 3
正在 Ping client [192.168.30.8] 具有 32 位元組的資料:
來自 192.168.30.8 的回覆: 位元組=32 時間<1ms TTL=64
來自 192.168.30.8 的回覆: 位元組=32 時間<1ms TTL=64
來自 192.168.30.8 的回覆: 位元組=32 時間<1ms TTL=64
192.168.30.8 的 Ping 統計資訊:
資料包: 已傳送 = 3,已接收 = 3,丟失 = 0 (0% 丟失),
往返行程的估計時間(以毫秒為單位):
最短 = 0ms,最長 = 0ms,平均 = 0ms
歡迎關注公眾號:「測試開發小記」及時接收最新技術文章!