Mac 配置 VMware 的 CentOS 网络 (NAT 模式)
Mac set VMware’s CentOS Network (NAT Mode)
因为每次都要去网上找教程 (), 所以记录一下自己的配置过程
-
VMware 默认配置就为 NAT 模式
NAT 模式 -
关闭防火墙
# 关闭 > systemctl stop firewalld # 禁用 > systemctl disable firewalld # 查看状态 > systemctl status firewalld
-
禁用 selinux
# 将 SELINUX 设置为 `disabled` > vi /etc/selinux/config
禁用 selinux安全增强型 Linux(Security-Enhanced Linux)简称 SELinux, 它是一个 Linux 内核模块, 也是 Linux 的一个安全子系统.
-
获取 mac vmnet8 的 gateway 地址
> cat /Library/Preferences/VMware\ Fusion/vmnet8/nat.conf
找到
# NAT gateway address
一行, 然后记下ip
和netmask
-
修改虚拟机中的网卡配置
> vi /etc/sysconfig/network-scripts/ifcfg-ens33
ifcfg-ens33上图红框为修改内容, 绿框为新增内容
BOOTPROTO=static ONBOOT=yes IPADDR=172.16.143.101 GATEWAY=172.16.143.2 NETMASK=255.255.255.0 DNS1=114.114.114.114 DNS2=8.8.8.8 # 其中 GATEWAY 为第 4 步中的 ip, NETMASK 为第 4 步 中的 netmask
-
重启虚拟机网卡
> systemctl restart network
-
ping
一下外网就可以啦!> ping www.baidu.com
-
修改主机名
> vi /etc/hostname # 将其中内容删除, 改为: `buli_server1` > vi /etc/hosts
/etc/hosts -
重启
> reboot -f