nc (NetCat)
# nc -w [TIMEOUT_SEC] -v [HOST] [PORT] </dev/null; echo $?
or
Just check the HOST's PORT opened
# nc -vz [HOST] [PORT]
Result examples on RHEL 6
Success:
Connection to [HOST] [PORT] port [PROTOCOL] succeeded!
0
Failure:
nc: connect to [HOST] port [PORT] ([PROTOCOL]) timed out: Operation now in progress
1
RHEL 6 (nc):
# yum install nc
RHEL 7 (nmap-ncat):
# yum install nmap-ncat
'System Engineering > Network' 카테고리의 다른 글
Tool: MRTG (0) | 2018.08.28 |
---|---|
Protocol: SNMP (0) | 2018.08.21 |
HTTP Header Sample Analysis - www.ebay.com (0) | 2018.07.24 |
HTTP Header Sample Analysis - www.amazon.com (0) | 2018.07.24 |
HTTP Header Sample Analysis - Google.com (0) | 2018.07.24 |