本文主要是介绍凝思虚拟机网络配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、输入验证码激活,不激活不能使用网络服务
2、启用网卡 ifconfig eth0 up
3、配置网络 vi /etc/network/interfaces,填写网卡eth0相关信息
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 10.1.104.210
netmask 255.255.0.0
gateway 10.1.1.1
pre-up ip addr flush dev $IFACE
4、配置外网地址
root@Linx:~# cat /etc/resolv.conf
nameserver 114.114.114.114
5、重启网络服务 /etc/init.d/networking restart
6、配置允许root远程登陆 vim /etc/ssh/sshd_config
这篇关于凝思虚拟机网络配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!