问题:
centos7 虚拟机不能访问外网
[root@localhost ~]# curl www.baidu.com curl: (6) Could not resolve host: www.baidu.com; 未知的错误
(推荐教程:centos使用教程)
解决方法:
[root@localhost ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 192.168.1.1 0.0.0.0 UG 100 0 0 ens192 192.168.1.0 0.0.0.0 255.255.255.0 U 100 0 0 ens192 192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
然后编辑resolv.conf文件,添加内容如下:
[root@localhost ~]# vim /etc/resolv.conf
# Generated by NetworkManager nameserver 218.30.19.50 nameserver 8.8.8.8 ~ ~
添加路由:
[root@localhost ~]# route add default gw 192.168.1.1
再测是否可以访问百度
[root@localhost ~]# curl www.baidu.com nbsp;html> <!--STATUS OK--> <meta><meta><meta><link><title>百度一下,你就知道</title> <div> <div> <div> <div> <div> <div> @@##@@ </div> <form> <input> <input> <input> <input> <input> <input><span><input></span><span><input></span> </form> </div> </div> <div> <a>新闻</a> <a>hao123</a> <a>地图</a> <a>视频</a> <a>贴吧</a> <noscript> <a>登录</a> </noscript> <script>document.write('<a href="http://www.baidu.com/bdorz/login.gif?login&tpl=mn&u='+ encodeURIComponent(window.location.href+ (window.location.search === "" ? "?" : "&")+ "bdorz_come=1")+ '" name="tj_login" class="lb">登录');</script> <a>更多产品</a> </div> </div> </div> <div> <div> <p> <a>关于百度</a> <a>About Baidu</a> </p> <p>©2017 Baidu <a></a>使用百度前必读 <a>意见反馈</a> 京ICP证030173号 @@##@@ </p> </div> </div> </div>
OK,可以正常访问了。
相关视频教程推荐:centos使用教程
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
相关推荐