欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VMWare虚拟机配置固定IP

程序员文章站 2022-06-09 12:04:09
...

一、在菜单栏选择编辑→ 虚拟网络编辑器,打开虚拟网络编辑器对话框,选择Net网络连接方式,随意设置子网IP,点击NAT设置页面,查看子网掩码和网关,后面修改静态IP会用到。

二、进入虚拟机
vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE="eth0"
BOOTPROTO="static"
HWADDR="00:0C:29:F4:7E:C9"
IPV6INIT="yes"
NM_CONTROLLED="yes"
ONBOOT="yes"
TYPE="Ethernet"
UUID="2a76c2f8-cd47-44af-936d-11559b3a498d"
IPADDR="192.168.0.100"
NETMASK="255.255.255.0"
GATEWAY="192.168.0.1"

三、配置 DNS
vim /etc/resolv.conf
文件末尾添加

nameserver 114.114.114

四、查看防火墙状态并关闭

1.查看防火状态
# centos6的方法
systemctl status firewalld
# centos7的方法
service  iptables status

2:暂时关闭防火墙
systemctl stop firewalld
service  iptables stop

3:永久关闭防火墙
systemctl disable firewalld
chkconfig iptables off

4:重启防火墙
systemctl enable firewalld
service iptables restart  

5:永久关闭后重启
chkconfig iptables on 


五、重启网卡

systemctl restart network
service network restart

六、设置主机和IP绑定信息
vim /etc/hosts

七、设置主机名
vim /etc/hostname

相关标签: linux linux