[Ubuntu] Telnet

2016. 2. 28. 18:10OS/Ubuntu

Telnet?

원격지의 컴퓨터를 인터넷을 통해 접속하여 자신의 컴퓨터처럼 사용할 수 있는 원격 접속 서비스

텔넷을 하용하려면 계정이 필요하다. 


1. xinetd 설치

 $ sudo apt-get install xinetd


2. Telnet 설치

 $ sudo apt-get install telnetd 


3. xinetd 설정

 $ vi /etc/xinetd.conf

설정내역

 defaults

{


# Telnet Setting

service telnet

{

     disable=no

     flags=REUSE

     socket_type = stream

     wait = no

     user = root

     server = /usr/sbin/in.telnetd

     log_on_failture += USERID

}

:wq를 눌러 저장 나가기를 한다. 


4. 서비스 재시작

 $ sudo /etc/init.d/xinetd restart




'OS > Ubuntu' 카테고리의 다른 글

[Ubuntu] IPv6 설정  (0) 2016.02.28
[Ubuntu] DHCP  (0) 2016.02.28
[Ubuntu] FTP  (0) 2016.02.28
[Ubuntu] SSH  (0) 2016.02.28
[Ubuntu] 타이머  (0) 2013.04.12