Lunix下设置域名的别名的操作步骤

1、设置别名

hostnamectl set-hostname alias

2、查看别名

hostname

这里是进行网络配置
3、编辑IP配置文件:查看ip: ifconfig

vi /etc/sysconfig/network-scripts/ifcfg-enp0s3(Vmware:ens33)  

在ifcfg-enp0s3中添加修改

BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.XX.XXX

4、保存并强制出

esc + :wq!

5、重启网络服务

systemctl() restart network
service firewalld status

6、防火墙设置(systemctl是用来查状态的)

systemctl status firewalld				//查看服务状态:firewalld为防火墙服务名称
systemctl start/stop firewalld				//关闭服务:同上
systemclt enable/disable firewsystalld				//禁用服务: 同上

7、windows下(cmd)DOS窗口ping虚拟机下配置的IP

ping 192.168.XX.XXX

注:cat /etc/sysconfig/network-scripts/ifcfg-enp0s3 //cat 查看

你可能感兴趣的:(虚拟机)