欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

虚拟机实现静态IP登录和无线上网

程序员文章站 2022-12-06 21:19:10
环境:笔记本 + 家用wifi + 公司wifi + vmware + centos6.8 + xshell 问题描述:初学linux时,用笔记本装了虚拟机(单网卡),想...

环境:笔记本 + 家用wifi + 公司wifi + vmware + centos6.8 + xshell

问题描述:初学linux时,用笔记本装了虚拟机(单网卡),想实现linux在家和公司都能够无线连网,但又不想上网地点变动之后每次手动输入ip登录xshell。

解决思路:增加一块网卡(eth1),设置eth1为vmnet1(仅主机模式host-only)用于xshell登录,原来的网卡eth0为vmnet8(nat模式)

实现方法:

打开vm的“虚拟网络编辑器”,查看vmnet1子网地址,手动更改为11.11.11.0

启动linux,用root登录。

修改eth0配置文件

# vim /etc/sysconfig/network-scripts/ifcfg-eth0
 
device=eth0
hwaddr=00:0c:29:97:06:bc
type=ethernet
uuid=24e72ebf-5682-4a8f-87a4-6b53b39a5e0b
onboot=yes #开机启用网卡
nm_controlled=yes
bootproto=dhcp #确保启用dhcp服务来自动获取ip 

修改eth1配置文件

# vim /etc/sysconfig/network-scripts/ifcfg-eth1

device=eth1 #注意hwaddr(mac地址)和uuid(通用唯一识别码universally unique identifier)不能与其他网卡重复
type=ethernet
onboot=yes
nm_controlled=yes
bootproto=static #静态ip用于xshell远程登录
ipaddr=11.11.11.68 #vmnet1的子网是30段
netmask=255.255.255.0 
#gateway=11.11.11.1 我的错误点:网卡eth1不能加网关

配置完成后重启网络服务,检查连网情况

#service network restart

#ping www.qq.com

ping通证明可以连接外网,此方案可行。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。