ubuntu14.04에 텔넷 클라이언트 설치(직접 측정)
1208 단어 Ubuntu
#netstat -a | grep telnet
출력이 비어 있음은 이 서비스가 시작되지 않았음을 나타냅니다
2. 오픈bsd-inetd와telnetd 설치
apt-get install openbsd-inetd
apt-get install telnetd
3. sudo vi/etc/inetd.conf 및 다음 줄 추가
telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd
4.sudo vi/etc/xinetd.conf 및 다음을 포함합니다.
# Simple configuration file for xinetd
# Some defaults, and include /etc/xinetd.d/
defaults
{
# Please note that you need a log_type line to be able to use
log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
includedir /etc/xinetd.d
5. sudo vi/etc/xinetd.d/telnet 및 다음을 포함합니다.
# default: on
# description: The telnet server serves telnet sessions; it uses \
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no www.2cto.com
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
6. ubuntu를 다시 시작하면 됩니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PowerShell 기반 Ubuntu 시스템 사용 상세 정보본고는 주로 Ubuntu 16.04 LTS에 PowerShell을 설치하고 사용하는 방법을 소개한다.PowerShell Core는 마이크로소프트가 내놓은 크로스 플랫폼(Windows, Linux, macOS) 자동화...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.