Linux虚拟机连接网络

北城以北 提交于 2020-03-28 20:57:55

概述

Vmware提供了桥接模式(B)、NAT模式、仅主机模式 三种网络连接方式。桥接模式对外提供了直接访问的能力,也常用于有网卡的服务器电脑。NAT模式提供了和主机一致的联网方式(与局域网上网非常类似,主机就是提供上网的路由器)。仅主机模式仅提供了局域网互联的功能,不提供访问互联网的功能。

虚拟机为Windows时,NAT模式下可以直接连接外网(不得不感慨微软的强大)。虚拟机为Linux时,就需要手工配置网络信息。

 

Linux下配置网络

打开路径 /etc/network/interface (如果没有编辑权限,请使用sudo root vi 打开,或者修改文件的读写权限)。输入以下内容,重启电脑后,即可启用网络。

 1 #this file describes the network interface available on your system
 2 #and how to activate them. For more infomation,see interfaces(5)
 3 
 4 source /etc/network/interfaces.d/*
 5 
 6 #the loopback network interface
 7 auto lo
 8 iface lo inet loopback
 9 
10 #NAT
11 auto eth0
12 iface eth0 inet static
13 address 192.168.119.150
14 netmask 255.255.255.0
15 gateway 192.168.119.1
16 
17 #Host only
18 #auto eth0
19 #iface eth0 inet static
20 #address 192.168.187.150
21 #netmask 255.255.255.0
22 #gateway 192.168.187.1

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!