telnet
-
리눅스 환경에서 네트워크가 간헐적으로 연결이 끊기는 현상이 발생하는 경우 사용할 수 있습니다. 이러한 경우 정확한 지표가 있어야 간헐적 끊김을 증명할 수 있습니다. telnet #!/bin/bash # create by junsuyoun telnet_check_ip= telnet_check_port= telnet_check_log_path= telnet_check_runtime=`date +%s` telnet_check=`telnet $telnet_check_ip $telnet_check_port |exit` telnet_check_endtime=`date +%s` telnet_check_difftime=`expr "$telnet_check_endtime - telnet_check_runtime"` if..
telnet통한 네트워크 상태 체크리눅스 환경에서 네트워크가 간헐적으로 연결이 끊기는 현상이 발생하는 경우 사용할 수 있습니다. 이러한 경우 정확한 지표가 있어야 간헐적 끊김을 증명할 수 있습니다. telnet #!/bin/bash # create by junsuyoun telnet_check_ip= telnet_check_port= telnet_check_log_path= telnet_check_runtime=`date +%s` telnet_check=`telnet $telnet_check_ip $telnet_check_port |exit` telnet_check_endtime=`date +%s` telnet_check_difftime=`expr "$telnet_check_endtime - telnet_check_runtime"` if..
2023.08.08 -
telnet 명령어를 사용하려고 할 때 설치가 되어 있지 않는 경우 아래 방법으로 설치하여 사용 합니다. telnet 설치 Debian / Ubuntu # apt-get install telnet Fedora / Redhat / CentOS # yum install telnet OS X (MAC) # brew install telnet Windows Linux libarary 파일 다운로드 리눅스 환경에서 yum 또는 apt-get과 같은 패키지 관리자로 패키지를 다운 받지 못할 때 파일로 준비해야 합니다. Repository CentOS Index of /centos mirror.navercorp.com CentOS 버전에 맞게 탐색을 합니다. I.. junsuyoun.tistory.com
telnet 설치telnet 명령어를 사용하려고 할 때 설치가 되어 있지 않는 경우 아래 방법으로 설치하여 사용 합니다. telnet 설치 Debian / Ubuntu # apt-get install telnet Fedora / Redhat / CentOS # yum install telnet OS X (MAC) # brew install telnet Windows Linux libarary 파일 다운로드 리눅스 환경에서 yum 또는 apt-get과 같은 패키지 관리자로 패키지를 다운 받지 못할 때 파일로 준비해야 합니다. Repository CentOS Index of /centos mirror.navercorp.com CentOS 버전에 맞게 탐색을 합니다. I.. junsuyoun.tistory.com
2022.09.25 -
서버 대 서버 또는 클라이언트 대 서버 포트 연결이 정상적으로 이루어져있는지 확인하는 방법 telnet telnet을 통해 확인할 수 있는 포트 오픈 상태 telnet 서버와 통신이 되며 포트 오픈이 되었을 때 # telnet 192.168.152.31 8629 Trying 192.168.152.31... Connected to 192.168.152.31. Escape character is '^]'. 서버와 통신이 되며 포트 오픈이 되어 있지 않을 때 # telnet 192.168.151.32 18629 Trying 192.168.151.32... telnet: connect to address 192.168.151.32: Connection refused 서버와 통신이 되며 포트 오픈이 되어 있고 네..
포트 오픈 확인하기 (telent, curl, python)서버 대 서버 또는 클라이언트 대 서버 포트 연결이 정상적으로 이루어져있는지 확인하는 방법 telnet telnet을 통해 확인할 수 있는 포트 오픈 상태 telnet 서버와 통신이 되며 포트 오픈이 되었을 때 # telnet 192.168.152.31 8629 Trying 192.168.152.31... Connected to 192.168.152.31. Escape character is '^]'. 서버와 통신이 되며 포트 오픈이 되어 있지 않을 때 # telnet 192.168.151.32 18629 Trying 192.168.151.32... telnet: connect to address 192.168.151.32: Connection refused 서버와 통신이 되며 포트 오픈이 되어 있고 네..
2022.09.25