過去に接続が確立されてから送受信されたバイト/パケットがあったことを覚えていますが、アダプタのプロパティでそれを見つけることができません。
ところで、私がnetwork connection
アイコンがトレイに表示され、Network: Internet access, Unindentified network, No network access
、まだ、とにかくこの質問を投稿しました。
デビッドは画面を考え出した 私は見ていました。問題は、私の状況ではステータスが利用できないことでした(私のWindowsセッションのいくつかのバグのため)。
「コントロールパネル」>「ネットワーク接続」を起動します
ネットワーク接続の1つを右クリックして、[ステータス]を選択します
この画像はWindows 7のものですが、ダイアログはWindows 8と10でほとんど同じです。
netstat -s
コマンドの結果のようなものを探しているかもしれません。
次のような統計が表示されます。
IPv4 Statistics
Packets Received = 125858
Received Header Errors = 0
Received Address Errors = 130
Datagrams Forwarded = 0
Unknown Protocols Received = 0
Received Packets Discarded = 315
Received Packets Delivered = 126500
Output Requests = 83395
Routing Discards = 0
Discarded Output Packets = 0
Output Packet No Route = 1
Reassembly Required = 0
Reassembly Successful = 0
Reassembly Failures = 0
Datagrams Successfully Fragmented = 0
Datagrams Failing Fragmentation = 0
Fragments Created = 0
IPv6 Statistics
Packets Received = 7
Received Header Errors = 0
Received Address Errors = 0
Datagrams Forwarded = 0
Unknown Protocols Received = 0
Received Packets Discarded = 2
Received Packets Delivered = 117
Output Requests = 444
Routing Discards = 0
Discarded Output Packets = 0
Output Packet No Route = 6
Reassembly Required = 0
Reassembly Successful = 0
Reassembly Failures = 0
Datagrams Successfully Fragmented = 0
Datagrams Failing Fragmentation = 0
Fragments Created = 0
ICMPv4 Statistics
Received Sent
Messages 241 2
Errors 0 0
Destination Unreachable 241 2
Time Exceeded 0 0
Parameter Problems 0 0
Source Quenches 0 0
Redirects 0 0
Echo Replies 0 0
Echos 0 0
Timestamps 0 0
Timestamp Replies 0 0
Address Masks 0 0
Address Mask Replies 0 0
Router Solicitations 0 0
Router Advertisements 0 0
ICMPv6 Statistics
Received Sent
Messages 3 18
Errors 0 0
Destination Unreachable 0 0
Packet Too Big 0 0
Time Exceeded 0 0
Parameter Problems 0 0
Echos 0 0
Echo Replies 0 0
MLD Queries 0 0
MLD Reports 0 0
MLD Dones 0 0
Router Solicitations 0 12
Router Advertisements 0 0
Neighbor Solicitations 0 3
Neighbor Advertisements 3 3
Redirects 0 0
Router Renumberings 0 0
TCP Statistics for IPv4
Active Opens = 1232
Passive Opens = 4
Failed Connection Attempts = 1647
Reset Connections = 121
Current Connections = 28
Segments Received = 104462
Segments Sent = 66346
Segments Retransmitted = 1695
TCP Statistics for IPv6
Active Opens = 0
Passive Opens = 0
Failed Connection Attempts = 0
Reset Connections = 0
Current Connections = 0
Segments Received = 0
Segments Sent = 0
Segments Retransmitted = 0
UDP Statistics for IPv4
Datagrams Received = 26472
No Ports = 297
Receive Errors = 18
Datagrams Sent = 15279
UDP Statistics for IPv6
Datagrams Received = 2
No Ports = 0
Receive Errors = 2
Datagrams Sent = 338
または、レイヤ2の統計情報が必要な場合は、netstat -e
を使用して、イーサネットに関連するもののみを取得できます。
Interface Statistics
Received Sent
Bytes 604513390 48753903
Unicast packets 566790 389160
Non-unicast packets 81665 5275
Discards 0 0
Errors 0 0
Unknown protocols 0
この質問は、ドロップされたethernetフレームの検索結果に表示されるため、私が見つけた唯一の方法ethernetWindowsでのレイヤー2の統計(レイヤー3+ではない)(10でテスト済みですが、7では機能する可能性があります)。
Powershellの場合:
Get-NetAdapterStatistics | Format-List -Property "*"
通常、ドロップ/エラー/再送信の統計は非表示になっているため、Format-Listにパイプすると、すべての統計が表示されます。
ソース: https://docs.Microsoft.com/en-us/powershell/module/netadapter/get-netadapterstatistics?view=win10-ps
あなたがそれを知っていればかなり単純で、基本的に古いバージョンと同じです:
ネットワークと共有センターを開きます(名前は実際には異なる場合があります。英語のロケールは使用しません)。
左上のサイドバーには、アダプター設定を開くオプションがあります。これにより、従来のネットワークリストが表示されます。
次に、任意のアダプターをダブルクリックして、アダプターの統計を含むクラシックプロパティウィンドウを表示します。