티스토리 뷰
- telnet 설치
# yum install telnet telnet-server
chkconfig 명령어를 통해서 리스트를 확인해보면 xinetd based services 쪽에 telnet이 off 되어 있는 것을 볼 수 있다.
(xinetd는 on 되어 있음)
부팅 시 시작되도록 추가
# chkconfig telnet on
# chkconfig --list telnet
# chkconfig xinetd on
# chkconfig --list xinetd
설정 확인
# cat /etc/xinetd.d/telnet
iptables 방화벽 등록
# iptables -A INPUT -p tcp --dport 23 -j ACCEPT
# service iptables save
데몬 실행
# service xinetd start
내부에 다른 컴퓨터에서 telnet을 이용하여 접속
$ telnet -l root 10.211.55.3
root로 telnet 접속 시, /etc/pam.d/remote 파일에서
auth required pam_securetty.so
해당 라인을 주석 처리해야 위와 같이 정상적으로 접속이 가능하다.
'Operating System > CentOS' 카테고리의 다른 글
HTTPD, MYSQL, PHP 설치 및 설정 (0) | 2015.07.09 |
---|---|
VIM, GCC, GDB 설치 및 설정 (0) | 2015.07.08 |
USER 관리 (0) | 2015.07.08 |
FTP, VSFTPD 설치 및 설정 (0) | 2015.07.03 |
iptables 방화벽 설정 (0) | 2015.06.30 |
OpenSSH 설정 (0) | 2015.06.30 |
Hostname & Login interface Message (0) | 2015.06.30 |
Network 설정 (0) | 2015.06.11 |
Console 해상도 설정 (0) | 2015.05.05 |
시스템 확인하기 (0) | 2015.04.01 |
댓글