How do i monitor network traffic on Windows from the command line

后端 未结 4 2326
再見小時候
再見小時候 2021-02-20 14:33

How do i monitor network traffic on Windows from the command line; specifically the download/upload speeds and amount of data uploaded/downloaded ? Is there a script /batch for

4条回答
  •  闹比i
    闹比i (楼主)
    2021-02-20 14:51

    typeperf in Windows should work to get the data.

    typeperf "\Network Interface(*)\....
    typeperf -q "Network Interface" will list all the object
    \Network Interface(*)\Bytes Total/sec
    \Network Interface(*)\Packets/sec
    \Network Interface(*)\Packets Received/sec
    \Network Interface(*)\Packets Sent/sec
    \Network Interface(*)\Current Bandwidth
    \Network Interface(*)\Bytes Received/sec
    \Network Interface(*)\Packets Received Unicast/sec
    \Network Interface(*)\Packets Received Non-Unicast/sec
    \Network Interface(*)\Packets Received Discarded
    \Network Interface(*)\Packets Received Errors
    \Network Interface(*)\Packets Received Unknown
    \Network Interface(*)\Bytes Sent/sec
    \Network Interface(*)\Packets Sent Unicast/sec
    \Network Interface(*)\Packets Sent Non-Unicast/sec
    \Network Interface(*)\Packets Outbound Discarded
    \Network Interface(*)\Packets Outbound Errors
    \Network Interface(*)\Output Queue Length
    \Network Interface(*)\Offloaded Connections
    

提交回复
热议问题