xinetd를 사용할 경우를 기준으로 하였습니다.

1. xinetd 에디트.

# vi /etc/xinetd.d/telnet

service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
#아래가 특정아이피만 텔넷을 가능하게 합니다.
#127.0.0.1과 로컬호스트만 가능,중복설정가능
only_from = 127.0.0.1 localhost
server = /usr/sbin/in.telnetd
log_on_failure = HOST RECORD
}


2. 상기 형식으로 고쳐준 후 xinetd restart
> /etc/init.d/xinetd restart
2005/07/04 12:35 2005/07/04 12:35

트랙백 주소 :: 이 글에는 트랙백을 보낼 수 없습니다