ubuntu14.04에 텔넷 클라이언트 설치(직접 측정)

1208 단어 Ubuntu
먼저telnet의 운행 상태를 확인합니다
#netstat -a | grep telnet

출력이 비어 있음은 이 서비스가 시작되지 않았음을 나타냅니다
2. 오픈bsd-inetd와telnetd 설치
apt-get install openbsd-inetd
apt-get install telnetd

3. sudo vi/etc/inetd.conf 및 다음 줄 추가
telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd

4.sudo vi/etc/xinetd.conf 및 다음을 포함합니다.
# Simple configuration file for xinetd
# Some defaults, and include /etc/xinetd.d/
defaults
{ 
# Please note that you need a log_type line to be able to use
log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
includedir /etc/xinetd.d

5. sudo vi/etc/xinetd.d/telnet 및 다음을 포함합니다.
# default: on
# description: The telnet server serves telnet sessions; it uses \
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no  www.2cto.com  
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}

6. ubuntu를 다시 시작하면 됩니다.

좋은 웹페이지 즐겨찾기