windows查询所有启用端口
netstat -ano
查询某个端口是否被占用,例如139
netstat -ano | findstr ":139"
linux查询所有启用端口
netstat -tunlp
查询某个端口是否被占用,例如80
netstat -tunlp |grep 80
标签:windows,端口,占用,netstat,查询,linux From: https://www.cnblogs.com/flluo/p/16645665.html
windows查询所有启用端口
netstat -ano
查询某个端口是否被占用,例如139
netstat -ano | findstr ":139"
linux查询所有启用端口
netstat -tunlp
查询某个端口是否被占用,例如80
netstat -tunlp |grep 80
标签:windows,端口,占用,netstat,查询,linux From: https://www.cnblogs.com/flluo/p/16645665.html