【LINUX】查询linux某个端口外部主机能否正常访问
需要nc命令, 进行操作 ### 平台 #### OSX ```shell brew install nc ``` #### Linux ```shell yum install -y nc ``` ### 检测端口外部主机能否正常访问 如检测百度的 `443` 端口是否可以访问 > commend ```shell nc -z -w 1 119.75.216.20 443 ``` > execute ```shell ➜ ~ nc -z -w 2 119.75.216.20 443 Connection to ...