美文网首页
网络调试工具

网络调试工具

作者: BinaryWoodB | 来源:发表于2019-01-09 11:38 被阅读0次

    Linux

    1. netstat -anp\|grep <port>
    2. lsof -i:<port>
    3. ping www.baidu.com
    4. ifconfig
    5. Check internet speed via terminal
      curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -

    Windows

    1. netstat –ano: 查看所有进程占用的端口
    2. netstat –ano|findstr <port>: 查看占用指定端口的程序
    3. tasklist: 列出当前所有运行进程
    4. tskill <PID>: 干掉某进程
    5. systeminfo: 可以查看网卡等各项详细系统信息

    Reference

    相关文章

      网友评论

          本文标题:网络调试工具

          本文链接:https://www.haomeiwen.com/subject/ypmwrqtx.html