Binary Life/펭귄
telnet service on ubuntu intrepid server
로제마인
2009. 2. 5. 14:59
요새 콩글리쉬 연습하고 있습니다.
많이 도와주세요.
많이 도와주세요.
## Key ##
xinetd를 설치하여 telnetd를 운영하게 하면 됩니다.
telnet service on ubuntu intrepid server
1. Install xinetd and telnetd
# sudo apt-get install xinetd
# sudo apt-get install telnetd
# 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.
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
}
{
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