virtualbox创建centos7虚拟机网络设置

https://www.cnblogs.com/hihtml5/p/8217062.html

https://www.jianshu.com/p/e84c19effeea?from=singlemessage

我宿主机用的wifi

所以NAT+host-only

先按照第二个链接操作一下virtualbox的偏好设置-网络

1.vi /etc/selinux/config

   selinux=disabled

2.systemctl stop firewalld

   systemctl status firewalld

   systemctl disable firewalld

3.默认网卡1是网络地址转换(NAT)

  增加网卡2选择host-only

4.重启后,ifconfig就可以看到地址了

这样虚拟机内可以上网,宿主机又可以ping通虚拟机

5.配置静态IP

  cd /etc/sysconfig/network-scripts

  cp ifcfg-enp0s3 ifcfg-enp0s8

  vi  ifcfg-enp0s8

  

BOOTPROTO="static" # 使用静态IP地址,默认为dhcp 
IPADDR="192.168.56.101" # 设置的静态IP地址 NETMASK="255.255.255.0" # 子网掩码 GATEWAY="192.168.56.101" #
ONBOOT=yes #设置网卡启动方式为 开机启动 并且可以通过系统服务管理器 systemctl 控制网卡


posted on 2020-10-27 17:29  roger888  阅读(155)  评论(0编辑  收藏  举报

导航