temporary failure in name resolution: illegal seek-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3503204
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: linux

2010-05-25 09:13:20

telnet 时报错:

temporary failure in name resolution: illegal seek

1、提供正确的dns服务器
正是因为我把虚拟机的网卡设置为bridged模式,该网卡通过dhcp获取了正确的dns服务器:
引用
# cat /etc/resolv.conf
; generated by /sbin/dhclient-script
nameserver 218.85.157.99
nameserver 202.101.110.55

如果您也配置了正确的dns服务器的话,那就不会出现上面的报错信息了。

2、设定指定的客户主机和ip
出现该错误,可以说也是一种安全限制吧。使用telnet访问服务端的客户端需要在服务器上有主机名和ip对应信息。既然这样,如果你没有配置dns服务器,那只要把要访问telnet的客户端的ip和主机名加到/etc/hosts文件中,例如:
引用
# cat /etc/hosts
192.168.48.1 test

这样,该客户端ip为192.168.48.1的机器就可以通过telnet访问服务器了。

3、修改nis设定文件
若有大量的客户端需要访问服务器,第二种方法就很麻烦了。这时,只要修改/etc/nsswitch.conf文件,找:
引用
#hosts:     db files nisplus nis dns
hosts:      files dns

修改为:
引用
#hosts:     db files nisplus nis dns
hosts:      files

保存后,就再也不会出现开头的错误了。
※ 注意,该修改会导致在/etc/resolv.conf中设置的dns失效。请根据实际情况选择上述其中一个方法。
阅读(7625) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图