반응형
안녕하세요 서후아빠입니다. ^_^
telnet으로 평소 서비스 포트를 사용하다가 이런 것도 있구나 하면서 발견한 방법입니다. 개인적으로는 이것이 더 좋아 보입니다. 왜냐하면 telnet은 Client를 설치해야 하는데, 인터넷이 안되는 PC에서는 설치가 불편하기 때문입니다.
Windows PowerShell 이용
# 확인하고자 하는 도메인, Port : test.com, 3389
# 비정상일 경우
PS C:\Windows\System32\WindowsPowerShell\v1.0> Test-NetConnection -ComputerName test.com -Port 3389
ComputerName : test.com
RemoteAddress : 3.36.73.87
RemotePort : 3389
InterfaceAlias : Wi-Fi
SourceAddress : 10.10.0.161
PingSucceeded : False
PingReplyDetails (RTT) : 0 ms
TcpTestSucceeded : False
# 정상일 경우
PS C:\Windows\System32\WindowsPowerShell\v1.0> Test-NetConnection -ComputerName test.com -Port 3389
ComputerName : test.com
RemoteAddress : 3.36.73.87
RemotePort : 3389
InterfaceAlias : Wi-Fi
SourceAddress : 10.10.0.161
TcpTestSucceeded : True
반응형
'Etc' 카테고리의 다른 글
[이론] 보안장비(FW, VPN, SSLVPN, IPS, WAF) 기본 개념 (0) | 2022.11.24 |
---|---|
[이론] Cloud에서 필요한 Networking 최소 개념 (L2~L7) (0) | 2022.08.23 |
[Tip] Windows 사용자가 특정 URL는 접속이 안되고, 특정 URL에 해당하는 Public IP는 접속이 될 때 대응 방법 알아보기 (0) | 2022.07.21 |
[Tip] 티스토리(tistory) 블로그 줄간격 설정하기 (2022년 7월 기준) (0) | 2022.07.13 |