Chinaunix首页 | 论坛 | 博客
  • 博客访问: 134410
  • 博文数量: 51
  • 博客积分: 2500
  • 博客等级: 少校
  • 技术积分: 540
  • 用 户 组: 普通用户
  • 注册时间: 2007-07-21 12:33
文章分类

全部博文(51)

文章存档

2011年(1)

2010年(5)

2009年(1)

2008年(12)

2007年(32)

我的朋友

分类: LINUX

2007-07-21 15:21:41

1. why we can not login in remote linux server using telnet?

When we login a server using telnet, there's a daemon process run named telnetd. The number of daemon process depends on the xinetd.conf, because telnetd all depend on xinetd(for Debian variant will be inetd).

cat /etc/xinetd.conf

# # Simple configuration file for xinetd

# # Some defaults, and include /etc/xinetd.d/

defaults {

instances = 60

log_type = SYSLOG

authpriv

log_on_success = HOST PID

log_on_failure = HOST

cps = 25 30

}

From this file, only 60 xinetd instances can be run at the same time. ftp and rlogin also depend on xinetd. So a server only afford very few logins for telnet.

ssh doesn't depend on xinetd, so if we use ssh protocol, you can always login to remote linux server(of course, now most linux server has supported openssh)

 

阅读(402) | 评论(0) | 转发(0) |
0

上一篇:libraries on Linux

下一篇:火箭太强了

给主人留下些什么吧!~~