路由器hosts请教:
我改了路由器的hosts,
电脑上:能ping谷歌,Chrome能上谷歌。IE却连不上谷歌。
手机上:Chrome能上谷歌。QQ浏览器,手机自带浏览器无法上谷歌。
为什么,有知道的吗?
试了一下,用
google.com/ncr
即可访问谷歌。
路由器hosts
答案:2 悬赏:40 手机版
解决时间 2021-03-13 04:02
- 提问者网友:末路
- 2021-03-12 10:39
最佳答案
- 五星知识达人网友:归鹤鸣
- 2021-03-12 11:18
谷歌问题,不是网络问题
全部回答
- 1楼网友:低血压的长颈鹿
- 2021-03-12 12:40
1.首先在linux系统下设置静态的ip地址
vim /etc/network/interfaces #编辑网网卡配置文件
auto lo
iface lo inet loopback
auto eth0 #开机自动连接网络
iface eth0 inet static #static表示使用固定ip,dhcp表述使用动态ip
address 192.168.21.168 #设置ip地址
netmask 255.255.255.0 #设置子网掩码
gateway 192.168.21.2 #设置网关
ctrl+o #保存配置
ctrl+x #退出
2.在/etc/profile 加入脚本
vim /etc/profilegrep -v "hostname(指定的域名)" /etc/hosts > ~/hosts_temp
cat ~/hosts_temp > /etc/hosts
lc_all=c ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' |cut -d: -f2 | awk '{ print $1}' >> /etc/hosts
3.重启网络使设置生效
/etc/init.d/networking restart #重启网络
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯