ubuntu14.04 配置网络的练习
本文参考的资料:
https://blog.csdn.net/liu782726344/article/details/52912797。
感谢作者的分享!
sudo vim /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
# The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 #iface eth0 inet dhcp iface eth0 inet static address 静态IP地址 netmask 255.255.255.0 gateway 默认网关 dns-nameservers DNS1 DNS2
其中的静态IP地址、默认网关、DNS1、DNS2,请根据本地电脑的配置,进行相应配置。
然后关机,设置网络的连接方式为【桥接网卡】,启动ubuntu。
查看ip地址,发现ip地址为刚才配置的ip信息,ping一个网址,有数据响应,表示可以上网了。
总结:
ubuntu 14.04 的网络配置文件位置:/etc/network/interface。
ubuntu 14.04 的重启网络的命令是:sudo /etc/init.d/networking restart。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。