临时配置IP地址
使用以下命令进入root模式下
sudo-i |
---|
查看此时ip地址多少
ifconfig |
---|
配置临时IP,使用桥接网络请根据主机ip地址更改
ifconfig eth0 192.168.1.10 |
---|
配置默认路由,这里也就是网关
route add default gw 192.168.1.1 |
---|
此时如果出现网络不可达,我们需要进入配置文件,按i插入以下两行命令按下esc后输入:wq保存退出 重启虚拟机即可解决
vim /etc/network/interfaces |
---|
i 插入文件 |
auto eth0 |
iface eth0 dhcp |
ESC (键盘左上角) |
:wq |
重启电脑以后需要再次重复IP 配置 跟配置默认路由
ifconfig eth0 192.168.1.10 |
---|
route add default gw 192.168.1.1 |
配置DNS服务器
echo nameserver 114.114.114.114 > etc/resolv.conf |
---|
此时临时IP配置完毕