Linux设置主机名与hosts映射
目的
方便操作,便于建立Linux集群。
设置主机名
- 查看主机名:
hostname
- 设置主机名,修改/etc/hosts:
vim /etc/hostname
通过主机名ping通
原理
通过hosts文件,建立主机名与IP地址间的映射。
Windows ping Linux
- 查看Linux的IP地址:在Linux终端输入
ifconfig
- 修改window的hosts文件
- 进入 C:\Windows\System32\drivers\etc\hosts
- 添加一行 “IP地址 主机名”
- 检查,在windows终端输入
ping 主机名
,查看是否ping通
Linux ping windows
- 查看windows的IP地址:在windows终端输入
ipconfig
【与Linux的指令不同】
- 修改Linux的hosts文件
- 进入/etc/hosts文件:
vim /etc/hosts
- 添加一行 “IP地址 主机名”
- 进入/etc/hosts文件:
- 检查,在Linux终端输入
ping 主机名
,查看是否ping通