虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)

虚拟机联网:

物理机先联网

  1. 直接使用桥接的网络适配器   通过获取ip   可以直接联网

注意   如果是新的主机   就不需要下面两台命令  

这两台命令   只用于配置了ip    需要重新获取ip

[root@localhost ~]# nmcli connection delete ens33

成功删除连接 'ens33'(cef656fd-0651-4534-8522-575e1ae4b7a1)。

[root@localhost ~]# nmcli connection add type ethernet ifname ens33 con-name ens33

连接“ens33”(e2fed819-1796-41ca-853e-4ae5dd1c67fc) 已成功添加。

虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第1张图片

 [root@localhost ~]# dhclient -d

虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第2张图片

 

[root@localhost ~]# ping www.baidu.com

PING www.a.shifen.com (39.156.66.18) 56(84) bytes of data.

64 bytes from 39.156.66.18 (39.156.66.18): icmp_seq=1 ttl=53 time=145 ms

连接不同的网络    ip会变化

  1. NAT模式的联网

自己配置一个ip     ip不会变化

[root@localhost ~]# nmcli connection modify ens33 ipv4.addresses 192.168.2.70/24

[root@localhost ~]# nmcli connection modify ens33 ipv4.gateway 192.168.2.1

[root@localhost ~]# nmcli connection modify ens33 ipv4.method manual

[root@localhost ~]# systemctl restart network

虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第3张图片

 虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第4张图片

 虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第5张图片

 虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第6张图片

 虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第7张图片

 虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第8张图片

 

点两次确定

更改物理机上的配置

虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第9张图片

虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第10张图片

右键  属性

 虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第11张图片

 虚拟机联网(适用于Centos7.3 Centos7.9 Centos8.0)_第12张图片

 

[root@localhost ~]# vim /etc/resolv.conf

nameserver 114.114.114.114

[root@localhost ~]# ping www.baidu.com

PING www.wshifen.com (104.193.88.77) 56(84) bytes of data.

 64 bytes from 104.193.88.77 (104.193.88.77): icmp_seq=1 ttl=128 time=215 ms

你可能感兴趣的:(python,云计算,开发语言)