본문 바로가기
Binary Life/펭귄

telnet service on ubuntu intrepid server

by 로제마인 2009. 2. 5.
요새 콩글리쉬 연습하고 있습니다.
많이 도와주세요.

## Key ##
xinetd를 설치하여 telnetd를 운영하게 하면 됩니다.

telnet service on ubuntu intrepid server

1. Install xinetd and telnetd
# sudo apt-get install xinetd
# sudo apt-get install telnetd


2. Modify configuration file
"/etc/xinetd.conf" file shows "includedir /etc/xinetd.d" in 14th line.

Then create a file "telnetd" in "/etc/xinetd.d/" and write down a follow.

service telnet
{
    disable = no
    flags = REUSE
    socket_type = stream
    wait    = no
    user    = root
    server    = /usr/sbin/in.telnetd
    log_on_failure    += USERID
}


3. Restart xinetd
# /etc/init.d/xinetd restart


Reference
 - http://brucekim.egloos.com/1639271

'Binary Life > 펭귄' 카테고리의 다른 글

[UBUNTU] ATI 에서 부팅 등 화면 깨질 때.  (0) 2011.04.25
오랜만에 ubuntu  (2) 2009.03.10
ubuntu intrepid server : 'UTF-8' to 'EUC-KR'  (0) 2009.02.02
ubuntu themes  (6) 2008.12.13
ubuntu compiz on ATI - 동영상 깜빡임 문제  (0) 2008.11.23