VMware虚拟机连接网络
程序员文章站
2022-05-10 13:09:06
...
linux
直接打开虚拟机设置
将网络适配器改为NAT模式,然后确认。
BOOTPROTO=dhcp
网卡获取IP方式为dhcp,若为static,则在修改后重启服务。
[root@linus ~]# systemctl restart network
再次查看ip地址,获得的就是dhcp自动获取的IP地址
[root@linus ~]# ifconfig ens33
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.125.128 netmask 255.255.255.0 broadcast 192.168.125.255
inet6 fe80::f57d:1893:a2d4:f779 prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:78:27:b4 txqueuelen 1000 (Ethernet)
RX packets 1385 bytes 144550 (141.1 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 895 bytes 126963 (123.9 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
检查网络连通性
[root@linus ~]# ping -c 3 www.baidu.com
PING www.a.shifen.com (39.156.66.14) 56(84) bytes of data.
64 bytes from 39.156.66.14 (39.156.66.14): icmp_seq=1 ttl=128 time=21.6 ms
64 bytes from 39.156.66.14 (39.156.66.14): icmp_seq=2 ttl=128 time=22.1 ms
64 bytes from 39.156.66.14 (39.156.66.14): icmp_seq=3 ttl=128 time=22.5 ms
--- www.a.shifen.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2003ms
rtt min/avg/max/mdev = 21.674/22.123/22.535/0.372 ms
windwos
老样子
将网卡地址获取方式改为dhcp自动获取
测试连通性
C:\Users\hauwei>ping www.baidu.com
正在 Ping www.a.shifen.com [39.156.66.18] 具有 32 字节的数据:
来自 39.156.66.18 的回复: 字节=32 时间=23ms TTL=128
来自 39.156.66.18 的回复: 字节=32 时间=23ms TTL=128
来自 39.156.66.18 的回复: 字节=32 时间=22ms TTL=128
来自 39.156.66.18 的回复: 字节=32 时间=22ms TTL=128
39.156.66.18 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
往返行程的估计时间(以毫秒为单位):
最短 = 22ms,最长 = 23ms,平均 = 22ms