Command line for looking at specific port

前端 未结 13 1204
孤街浪徒
孤街浪徒 2020-12-02 03:40

Is there a way to examine the status of a specific port from the Windows command line? I know I can use netstat to examine all ports but netstat is slow and looking at a spe

13条回答
  •  春和景丽
    2020-12-02 04:18

    This will help you

    netstat -atn | grep           # For tcp
    netstat -aun | grep            # For udp
    netstat -atun | grep           # For both
    

提交回复
热议问题