microsoft / Windows-Containers

Welcome to our Windows Containers GitHub community! Ask questions, report bugs, and suggest features -- let's work together.
MIT License
385 stars 60 forks source link

L2Bridge not working correctly on Windows server 2022 - 21H2 #439

Open aarnaud opened 8 months ago

aarnaud commented 8 months ago

Describe the bug

Using [hns.psm1](https://raw.githubusercontent.com/microsoft/SDN/master/Kubernetes/windows/hns.psm1) and create a HNS Network with type L2Bridge, the network start to be unstable. It's working for few second and stop working for few second in loop.

To Reproduce

Install-WindowsFeature -Name Hyper-V -IncludeManagementTools

# Reboot

Enable-WindowsOptionalFeature -Online -FeatureName Containers -All -NoRestart

# Reboot

Invoke-WebRequest https://raw.githubusercontent.com/microsoft/SDN/master/Kubernetes/windows/hns.psm1 -OutFile hns.psm1

Import-Module .\hns.psm1

New-HNSNetwork -Type L2Bridge -AddressPrefix "192.168.255.0/30" -Gateway "192.168.255.1" -Name "External" -Verbose

Result:

PS C:\Users\Administrator> ping 1.1.1.1 /t

Pinging 1.1.1.1 with 32 bytes of data:
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Reply from 1.1.1.1: bytes=32 time=18ms TTL=59
Reply from 1.1.1.1: bytes=32 time=17ms TTL=59
Reply from 1.1.1.1: bytes=32 time=18ms TTL=59
Reply from 1.1.1.1: bytes=32 time=16ms TTL=59
Reply from 1.1.1.1: bytes=32 time=16ms TTL=59
Reply from 1.1.1.1: bytes=32 time=21ms TTL=59
Reply from 1.1.1.1: bytes=32 time=16ms TTL=59
Reply from 1.1.1.1: bytes=32 time=16ms TTL=59
Reply from 1.1.1.1: bytes=32 time=24ms TTL=59
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Reply from 1.1.1.1: bytes=32 time=488ms TTL=59
Reply from 1.1.1.1: bytes=32 time=25ms TTL=59
Reply from 1.1.1.1: bytes=32 time=22ms TTL=59
Reply from 1.1.1.1: bytes=32 time=21ms TTL=59
Reply from 1.1.1.1: bytes=32 time=16ms TTL=59
Reply from 1.1.1.1: bytes=32 time=16ms TTL=59
Reply from 1.1.1.1: bytes=32 time=13ms TTL=59
Reply from 1.1.1.1: bytes=32 time=17ms TTL=59
Reply from 1.1.1.1: bytes=32 time=17ms TTL=59
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
....

Expected behavior

No ping drop / timeout, stable network like Windows Server 2019 - 1809

Configuration:

Additional context

Discovered by trying to use Calico with BGP that is using a vSwitch named External that is type L2Bridge

aarnaud commented 8 months ago

image image image

jsturtevant commented 8 months ago

@daschott @MikeZappa87

MikeZappa87 commented 8 months ago

I noticed that we have two groups of 9 successful pings. Is that continuous? The first successful ping of the second group was 488ms as well. I wonder if that pattern is significant. Why is a /30 used? That provides two usable addresses as well. Are you pinging from the root compartment or some inside of a container? Its unclear from what you shared.

aarnaud commented 8 months ago

Yes, there is group of success and group of failure continuous. about Why is a /30 used? I noticed it's hardcoded here https://github.com/kubernetes-sigs/sig-windows-tools/blob/master/hostprocess/calico/node/node-service.ps1#L93 I don't have explanation.

fady-azmy-msft commented 8 months ago

@jsturtevant would you know the answer to this?

ntrappe-msft commented 8 months ago

🔖 ADO #4782733

tzifudzi commented 7 months ago

I experienced an issue similar to this, whereby (ARP) pings were failing more prominently than is described here (not intermittent). @aarnaud assuming that it might be related, would you please help confirm if this is related? To confirm, you would need to rollback KB updates and try see if the failures can be pinpointed to beginning to a specific time? In my case the issue began in Oct 2023 Patch Tuesday updates. So perhaps try KB updates from pre October and compare?

My use case is very similar to yours, using L2Bridge and Windows Server 2022 Datacenter, with containerd 1.6.18 and Amazon VPC CNI on AWS EKS.

krajniks commented 6 months ago

I have also expirienced some odd behaviour after applying windows updates to host Windows Server 2022. We have simple setup using just Docker Engine and doing process-isolation, so there is no hyper-v installed. We use l2bridge to connect containers to local network. After the updates, containers lost all connectivity. Could not ping them, could not ping out from them. Even host had network problems loosing ping as described at the begining of this thread. If we removed l2bridge network, host's network was without problems.

Removing update KB5034129 solved the issue.

Is this simmilar to your problem @tzifudzi?

tzifudzi commented 6 months ago

@krajniks Yup sounds very similar but I can't say for sure if its the exact same. @ntrappe-msft If there is a known issue regarding the above kindly acknowledge for awareness.

p3rdu commented 5 months ago

I have also expirienced some odd behaviour after applying windows updates to host Windows Server 2022. We have simple setup using just Docker Engine and doing process-isolation, so there is no hyper-v installed. We use l2bridge to connect containers to local network. After the updates, containers lost all connectivity. Could not ping them, could not ping out from them. Even host had network problems loosing ping as described at the begining of this thread. If we removed l2bridge network, host's network was without problems.

Removing update KB5034129 solved the issue.

Is this simmilar to your problem @tzifudzi?

We can confirm the issue but removing the update didn't help. Only the host can communicate with the container. And it began after January 2024 Windows Server updates. Also the issue doesn't appear on Windows Server 2019.

Update: I'm not sure if I was able to remove the update.

kestratt commented 4 months ago

@aarnaud, are you seeing an issue with the MAC address resolution during ping failure? arp -a should show you the resolved mac address of the container.

adrianm-msft commented 3 months ago

I attempted to reproduce the issue by defining an l2bridge network using the container host (10.127.130.158) as the gateway and a valid subnet (10.127.130.128/27). My environment also includes a physical router 10.127.130.1, a physical subnet of 10.127.130.0/24, and a generated "test-container" with IP 10.127.130.131. However, I was unable to encounter the same issue. Here are the steps I followed:

On the container host:

PS C:\> docker network create -d l2bridge --gateway=10.127.130.158 --subnet 10.127.130.128/27 test-l2bridge
PS C:\> docker run -itd --name test-container --network test-l2bridge test-image
PS C:\> docker exec -it test-container cmd

In the container:

PS C:\> ping -n 100 1.1.1.1

Pinging 1.1.1.1 with 32 bytes of data:
Reply from 1.1.1.1: bytes=32 time=10ms TTL=46
Reply from 1.1.1.1: bytes=32 time=10ms TTL=46
Reply from 1.1.1.1: bytes=32 time=9ms TTL=46
Reply from 1.1.1.1: bytes=32 time=10ms TTL=46
....

Ping statistics for 1.1.1.1:
    Packets: Sent = 100, Received = 100, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 9ms, Maximum = 11ms, Average = 10ms

Based on your results, it seems there might be other factors at play. To gather more information, we can use pktmon to trace the packets:

On the container host (using the "test-container" created above):

PS C:\> pktmon filter remove
PS C:\> pktmon filter add -t ICMP -i 1.1.1.1
PS C:\> pktmon filter add -d ARP -i 1.1.1.1
PS C:\> pktmon start --capture
PS C:\> docker exec -it test-container cmd

In the container (until there is a failed and successful ping to capture both):

PS C:\> ping 1.1.1.1 /t

Back on the container host:

PS C:\> pktmon stop
PS C:\> pktmon etl2txt PktMon.etl
PS C:\> notepad pktmon.txt

In notepad I can examine the packet traces for both successful and failed pings to identify any issues. This is an example of a successful ping I sent to 10.127.130.9:

Show pktmon.txt

[00]0394.2410::2024-04-02 10:26:38.547829100 [MSNT_SystemTrace] Event: Header, BufferSize: 16777216, Version: 131082, ProviderVersion: 20348, NumberOfProcessors: 4, EndTime: 133565524254994995, TimerResolution: 156250, MaxFileSize: 512, LogFileMode: 0x4010001, BuffersWritten: 4, StartBuffers: 1, PointerSize: 8, EventsLost: 0, CPUSpeed: 2295, LoggerName: 0x0, LogFileName: 0x0, TimeZoneInformation: , BootTime: 133550093715000000, PerfFreq: 10000000, StartTime: 133565523985478291, ReservedFlags: 0x1, BuffersLost: 0, SessionNameString: Relogger, LogFileNameString: C:\Users\Administrator\PktMon.etl
[00]0394.2410::2024-04-02 10:26:38.547829100 [MSNT_SystemTrace] Event: PartitionInfoExtensionV2, EventVersion: 0, Reserved: 0, PartitionType: 0, QpcOffsetFromRoot: 0, PartitionId: , ParentId: 
[00]0394.2410::2024-04-02 10:26:38.547829100 [MSNT_SystemTrace] Event: PartitionInfoExtensionV2, EventVersion: 0, Reserved: 0, PartitionType: 0, QpcOffsetFromRoot: 0, PartitionId: , ParentId: 
[01]36E0.37B0::2024-04-02 10:26:54.059070900 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 1, Direction Tx , Type Ethernet , Component 57, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059075200 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 2, Direction Tx , Type Ethernet , Component 4, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059079500 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 3, Direction Tx , Type Ethernet , Component 74, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059080400 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 4, Direction Tx , Type Ethernet , Component 31, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059083700 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 5, Direction Tx , Type Ethernet , Component 31, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059084500 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 6, Direction Tx , Type Ethernet , Component 26, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059101000 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 7, Direction Tx , Type Ethernet , Component 26, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059101600 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 8, Direction Tx , Type Ethernet , Component 8, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059102500 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 9, Direction Rx , Type Ethernet , Component 8, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059103000 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 10, Direction Rx , Type Ethernet , Component 26, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059107700 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 11, Direction Rx , Type Ethernet , Component 26, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059108200 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 12, Direction Rx , Type Ethernet , Component 31, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059109100 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 13, Direction Rx , Type Ethernet , Component 31, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[01]36E0.37B0::2024-04-02 10:26:54.059109900 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 14, Direction Rx , Type Ethernet , Component 74, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060414900 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 15, Direction Rx , Type Ethernet , Component 6, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060418400 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 16, Direction Rx , Type Ethernet , Component 69, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-3A-AA-31 > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060528000 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 17, Direction Tx , Type Ethernet , Component 69, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060528700 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 18, Direction Tx , Type Ethernet , Component 6, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060530300 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 19, Direction Tx , Type Ethernet , Component 74, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060530800 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 20, Direction Tx , Type Ethernet , Component 31, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060531900 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 21, Direction Tx , Type Ethernet , Component 31, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060532400 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 22, Direction Tx , Type Ethernet , Component 26, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060539000 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 23, Direction Tx , Type Ethernet , Component 26, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060539500 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 24, Direction Tx , Type Ethernet , Component 8, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060540000 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 25, Direction Rx , Type Ethernet , Component 8, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060540300 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 26, Direction Rx , Type Ethernet , Component 26, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060544100 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 27, Direction Rx , Type Ethernet , Component 26, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060544500 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 28, Direction Rx , Type Ethernet , Component 31, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060545200 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 29, Direction Rx , Type Ethernet , Component 31, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060545500 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 30, Direction Rx , Type Ethernet , Component 74, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060547400 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 31, Direction Tx , Type Ethernet , Component 72, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[02]0000.0000::2024-04-02 10:26:54.060548000 [Microsoft-Windows-PktMon] PktGroupId 281474976710694, PktNumber 1, Appearance 32, Direction Tx , Type Ethernet , Component 7, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype IPv4 (0x0800), length 74: 10.127.130.131 > 10.127.130.9: ICMP echo request, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062115100 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 1, Direction Rx , Type Ethernet , Component 7, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062118900 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 2, Direction Rx , Type Ethernet , Component 72, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062123100 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 3, Direction Tx , Type Ethernet , Component 74, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062123800 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 4, Direction Tx , Type Ethernet , Component 31, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062125700 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 5, Direction Tx , Type Ethernet , Component 31, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062126200 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 6, Direction Tx , Type Ethernet , Component 26, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062137300 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 7, Direction Tx , Type Ethernet , Component 26, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062137800 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 8, Direction Tx , Type Ethernet , Component 8, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062138400 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 9, Direction Rx , Type Ethernet , Component 8, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062139100 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 10, Direction Rx , Type Ethernet , Component 26, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062144600 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 11, Direction Rx , Type Ethernet , Component 26, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062145000 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 12, Direction Rx , Type Ethernet , Component 31, Edge 2, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062145600 [Microsoft-Windows-PktMon] PktGroupId 138, Pk‫tNumber 1, Appearance 13, Direction Rx , Type Ethernet , Component 31, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062146100 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 14, Direction Rx , Type Ethernet , Component 74, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062166900 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 15, Direction Rx , Type Ethernet , Component 4, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:54.062168400 [Microsoft-Windows-PktMon] PktGroupId 138, PktNumber 1, Appearance 16, Direction Rx , Type Ethernet , Component 57, Edge 1, Filter 1, OriginalSize 74, LoggedSize 74 
    00-15-5D-C9-8C-0F > 00-15-5D-3A-AA-31, ethertype IPv4 (0x0800), length 74: 10.127.130.9 > 10.127.130.131: ICMP echo reply, id 1, seq 759, length 40
[00]0000.0000::2024-04-02 10:26:58.739621400 [Microsoft-Windows-PktMon] PktGroupId 139, PktNumber 1, Appearance 1, Direction Rx , Type Ethernet , Component 7, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.131 (00-15-5D-C9-8C-10) tell 10.127.130.9, length 28
[00]0000.0000::2024-04-02 10:26:58.739623800 [Microsoft-Windows-PktMon] PktGroupId 139, PktNumber 1, Appearance 2, Direction Rx , Type Ethernet , Component 72, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.131 (00-15-5D-C9-8C-10) tell 10.127.130.9, length 28
[00]0000.0000::2024-04-02 10:26:58.739630800 [Microsoft-Windows-PktMon] PktGroupId 139, PktNumber 1, Appearance 3, Direction Tx , Type Ethernet , Component 74, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.131 (00-15-5D-C9-8C-10) tell 10.127.130.9, length 28
[00]0000.0000::2024-04-02 10:26:58.739631900 [Microsoft-Windows-PktMon] PktGroupId 139, PktNumber 1, Appearance 4, Direction Tx , Type Ethernet , Component 31, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.131 (00-15-5D-C9-8C-10) tell 10.127.130.9, length 28
[00]0000.0000::2024-04-02 10:26:58.739634900 [Microsoft-Windows-PktMon] PktGroupId 139, PktNumber 1, Appearance 5, Direction Tx , Type Ethernet , Component 31, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.131 (00-15-5D-C9-8C-10) tell 10.127.130.9, length 28
[00]0000.0000::2024-04-02 10:26:58.739635800 [Microsoft-Windows-PktMon] PktGroupId 139, PktNumber 1, Appearance 6, Direction Tx , Type Ethernet , Component 26, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.131 (00-15-5D-C9-8C-10) tell 10.127.130.9, length 28
[00]0000.0000::2024-04-02 10:26:58.739646500 [Microsoft-Windows-PktMon] Drop: PktGroupId 139, PktNumber 1, Appearance 7, Direction Rx , Type Ethernet , Component 139, Filter 2, DropReason Intercept Pkt Drop , DropLocation 0xE0006071, OriginalSize 42, LoggedSize 42 
    Drop: 00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.131 (00-15-5D-C9-8C-10) tell 10.127.130.9, length 28
[01]0ACC.4208::2024-04-02 10:26:58.739780400 [Microsoft-Windows-PktMon] PktGroupId 281474976710695, PktNumber 1, Appearance 1, Direction Rx , Type Ethernet , Component 26, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Reply 10.127.130.131 is-at 00-15-5D-C9-8C-10, length 28
[01]0ACC.4208::2024-04-02 10:26:58.739782500 [Microsoft-Windows-PktMon] PktGroupId 281474976710695, PktNumber 1, Appearance 2, Direction Rx , Type Ethernet , Component 31, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Reply 10.127.130.131 is-at 00-15-5D-C9-8C-10, length 28
[01]0ACC.4208::2024-04-02 10:26:58.739784300 [Microsoft-Windows-PktMon] PktGroupId 281474976710695, PktNumber 1, Appearance 3, Direction Rx , Type Ethernet , Component 31, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Reply 10.127.130.131 is-at 00-15-5D-C9-8C-10, length 28
[01]0ACC.4208::2024-04-02 10:26:58.739787100 [Microsoft-Windows-PktMon] PktGroupId 281474976710695, PktNumber 1, Appearance 4, Direction Rx , Type Ethernet , Component 74, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Reply 10.127.130.131 is-at 00-15-5D-C9-8C-10, length 28
[01]0ACC.4208::2024-04-02 10:26:58.739790900 [Microsoft-Windows-PktMon] PktGroupId 281474976710695, PktNumber 1, Appearance 5, Direction Tx , Type Ethernet , Component 72, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Reply 10.127.130.131 is-at 00-15-5D-C9-8C-10, length 28
[01]0ACC.4208::2024-04-02 10:26:58.739791700 [Microsoft-Windows-PktMon] PktGroupId 281474976710695, PktNumber 1, Appearance 6, Direction Tx , Type Ethernet , Component 7, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Reply 10.127.130.131 is-at 00-15-5D-C9-8C-10, length 28
[01]0000.0000::2024-04-02 10:26:58.753460000 [Microsoft-Windows-PktMon] PktGroupId 281474976710696, PktNumber 1, Appearance 1, Direction Tx , Type Ethernet , Component 69, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 (00-15-5D-C9-8C-0F) tell 10.127.130.158, length 28
[01]0000.0000::2024-04-02 10:26:58.753461200 [Microsoft-Windows-PktMon] PktGroupId 281474976710696, PktNumber 1, Appearance 2, Direction Tx , Type Ethernet , Component 6, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 (00-15-5D-C9-8C-0F) tell 10.127.130.158, length 28
[01]0000.0000::2024-04-02 10:26:58.753463300 [Microsoft-Windows-PktMon] PktGroupId 281474976710696, PktNumber 1, Appearance 3, Direction Tx , Type Ethernet , Component 74, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 (00-15-5D-C9-8C-0F) tell 10.127.130.158, length 28
[01]0000.0000::2024-04-02 10:26:58.753464000 [Microsoft-Windows-PktMon] PktGroupId 281474976710696, PktNumber 1, Appearance 4, Direction Tx , Type Ethernet , Component 31, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 (00-15-5D-C9-8C-0F) tell 10.127.130.158, length 28
[01]0000.0000::2024-04-02 10:26:58.753465400 [Microsoft-Windows-PktMon] PktGroupId 281474976710696, PktNumber 1, Appearance 5, Direction Tx , Type Ethernet , Component 31, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 (00-15-5D-C9-8C-0F) tell 10.127.130.158, length 28
[01]0000.0000::2024-04-02 10:26:58.753466000 [Microsoft-Windows-PktMon] PktGroupId 281474976710696, PktNumber 1, Appearance 6, Direction Tx , Type Ethernet , Component 26, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 (00-15-5D-C9-8C-0F) tell 10.127.130.158, length 28
[01]0000.0000::2024-04-02 10:26:58.753469100 [Microsoft-Windows-PktMon] Drop: PktGroupId 281474976710696, PktNumber 1, Appearance 7, Direction Rx , Type Ethernet , Component 139, Filter 2, DropReason Intercept Pkt Drop , DropLocation 0xE0006071, OriginalSize 42, LoggedSize 42 
    Drop: 00-15-5D-C9-8C-10 > 00-15-5D-C9-8C-0F, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 (00-15-5D-C9-8C-0F) tell 10.127.130.158, length 28
[00]0ACC.3408::2024-04-02 10:26:58.753604000 [Microsoft-Windows-PktMon] PktGroupId 140, PktNumber 1, Appearance 1, Direction Rx , Type Ethernet , Component 26, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > FF-FF-FF-FF-FF-FF, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 tell 10.127.130.158, length 28
[00]0ACC.3408::2024-04-02 10:26:58.753605400 [Microsoft-Windows-PktMon] PktGroupId 140, PktNumber 1, Appearance 2, Direction Rx , Type Ethernet , Component 31, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > FF-FF-FF-FF-FF-FF, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 tell 10.127.130.158, length 28
[00]0ACC.3408::2024-04-02 10:26:58.753606800 [Microsoft-Windows-PktMon] PktGroupId 140, PktNumber 1, Appearance 3, Direction Rx , Type Ethernet , Component 31, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > FF-FF-FF-FF-FF-FF, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 tell 10.127.130.158, length 28
[00]0ACC.3408::2024-04-02 10:26:58.753609300 [Microsoft-Windows-PktMon] PktGroupId 140, PktNumber 1, Appearance 4, Direction Rx , Type Ethernet , Component 74, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > FF-FF-FF-FF-FF-FF, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 tell 10.127.130.158, length 28
[00]0ACC.3408::2024-04-02 10:26:58.753611600 [Microsoft-Windows-PktMon] PktGroupId 140, PktNumber 1, Appearance 5, Direction Tx , Type Ethernet , Component 72, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > FF-FF-FF-FF-FF-FF, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 tell 10.127.130.158, length 28
[00]0ACC.3408::2024-04-02 10:26:58.753613100 [Microsoft-Windows-PktMon] PktGroupId 140, PktNumber 1, Appearance 6, Direction Tx , Type Ethernet , Component 7, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-10 > FF-FF-FF-FF-FF-FF, ethertype ARP (0x0806), length 42: Request who-has 10.127.130.9 tell 10.127.130.158, length 28
[00]0000.0000::2024-04-02 10:26:58.753739500 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 1, Direction Rx , Type Ethernet , Component 7, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753740400 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 2, Direction Rx , Type Ethernet , Component 72, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753743400 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 3, Direction Tx , Type Ethernet , Component 74, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753743900 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 4, Direction Tx , Type Ethernet , Component 31, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753745200 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 5, Direction Tx , Type Ethernet , Component 31, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753745600 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 6, Direction Tx , Type Ethernet , Component 26, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753759100 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 7, Direction Tx , Type Ethernet , Component 26, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753759800 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 8, Direction Tx , Type Ethernet , Component 8, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753760600 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 9, Direction Rx , Type Ethernet , Component 8, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753761300 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 10, Direction Rx , Type Ethernet , Component 26, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753762800 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 11, Direction Rx , Type Ethernet , Component 26, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753763200 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 12, Direction Rx , Type Ethernet , Component 31, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753764000 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 13, Direction Rx , Type Ethernet , Component 31, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753764500 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 14, Direction Rx , Type Ethernet , Component 74, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753769200 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 15, Direction Rx , Type Ethernet , Component 6, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]0000.0000::2024-04-02 10:26:58.753770000 [Microsoft-Windows-PktMon] PktGroupId 141, PktNumber 1, Appearance 16, Direction Rx , Type Ethernet , Component 69, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[02]0ACC.3E58::2024-04-02 10:26:58.753827500 [Microsoft-Windows-PktMon] PktGroupId 562949953421520, PktNumber 1, Appearance 1, Direction Rx , Type Ethernet , Component 26, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[02]0ACC.3E58::2024-04-02 10:26:58.753828800 [Microsoft-Windows-PktMon] PktGroupId 562949953421520, PktNumber 1, Appearance 2, Direction Rx , Type Ethernet , Component 31, Edge 2, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[02]0ACC.3E58::2024-04-02 10:26:58.753830000 [Microsoft-Windows-PktMon] PktGroupId 562949953421520, PktNumber 1, Appearance 3, Direction Rx , Type Ethernet , Component 31, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[02]0ACC.3E58::2024-04-02 10:26:58.753833600 [Microsoft-Windows-PktMon] PktGroupId 562949953421520, PktNumber 1, Appearance 4, Direction Rx , Type Ethernet , Component 74, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[02]0ACC.3E58::2024-04-02 10:26:58.753840400 [Microsoft-Windows-PktMon] PktGroupId 562949953421520, PktNumber 1, Appearance 5, Direction Rx , Type Ethernet , Component 6, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[02]0ACC.3E58::2024-04-02 10:26:58.753841000 [Microsoft-Windows-PktMon] PktGroupId 562949953421520, PktNumber 1, Appearance 6, Direction Rx , Type Ethernet , Component 69, Edge 1, Filter 2, OriginalSize 42, LoggedSize 42 
    00-15-5D-C9-8C-0F > 00-15-5D-C9-8C-10, ethertype ARP (0x0806), length 42: Reply 10.127.130.9 is-at 00-15-5D-C9-8C-0F, length 28
[00]425C.34D8::2024-04-02 10:27:05.458523900 [Microsoft-Windows-PktMon] Component 140, Type NetVsc Miniport , Name NetVsc.sys, Microsoft Hyper-V Network Adapter 
[00]425C.34D8::2024-04-02 10:27:05.458525100 [Microsoft-Windows-PktMon] Property: Component 140, PhysAddress  = 0x00155DC98C10 
[00]425C.34D8::2024-04-02 10:27:05.458525700 [Microsoft-Windows-PktMon] Property: Component 140, IfIndex  = 5 
[00]425C.34D8::2024-04-02 10:27:05.458526300 [Microsoft-Windows-PktMon] Drop Counters: Component 140, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458527000 [Microsoft-Windows-PktMon] Flow Counters: Component 140, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458527600 [Microsoft-Windows-PktMon] Component 139, Type Filter , Name vfpext.sys, VFP Extension 
[00]425C.34D8::2024-04-02 10:27:05.458528000 [Microsoft-Windows-PktMon] Property: Component 139, LowerIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458528400 [Microsoft-Windows-PktMon] Property: Component 139, MiniportIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458528700 [Microsoft-Windows-PktMon] Property: Component 139, IfIndex  = 20 
[00]425C.34D8::2024-04-02 10:27:05.458529000 [Microsoft-Windows-PktMon] Drop Counters: Component 139, Direction In = Rx , Packets In 2, Bytes In 84, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458529500 [Microsoft-Windows-PktMon] Flow Counters: Component 139, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458530000 [Microsoft-Windows-PktMon] Flow Counters: Component 139, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458530400 [Microsoft-Windows-PktMon] Component 138, Type VmsMiniport , Name vmswitch.sys, Ethernet 
[00]425C.34D8::2024-04-02 10:27:05.458530700 [Microsoft-Windows-PktMon] Property: Component 138, VmsExtIfIndex  = 10 
[00]425C.34D8::2024-04-02 10:27:05.458531500 [Microsoft-Windows-PktMon] Property: Component 138, VMSwitchName  = nat 
[00]425C.34D8::2024-04-02 10:27:05.458531800 [Microsoft-Windows-PktMon] Property: Component 138, PhysAddress  = 0x00155D07E547 
[00]425C.34D8::2024-04-02 10:27:05.458532300 [Microsoft-Windows-PktMon] Property: Component 138, IfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458532900 [Microsoft-Windows-PktMon] Drop Counters: Component 138, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458533300 [Microsoft-Windows-PktMon] Component 137, Type VmsMiniport , Name vmswitch.sys, 7fc9affdd015809 
[00]425C.34D8::2024-04-02 10:27:05.458533600 [Microsoft-Windows-PktMon] Property: Component 137, VmsExtIfIndex  = 10 
[00]425C.34D8::2024-04-02 10:27:05.458533900 [Microsoft-Windows-PktMon] Property: Component 137, VMSwitchName  = nat 
[00]425C.34D8::2024-04-02 10:27:05.458534200 [Microsoft-Windows-PktMon] Property: Component 137, PhysAddress  = 0x00155D07FDC7 
[00]425C.34D8::2024-04-02 10:27:05.458534500 [Microsoft-Windows-PktMon] Property: Component 137, IfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458534800 [Microsoft-Windows-PktMon] Drop Counters: Component 137, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458535100 [Microsoft-Windows-PktMon] Component 136, Type VmsMiniport , Name vmswitch.sys, Ethernet 
[00]425C.34D8::2024-04-02 10:27:05.458535500 [Microsoft-Windows-PktMon] Property: Component 136, VmsExtIfIndex  = 10 
[00]425C.34D8::2024-04-02 10:27:05.458535700 [Microsoft-Windows-PktMon] Property: Component 136, VMSwitchName  = nat 
[00]425C.34D8::2024-04-02 10:27:05.458536000 [Microsoft-Windows-PktMon] Property: Component 136, PhysAddress  = 0x00155D07EE72 
[00]425C.34D8::2024-04-02 10:27:05.458536300 [Microsoft-Windows-PktMon] Property: Component 136, IfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458536600 [Microsoft-Windows-PktMon] Drop Counters: Component 136, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458537000 [Microsoft-Windows-PktMon] Component 135, Type VmsMiniport , Name vmswitch.sys, Ethernet 
[00]425C.34D8::2024-04-02 10:27:05.458537400 [Microsoft-Windows-PktMon] Property: Component 135, VmsExtIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458537600 [Microsoft-Windows-PktMon] Property: Component 135, VMSwitchName  = cd9e5448073a587f400da92998ec9b352227cd54e3dc80fb9bb7d6bcbe7305a5 
[00]425C.34D8::2024-04-02 10:27:05.458538000 [Microsoft-Windows-PktMon] Property: Component 135, PhysAddress  = 0x00155D3AAA31 
[00]425C.34D8::2024-04-02 10:27:05.458538200 [Microsoft-Windows-PktMon] Property: Component 135, IfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458538500 [Microsoft-Windows-PktMon] Drop Counters: Component 135, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458538900 [Microsoft-Windows-PktMon] Component 134, Type VmsMiniport , Name vmswitch.sys, cbr0_ep 
[00]425C.34D8::2024-04-02 10:27:05.458539200 [Microsoft-Windows-PktMon] Property: Component 134, VmsExtIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458539400 [Microsoft-Windows-PktMon] Property: Component 134, VMSwitchName  = cd9e5448073a587f400da92998ec9b352227cd54e3dc80fb9bb7d6bcbe7305a5 
[00]425C.34D8::2024-04-02 10:27:05.458539800 [Microsoft-Windows-PktMon] Property: Component 134, PhysAddress  = 0x00155DC5E288 
[00]425C.34D8::2024-04-02 10:27:05.458540100 [Microsoft-Windows-PktMon] Property: Component 134, IfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458540800 [Microsoft-Windows-PktMon] Drop Counters: Component 134, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458541200 [Microsoft-Windows-PktMon] Component 133, Type VmsMiniport , Name vmswitch.sys, Ethernet 
[00]425C.34D8::2024-04-02 10:27:05.458541400 [Microsoft-Windows-PktMon] Property: Component 133, VmsExtIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458541800 [Microsoft-Windows-PktMon] Property: Component 133, VMSwitchName  = cd9e5448073a587f400da92998ec9b352227cd54e3dc80fb9bb7d6bcbe7305a5 
[00]425C.34D8::2024-04-02 10:27:05.458542200 [Microsoft-Windows-PktMon] Property: Component 133, PhysAddress  = 0x00155DC98C10 
[00]425C.34D8::2024-04-02 10:27:05.458542800 [Microsoft-Windows-PktMon] Property: Component 133, IfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458543200 [Microsoft-Windows-PktMon] Drop Counters: Component 133, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458543400 [Microsoft-Windows-PktMon] Component 132, Type VmsProtocolNic , Name vmswitch.sys, NULL 
[00]425C.34D8::2024-04-02 10:27:05.458543800 [Microsoft-Windows-PktMon] Property: Component 132, VmsExtIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458544100 [Microsoft-Windows-PktMon] Property: Component 132, VMSwitchName  = cd9e5448073a587f400da92998ec9b352227cd54e3dc80fb9bb7d6bcbe7305a5 
[00]425C.34D8::2024-04-02 10:27:05.458544400 [Microsoft-Windows-PktMon] Property: Component 132, LowestIfIndex  = 5 
[00]425C.34D8::2024-04-02 10:27:05.458544700 [Microsoft-Windows-PktMon] Drop Counters: Component 132, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458545000 [Microsoft-Windows-PktMon] Component 131, Type VmsExtMiniport , Name vmswitch.sys, NULL 
[00]425C.34D8::2024-04-02 10:27:05.458545300 [Microsoft-Windows-PktMon] Property: Component 131, IfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458545600 [Microsoft-Windows-PktMon] Property: Component 131, VMSwitchName  = cd9e5448073a587f400da92998ec9b352227cd54e3dc80fb9bb7d6bcbe7305a5 
[00]425C.34D8::2024-04-02 10:27:05.458545900 [Microsoft-Windows-PktMon] Drop Counters: Component 131, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458546200 [Microsoft-Windows-PktMon] Component 130, Type VmsMiniport , Name vmswitch.sys, nat 
[00]425C.34D8::2024-04-02 10:27:05.458546800 [Microsoft-Windows-PktMon] Property: Component 130, VmsExtIfIndex  = 10 
[00]425C.34D8::2024-04-02 10:27:05.458547100 [Microsoft-Windows-PktMon] Property: Component 130, VMSwitchName  = nat 
[00]425C.34D8::2024-04-02 10:27:05.458547400 [Microsoft-Windows-PktMon] Property: Component 130, PhysAddress  = 0x00155D07EAB1 
[00]425C.34D8::2024-04-02 10:27:05.458548000 [Microsoft-Windows-PktMon] Property: Component 130, IfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458548200 [Microsoft-Windows-PktMon] Drop Counters: Component 130, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458548600 [Microsoft-Windows-PktMon] Component 129, Type VmsExtMiniport , Name vmswitch.sys, NULL 
[00]425C.34D8::2024-04-02 10:27:05.458548900 [Microsoft-Windows-PktMon] Property: Component 129, IfIndex  = 10 
[00]425C.34D8::2024-04-02 10:27:05.458549200 [Microsoft-Windows-PktMon] Property: Component 129, VMSwitchName  = nat 
[00]425C.34D8::2024-04-02 10:27:05.458549500 [Microsoft-Windows-PktMon] Drop Counters: Component 129, Direction In = Egress , Packets In 0, Bytes In 0, Direction Out = Ingress , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458549800 [Microsoft-Windows-PktMon] Component 128, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458550100 [Microsoft-Windows-PktMon] Property: Component 128, IP Address  = fe80::9fc9:846:bd43:3788 
[00]425C.34D8::2024-04-02 10:27:05.458550400 [Microsoft-Windows-PktMon] Property: Component 128, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458550700 [Microsoft-Windows-PktMon] Drop Counters: Component 128, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458551200 [Microsoft-Windows-PktMon] Flow Counters: Component 128, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458551600 [Microsoft-Windows-PktMon] Flow Counters: Component 128, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458552000 [Microsoft-Windows-PktMon] Component 127, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458552300 [Microsoft-Windows-PktMon] Property: Component 127, IP Address  = fe80::9c0d:8ff3:684a:43b 
[00]425C.34D8::2024-04-02 10:27:05.458552700 [Microsoft-Windows-PktMon] Property: Component 127, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458553000 [Microsoft-Windows-PktMon] Drop Counters: Component 127, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458553400 [Microsoft-Windows-PktMon] Flow Counters: Component 127, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458553900 [Microsoft-Windows-PktMon] Flow Counters: Component 127, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458554800 [Microsoft-Windows-PktMon] Component 126, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458555100 [Microsoft-Windows-PktMon] Property: Component 126, IP Address  = fe80::8a32:cc44:41db:d5c3 
[00]425C.34D8::2024-04-02 10:27:05.458555400 [Microsoft-Windows-PktMon] Property: Component 126, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458555700 [Microsoft-Windows-PktMon] Drop Counters: Component 126, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458556400 [Microsoft-Windows-PktMon] Flow Counters: Component 126, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458556800 [Microsoft-Windows-PktMon] Flow Counters: Component 126, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458557000 [Microsoft-Windows-PktMon] Component 125, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458557300 [Microsoft-Windows-PktMon] Property: Component 125, IP Address  = fe80::5820:3f2a:912b:c9c8 
[00]425C.34D8::2024-04-02 10:27:05.458557600 [Microsoft-Windows-PktMon] Property: Component 125, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458557900 [Microsoft-Windows-PktMon] Drop Counters: Component 125, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458558300 [Microsoft-Windows-PktMon] Flow Counters: Component 125, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458558700 [Microsoft-Windows-PktMon] Flow Counters: Component 125, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458559000 [Microsoft-Windows-PktMon] Component 124, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458559300 [Microsoft-Windows-PktMon] Property: Component 124, IP Address  = ::1 
[00]425C.34D8::2024-04-02 10:27:05.458559600 [Microsoft-Windows-PktMon] Property: Component 124, MiniportIfIndex  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458559800 [Microsoft-Windows-PktMon] Drop Counters: Component 124, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458560100 [Microsoft-Windows-PktMon] Flow Counters: Component 124, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458560500 [Microsoft-Windows-PktMon] Flow Counters: Component 124, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458560800 [Microsoft-Windows-PktMon] Component 123, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458561100 [Microsoft-Windows-PktMon] Property: Component 123, IP Address  = 172.21.192.1 
[00]425C.34D8::2024-04-02 10:27:05.458561500 [Microsoft-Windows-PktMon] Property: Component 123, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458561800 [Microsoft-Windows-PktMon] Drop Counters: Component 123, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458562000 [Microsoft-Windows-PktMon] Flow Counters: Component 123, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458562300 [Microsoft-Windows-PktMon] Flow Counters: Component 123, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458562700 [Microsoft-Windows-PktMon] Component 122, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458563200 [Microsoft-Windows-PktMon] Property: Component 122, IP Address  = 10.244.3.2 
[00]425C.34D8::2024-04-02 10:27:05.458563500 [Microsoft-Windows-PktMon] Property: Component 122, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458563800 [Microsoft-Windows-PktMon] Drop Counters: Component 122, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458564200 [Microsoft-Windows-PktMon] Flow Counters: Component 122, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458564500 [Microsoft-Windows-PktMon] Flow Counters: Component 122, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458564700 [Microsoft-Windows-PktMon] Component 121, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458565000 [Microsoft-Windows-PktMon] Property: Component 121, IP Address  = 10.127.130.158 
[00]425C.34D8::2024-04-02 10:27:05.458565300 [Microsoft-Windows-PktMon] Property: Component 121, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458565600 [Microsoft-Windows-PktMon] Drop Counters: Component 121, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458565900 [Microsoft-Windows-PktMon] Flow Counters: Component 121, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458566200 [Microsoft-Windows-PktMon] Flow Counters: Component 121, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458567000 [Microsoft-Windows-PktMon] Component 120, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458567300 [Microsoft-Windows-PktMon] Property: Component 120, IP Address  = 172.26.32.1 
[00]425C.34D8::2024-04-02 10:27:05.458567500 [Microsoft-Windows-PktMon] Property: Component 120, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458567800 [Microsoft-Windows-PktMon] Drop Counters: Component 120, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458568100 [Microsoft-Windows-PktMon] Flow Counters: Component 120, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458568500 [Microsoft-Windows-PktMon] Flow Counters: Component 120, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458568800 [Microsoft-Windows-PktMon] Component 119, Type HTTP Protocol , Name http.sys, HTTP 
[00]425C.34D8::2024-04-02 10:27:05.458569000 [Microsoft-Windows-PktMon] Property: Component 119, IP Address  = 127.0.0.1 
[00]425C.34D8::2024-04-02 10:27:05.458569200 [Microsoft-Windows-PktMon] Property: Component 119, MiniportIfIndex  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458569500 [Microsoft-Windows-PktMon] Drop Counters: Component 119, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458569900 [Microsoft-Windows-PktMon] Flow Counters: Component 119, Edge Upper, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458570200 [Microsoft-Windows-PktMon] Flow Counters: Component 119, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458570600 [Microsoft-Windows-PktMon] Component 118, Type IPSec , Name tcpip.sys, IPSEC 
[00]425C.34D8::2024-04-02 10:27:05.458570900 [Microsoft-Windows-PktMon] Drop Counters: Component 118, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458571400 [Microsoft-Windows-PktMon] Component 117, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458571800 [Microsoft-Windows-PktMon] Property: Component 117, IP Address  = fe80::caf6:4e61:8641:b884 
[00]425C.34D8::2024-04-02 10:27:05.458572100 [Microsoft-Windows-PktMon] Property: Component 117, Compartment ID  = 4 
[00]425C.34D8::2024-04-02 10:27:05.458572400 [Microsoft-Windows-PktMon] Property: Component 117, IpIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458572600 [Microsoft-Windows-PktMon] Drop Counters: Component 117, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458573000 [Microsoft-Windows-PktMon] Component 116, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458573200 [Microsoft-Windows-PktMon] Property: Component 116, IP Address  = fe80::9fc9:846:bd43:3788 
[00]425C.34D8::2024-04-02 10:27:05.458573400 [Microsoft-Windows-PktMon] Property: Component 116, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458573600 [Microsoft-Windows-PktMon] Property: Component 116, IpIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458573900 [Microsoft-Windows-PktMon] Drop Counters: Component 116, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458574300 [Microsoft-Windows-PktMon] Component 115, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458574500 [Microsoft-Windows-PktMon] Property: Component 115, IP Address  = fe80::8b06:1422:2e08:3a8c 
[00]425C.34D8::2024-04-02 10:27:05.458574700 [Microsoft-Windows-PktMon] Property: Component 115, Compartment ID  = 3 
[00]425C.34D8::2024-04-02 10:27:05.458574900 [Microsoft-Windows-PktMon] Property: Component 115, IpIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458575200 [Microsoft-Windows-PktMon] Drop Counters: Component 115, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458575500 [Microsoft-Windows-PktMon] Component 114, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458575700 [Microsoft-Windows-PktMon] Property: Component 114, IP Address  = fe80::280b:54bf:b135:79ef 
[00]425C.34D8::2024-04-02 10:27:05.458575900 [Microsoft-Windows-PktMon] Property: Component 114, Compartment ID  = 2 
[00]425C.34D8::2024-04-02 10:27:05.458576000 [Microsoft-Windows-PktMon] Property: Component 114, IpIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458576500 [Microsoft-Windows-PktMon] Drop Counters: Component 114, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458576800 [Microsoft-Windows-PktMon] Component 113, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458577100 [Microsoft-Windows-PktMon] Property: Component 113, IP Address  = fe80::9c0d:8ff3:684a:43b 
[00]425C.34D8::2024-04-02 10:27:05.458577400 [Microsoft-Windows-PktMon] Property: Component 113, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458577700 [Microsoft-Windows-PktMon] Property: Component 113, IpIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458578000 [Microsoft-Windows-PktMon] Drop Counters: Component 113, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458578300 [Microsoft-Windows-PktMon] Component 112, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458578500 [Microsoft-Windows-PktMon] Property: Component 112, IP Address  = fe80::8a32:cc44:41db:d5c3 
[00]425C.34D8::2024-04-02 10:27:05.458578800 [Microsoft-Windows-PktMon] Property: Component 112, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458579000 [Microsoft-Windows-PktMon] Property: Component 112, IpIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458579300 [Microsoft-Windows-PktMon] Drop Counters: Component 112, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458579600 [Microsoft-Windows-PktMon] Component 111, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458579900 [Microsoft-Windows-PktMon] Property: Component 111, IP Address  = fe80::5820:3f2a:912b:c9c8 
[00]425C.34D8::2024-04-02 10:27:05.458580100 [Microsoft-Windows-PktMon] Property: Component 111, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458580300 [Microsoft-Windows-PktMon] Property: Component 111, IpIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458580600 [Microsoft-Windows-PktMon] Drop Counters: Component 111, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458580900 [Microsoft-Windows-PktMon] Component 110, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458581100 [Microsoft-Windows-PktMon] Property: Component 110, IP Address  = ::1 
[00]425C.34D8::2024-04-02 10:27:05.458581300 [Microsoft-Windows-PktMon] Property: Component 110, Compartment ID  = 4 
[00]425C.34D8::2024-04-02 10:27:05.458581500 [Microsoft-Windows-PktMon] Property: Component 110, IpIfIndex  = 39 
[00]425C.34D8::2024-04-02 10:27:05.458581700 [Microsoft-Windows-PktMon] Drop Counters: Component 110, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458582000 [Microsoft-Windows-PktMon] Component 109, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458582200 [Microsoft-Windows-PktMon] Property: Component 109, IP Address  = ::1 
[00]425C.34D8::2024-04-02 10:27:05.458582400 [Microsoft-Windows-PktMon] Property: Component 109, Compartment ID  = 3 
[00]425C.34D8::2024-04-02 10:27:05.458582600 [Microsoft-Windows-PktMon] Property: Component 109, IpIfIndex  = 30 
[00]425C.34D8::2024-04-02 10:27:05.458582800 [Microsoft-Windows-PktMon] Drop Counters: Component 109, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458583100 [Microsoft-Windows-PktMon] Component 108, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458583300 [Microsoft-Windows-PktMon] Property: Component 108, IP Address  = ::1 
[00]425C.34D8::2024-04-02 10:27:05.458583500 [Microsoft-Windows-PktMon] Property: Component 108, Compartment ID  = 2 
[00]425C.34D8::2024-04-02 10:27:05.458583700 [Microsoft-Windows-PktMon] Property: Component 108, IpIfIndex  = 25 
[00]425C.34D8::2024-04-02 10:27:05.458583900 [Microsoft-Windows-PktMon] Drop Counters: Component 108, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458584200 [Microsoft-Windows-PktMon] Component 107, Type 11, Name tcpip.sys, TCP/IPv6 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458584400 [Microsoft-Windows-PktMon] Property: Component 107, IP Address  = ::1 
[00]425C.34D8::2024-04-02 10:27:05.458584600 [Microsoft-Windows-PktMon] Property: Component 107, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458584800 [Microsoft-Windows-PktMon] Property: Component 107, IpIfIndex  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458585100 [Microsoft-Windows-PktMon] Drop Counters: Component 107, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458585300 [Microsoft-Windows-PktMon] Component 106, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458585700 [Microsoft-Windows-PktMon] Property: Component 106, IP Address  = 172.26.45.95 
[00]425C.34D8::2024-04-02 10:27:05.458585900 [Microsoft-Windows-PktMon] Property: Component 106, Compartment ID  = 4 
[00]425C.34D8::2024-04-02 10:27:05.458586200 [Microsoft-Windows-PktMon] Property: Component 106, IpIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458586600 [Microsoft-Windows-PktMon] Drop Counters: Component 106, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458587000 [Microsoft-Windows-PktMon] Component 105, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458587400 [Microsoft-Windows-PktMon] Property: Component 105, IP Address  = 172.21.192.1 
[00]425C.34D8::2024-04-02 10:27:05.458587700 [Microsoft-Windows-PktMon] Property: Component 105, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458587900 [Microsoft-Windows-PktMon] Property: Component 105, IpIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458588100 [Microsoft-Windows-PktMon] Drop Counters: Component 105, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458588400 [Microsoft-Windows-PktMon] Component 104, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458588600 [Microsoft-Windows-PktMon] Property: Component 104, IP Address  = 172.26.38.61 
[00]425C.34D8::2024-04-02 10:27:05.458588800 [Microsoft-Windows-PktMon] Property: Component 104, Compartment ID  = 3 
[00]425C.34D8::2024-04-02 10:27:05.458589000 [Microsoft-Windows-PktMon] Property: Component 104, IpIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458589200 [Microsoft-Windows-PktMon] Drop Counters: Component 104, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458589500 [Microsoft-Windows-PktMon] Component 103, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458589600 [Microsoft-Windows-PktMon] Property: Component 103, IP Address  = 10.127.130.131 
[00]425C.34D8::2024-04-02 10:27:05.458589800 [Microsoft-Windows-PktMon] Property: Component 103, Compartment ID  = 2 
[00]425C.34D8::2024-04-02 10:27:05.458590000 [Microsoft-Windows-PktMon] Property: Component 103, IpIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458590600 [Microsoft-Windows-PktMon] Drop Counters: Component 103, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458590900 [Microsoft-Windows-PktMon] Component 102, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458591100 [Microsoft-Windows-PktMon] Property: Component 102, IP Address  = 10.244.3.2 
[00]425C.34D8::2024-04-02 10:27:05.458591400 [Microsoft-Windows-PktMon] Property: Component 102, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458591700 [Microsoft-Windows-PktMon] Property: Component 102, IpIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458592000 [Microsoft-Windows-PktMon] Drop Counters: Component 102, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458592300 [Microsoft-Windows-PktMon] Component 101, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458592600 [Microsoft-Windows-PktMon] Property: Component 101, IP Address  = 10.127.130.158 
[00]425C.34D8::2024-04-02 10:27:05.458592800 [Microsoft-Windows-PktMon] Property: Component 101, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458593100 [Microsoft-Windows-PktMon] Property: Component 101, IpIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458593400 [Microsoft-Windows-PktMon] Drop Counters: Component 101, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458593700 [Microsoft-Windows-PktMon] Component 100, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458594000 [Microsoft-Windows-PktMon] Property: Component 100, IP Address  = 172.26.32.1 
[00]425C.34D8::2024-04-02 10:27:05.458594200 [Microsoft-Windows-PktMon] Property: Component 100, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458594400 [Microsoft-Windows-PktMon] Property: Component 100, IpIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458594700 [Microsoft-Windows-PktMon] Drop Counters: Component 100, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458595100 [Microsoft-Windows-PktMon] Component 99, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458595400 [Microsoft-Windows-PktMon] Property: Component 99, IP Address  = 127.0.0.1 
[00]425C.34D8::2024-04-02 10:27:05.458595700 [Microsoft-Windows-PktMon] Property: Component 99, Compartment ID  = 4 
[00]425C.34D8::2024-04-02 10:27:05.458595900 [Microsoft-Windows-PktMon] Property: Component 99, IpIfIndex  = 39 
[00]425C.34D8::2024-04-02 10:27:05.458596200 [Microsoft-Windows-PktMon] Drop Counters: Component 99, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458596600 [Microsoft-Windows-PktMon] Component 98, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458596900 [Microsoft-Windows-PktMon] Property: Component 98, IP Address  = 127.0.0.1 
[00]425C.34D8::2024-04-02 10:27:05.458597200 [Microsoft-Windows-PktMon] Property: Component 98, Compartment ID  = 3 
[00]425C.34D8::2024-04-02 10:27:05.458597500 [Microsoft-Windows-PktMon] Property: Component 98, IpIfIndex  = 30 
[00]425C.34D8::2024-04-02 10:27:05.458597800 [Microsoft-Windows-PktMon] Drop Counters: Component 98, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458598200 [Microsoft-Windows-PktMon] Component 97, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458598400 [Microsoft-Windows-PktMon] Property: Component 97, IP Address  = 127.0.0.1 
[00]425C.34D8::2024-04-02 10:27:05.458598700 [Microsoft-Windows-PktMon] Property: Component 97, Compartment ID  = 2 
[00]425C.34D8::2024-04-02 10:27:05.458598900 [Microsoft-Windows-PktMon] Property: Component 97, IpIfIndex  = 25 
[00]425C.34D8::2024-04-02 10:27:05.458599200 [Microsoft-Windows-PktMon] Drop Counters: Component 97, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458599500 [Microsoft-Windows-PktMon] Component 96, Type 11, Name tcpip.sys, TCP/IPv4 - L3/L4 
[00]425C.34D8::2024-04-02 10:27:05.458599700 [Microsoft-Windows-PktMon] Property: Component 96, IP Address  = 127.0.0.1 
[00]425C.34D8::2024-04-02 10:27:05.458599900 [Microsoft-Windows-PktMon] Property: Component 96, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458600100 [Microsoft-Windows-PktMon] Property: Component 96, IpIfIndex  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458600400 [Microsoft-Windows-PktMon] Drop Counters: Component 96, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458600700 [Microsoft-Windows-PktMon] Component 95, Type Protocol , Name tcpip.sys, TCP/IPv6 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458601000 [Microsoft-Windows-PktMon] Property: Component 95, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458601200 [Microsoft-Windows-PktMon] Property: Component 95, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458601700 [Microsoft-Windows-PktMon] Property: Component 95, IpIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458601900 [Microsoft-Windows-PktMon] Property: Component 95, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458602200 [Microsoft-Windows-PktMon] Drop Counters: Component 95, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458602400 [Microsoft-Windows-PktMon] Component 94, Type Protocol , Name tcpip.sys, TCP/IPv6 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458602600 [Microsoft-Windows-PktMon] Property: Component 94, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458602900 [Microsoft-Windows-PktMon] Property: Component 94, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458603200 [Microsoft-Windows-PktMon] Property: Component 94, IpIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458603500 [Microsoft-Windows-PktMon] Property: Component 94, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458603700 [Microsoft-Windows-PktMon] Drop Counters: Component 94, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458604000 [Microsoft-Windows-PktMon] Component 93, Type Protocol , Name tcpip.sys, TCP/IPv6 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458604200 [Microsoft-Windows-PktMon] Property: Component 93, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458604500 [Microsoft-Windows-PktMon] Property: Component 93, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458604800 [Microsoft-Windows-PktMon] Property: Component 93, IpIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458605000 [Microsoft-Windows-PktMon] Property: Component 93, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458605300 [Microsoft-Windows-PktMon] Drop Counters: Component 93, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458605500 [Microsoft-Windows-PktMon] Component 92, Type Protocol , Name tcpip.sys, TCP/IPv6 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458605800 [Microsoft-Windows-PktMon] Property: Component 92, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458606100 [Microsoft-Windows-PktMon] Property: Component 92, Compartment ID  = 2 
[00]425C.34D8::2024-04-02 10:27:05.458606900 [Microsoft-Windows-PktMon] Property: Component 92, IpIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458607100 [Microsoft-Windows-PktMon] Property: Component 92, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458607400 [Microsoft-Windows-PktMon] Drop Counters: Component 92, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458607600 [Microsoft-Windows-PktMon] Component 91, Type Protocol , Name tcpip.sys, TCP/IPv6 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458608000 [Microsoft-Windows-PktMon] Property: Component 91, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458608200 [Microsoft-Windows-PktMon] Property: Component 91, Compartment ID  = 3 
[00]425C.34D8::2024-04-02 10:27:05.458608400 [Microsoft-Windows-PktMon] Property: Component 91, IpIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458608600 [Microsoft-Windows-PktMon] Property: Component 91, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458608900 [Microsoft-Windows-PktMon] Drop Counters: Component 91, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458609200 [Microsoft-Windows-PktMon] Component 90, Type Protocol , Name tcpip.sys, TCP/IPv6 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458609400 [Microsoft-Windows-PktMon] Property: Component 90, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458609700 [Microsoft-Windows-PktMon] Property: Component 90, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458609900 [Microsoft-Windows-PktMon] Property: Component 90, IpIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458610100 [Microsoft-Windows-PktMon] Property: Component 90, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458610400 [Microsoft-Windows-PktMon] Drop Counters: Component 90, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458610600 [Microsoft-Windows-PktMon] Component 89, Type Protocol , Name tcpip.sys, TCP/IPv6 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458610800 [Microsoft-Windows-PktMon] Property: Component 89, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458611000 [Microsoft-Windows-PktMon] Property: Component 89, Compartment ID  = 4 
[00]425C.34D8::2024-04-02 10:27:05.458611200 [Microsoft-Windows-PktMon] Property: Component 89, IpIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458611400 [Microsoft-Windows-PktMon] Property: Component 89, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458611600 [Microsoft-Windows-PktMon] Drop Counters: Component 89, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458611900 [Microsoft-Windows-PktMon] Component 88, Type Protocol , Name tcpip.sys, TCP/IPv4 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458612200 [Microsoft-Windows-PktMon] Property: Component 88, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458612500 [Microsoft-Windows-PktMon] Property: Component 88, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458612900 [Microsoft-Windows-PktMon] Property: Component 88, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458613100 [Microsoft-Windows-PktMon] Property: Component 88, IpIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458613300 [Microsoft-Windows-PktMon] Property: Component 88, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458613500 [Microsoft-Windows-PktMon] Drop Counters: Component 88, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458613900 [Microsoft-Windows-PktMon] Component 87, Type Protocol , Name tcpip.sys, TCP/IPv4 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458614100 [Microsoft-Windows-PktMon] Property: Component 87, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458614300 [Microsoft-Windows-PktMon] Property: Component 87, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458614500 [Microsoft-Windows-PktMon] Property: Component 87, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458614700 [Microsoft-Windows-PktMon] Property: Component 87, IpIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458614900 [Microsoft-Windows-PktMon] Property: Component 87, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458615200 [Microsoft-Windows-PktMon] Drop Counters: Component 87, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458615400 [Microsoft-Windows-PktMon] Component 86, Type Protocol , Name tcpip.sys, TCP/IPv4 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458615600 [Microsoft-Windows-PktMon] Property: Component 86, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458615800 [Microsoft-Windows-PktMon] Property: Component 86, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458616100 [Microsoft-Windows-PktMon] Property: Component 86, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458616300 [Microsoft-Windows-PktMon] Property: Component 86, IpIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458616500 [Microsoft-Windows-PktMon] Property: Component 86, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458616800 [Microsoft-Windows-PktMon] Drop Counters: Component 86, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458617100 [Microsoft-Windows-PktMon] Component 85, Type Protocol , Name tcpip.sys, TCP/IPv4 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458617300 [Microsoft-Windows-PktMon] Property: Component 85, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458617500 [Microsoft-Windows-PktMon] Property: Component 85, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458617800 [Microsoft-Windows-PktMon] Property: Component 85, Compartment ID  = 2 
[00]425C.34D8::2024-04-02 10:27:05.458618000 [Microsoft-Windows-PktMon] Property: Component 85, IpIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458618200 [Microsoft-Windows-PktMon] Property: Component 85, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458618900 [Microsoft-Windows-PktMon] Drop Counters: Component 85, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458619200 [Microsoft-Windows-PktMon] Component 84, Type Protocol , Name tcpip.sys, TCP/IPv4 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458619400 [Microsoft-Windows-PktMon] Property: Component 84, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458619600 [Microsoft-Windows-PktMon] Property: Component 84, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458619900 [Microsoft-Windows-PktMon] Property: Component 84, Compartment ID  = 3 
[00]425C.34D8::2024-04-02 10:27:05.458620200 [Microsoft-Windows-PktMon] Property: Component 84, IpIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458620400 [Microsoft-Windows-PktMon] Property: Component 84, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458620700 [Microsoft-Windows-PktMon] Drop Counters: Component 84, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458620900 [Microsoft-Windows-PktMon] Component 83, Type Protocol , Name tcpip.sys, TCP/IPv4 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458621200 [Microsoft-Windows-PktMon] Property: Component 83, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458621400 [Microsoft-Windows-PktMon] Property: Component 83, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458621700 [Microsoft-Windows-PktMon] Property: Component 83, Compartment ID  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458622000 [Microsoft-Windows-PktMon] Property: Component 83, IpIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458622200 [Microsoft-Windows-PktMon] Property: Component 83, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458622500 [Microsoft-Windows-PktMon] Drop Counters: Component 83, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458622800 [Microsoft-Windows-PktMon] Component 82, Type Protocol , Name tcpip.sys, TCP/IPv4 - L2 
[00]425C.34D8::2024-04-02 10:27:05.458623000 [Microsoft-Windows-PktMon] Property: Component 82, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458623300 [Microsoft-Windows-PktMon] Property: Component 82, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458623500 [Microsoft-Windows-PktMon] Property: Component 82, Compartment ID  = 4 
[00]425C.34D8::2024-04-02 10:27:05.458623700 [Microsoft-Windows-PktMon] Property: Component 82, IpIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458624000 [Microsoft-Windows-PktMon] Property: Component 82, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458624200 [Microsoft-Windows-PktMon] Drop Counters: Component 82, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458624500 [Microsoft-Windows-PktMon] Component 81, Type Protocol , Name vmswitch.sys, VMSVSP 
[00]425C.34D8::2024-04-02 10:27:05.458625000 [Microsoft-Windows-PktMon] Property: Component 81, MiniportIfIndex  = 10 
[00]425C.34D8::2024-04-02 10:27:05.458625200 [Microsoft-Windows-PktMon] Property: Component 81, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458625500 [Microsoft-Windows-PktMon] Drop Counters: Component 81, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458625900 [Microsoft-Windows-PktMon] Flow Counters: Component 81, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458626200 [Microsoft-Windows-PktMon] Component 80, Type Protocol , Name NULL, RDMANDK 
[00]425C.34D8::2024-04-02 10:27:05.458626400 [Microsoft-Windows-PktMon] Property: Component 80, EtherType  = 0 
[00]425C.34D8::2024-04-02 10:27:05.458626700 [Microsoft-Windows-PktMon] Property: Component 80, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458626900 [Microsoft-Windows-PktMon] Property: Component 80, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458627200 [Microsoft-Windows-PktMon] Drop Counters: Component 80, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458627500 [Microsoft-Windows-PktMon] Flow Counters: Component 80, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458627800 [Microsoft-Windows-PktMon] Component 79, Type Protocol , Name rspndr.sys, RSPNDR 
[00]425C.34D8::2024-04-02 10:27:05.458628100 [Microsoft-Windows-PktMon] Property: Component 79, EtherType  = VLAN  
[00]425C.34D8::2024-04-02 10:27:05.458628300 [Microsoft-Windows-PktMon] Property: Component 79, EtherType  = LLTD  
[00]425C.34D8::2024-04-02 10:27:05.458628500 [Microsoft-Windows-PktMon] Property: Component 79, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458628800 [Microsoft-Windows-PktMon] Property: Component 79, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458629100 [Microsoft-Windows-PktMon] Drop Counters: Component 79, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458629500 [Microsoft-Windows-PktMon] Flow Counters: Component 79, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458629700 [Microsoft-Windows-PktMon] Component 78, Type Protocol , Name tcpip.sys, TCPIP 
[00]425C.34D8::2024-04-02 10:27:05.458630000 [Microsoft-Windows-PktMon] Property: Component 78, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458630300 [Microsoft-Windows-PktMon] Property: Component 78, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458630600 [Microsoft-Windows-PktMon] Property: Component 78, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458630800 [Microsoft-Windows-PktMon] Property: Component 78, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458631200 [Microsoft-Windows-PktMon] Drop Counters: Component 78, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458631600 [Microsoft-Windows-PktMon] Flow Counters: Component 78, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458631900 [Microsoft-Windows-PktMon] Component 77, Type Protocol , Name tcpip.sys, TCPIP6 
[00]425C.34D8::2024-04-02 10:27:05.458632200 [Microsoft-Windows-PktMon] Property: Component 77, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458632400 [Microsoft-Windows-PktMon] Property: Component 77, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458632700 [Microsoft-Windows-PktMon] Property: Component 77, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458633000 [Microsoft-Windows-PktMon] Drop Counters: Component 77, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458633600 [Microsoft-Windows-PktMon] Flow Counters: Component 77, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458633900 [Microsoft-Windows-PktMon] Component 76, Type Protocol , Name mslldp.sys, MSLLDP 
[00]425C.34D8::2024-04-02 10:27:05.458634100 [Microsoft-Windows-PktMon] Property: Component 76, EtherType  = LLDP  
[00]425C.34D8::2024-04-02 10:27:05.458634200 [Microsoft-Windows-PktMon] Property: Component 76, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458634500 [Microsoft-Windows-PktMon] Property: Component 76, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458634800 [Microsoft-Windows-PktMon] Drop Counters: Component 76, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458635000 [Microsoft-Windows-PktMon] Flow Counters: Component 76, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458635400 [Microsoft-Windows-PktMon] Component 75, Type Protocol , Name lltdio.sys, LLTDIO 
[00]425C.34D8::2024-04-02 10:27:05.458635600 [Microsoft-Windows-PktMon] Property: Component 75, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458635800 [Microsoft-Windows-PktMon] Property: Component 75, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458636100 [Microsoft-Windows-PktMon] Drop Counters: Component 75, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458636400 [Microsoft-Windows-PktMon] Flow Counters: Component 75, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458636800 [Microsoft-Windows-PktMon] Component 74, Type Protocol , Name vmswitch.sys, VMSVSP 
[00]425C.34D8::2024-04-02 10:27:05.458637000 [Microsoft-Windows-PktMon] Property: Component 74, MiniportIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458637200 [Microsoft-Windows-PktMon] Property: Component 74, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458637500 [Microsoft-Windows-PktMon] Drop Counters: Component 74, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458637800 [Microsoft-Windows-PktMon] Flow Counters: Component 74, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 7, Bytes In 390, Direction Out = Tx , Packets Out 6, Bytes Out 348 
[00]425C.34D8::2024-04-02 10:27:05.458638200 [Microsoft-Windows-PktMon] Component 73, Type Protocol , Name mslldp.sys, MSLLDP 
[00]425C.34D8::2024-04-02 10:27:05.458638400 [Microsoft-Windows-PktMon] Property: Component 73, EtherType  = LLDP  
[00]425C.34D8::2024-04-02 10:27:05.458638500 [Microsoft-Windows-PktMon] Property: Component 73, MiniportIfIndex  = 5 
[00]425C.34D8::2024-04-02 10:27:05.458638800 [Microsoft-Windows-PktMon] Property: Component 73, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458639000 [Microsoft-Windows-PktMon] Drop Counters: Component 73, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458639400 [Microsoft-Windows-PktMon] Flow Counters: Component 73, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458639800 [Microsoft-Windows-PktMon] Component 72, Type Protocol , Name vmswitch.sys, VMSP 
[00]425C.34D8::2024-04-02 10:27:05.458640100 [Microsoft-Windows-PktMon] Property: Component 72, MiniportIfIndex  = 5 
[00]425C.34D8::2024-04-02 10:27:05.458640300 [Microsoft-Windows-PktMon] Property: Component 72, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458640600 [Microsoft-Windows-PktMon] Drop Counters: Component 72, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458641000 [Microsoft-Windows-PktMon] Flow Counters: Component 72, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 3, Bytes In 158, Direction Out = Tx , Packets Out 3, Bytes Out 158 
[00]425C.34D8::2024-04-02 10:27:05.458641300 [Microsoft-Windows-PktMon] Component 71, Type Protocol , Name NULL, RDMANDK 
[00]425C.34D8::2024-04-02 10:27:05.458641500 [Microsoft-Windows-PktMon] Property: Component 71, EtherType  = 0 
[00]425C.34D8::2024-04-02 10:27:05.458641700 [Microsoft-Windows-PktMon] Property: Component 71, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458641900 [Microsoft-Windows-PktMon] Property: Component 71, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458642200 [Microsoft-Windows-PktMon] Drop Counters: Component 71, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458642500 [Microsoft-Windows-PktMon] Flow Counters: Component 71, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458642800 [Microsoft-Windows-PktMon] Component 70, Type Protocol , Name rspndr.sys, RSPNDR 
[00]425C.34D8::2024-04-02 10:27:05.458643000 [Microsoft-Windows-PktMon] Property: Component 70, EtherType  = VLAN  
[00]425C.34D8::2024-04-02 10:27:05.458643200 [Microsoft-Windows-PktMon] Property: Component 70, EtherType  = LLTD  
[00]425C.34D8::2024-04-02 10:27:05.458643400 [Microsoft-Windows-PktMon] Property: Component 70, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458643600 [Microsoft-Windows-PktMon] Property: Component 70, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458643800 [Microsoft-Windows-PktMon] Drop Counters: Component 70, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458644100 [Microsoft-Windows-PktMon] Flow Counters: Component 70, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458644500 [Microsoft-Windows-PktMon] Component 69, Type Protocol , Name tcpip.sys, TCPIP 
[00]425C.34D8::2024-04-02 10:27:05.458644700 [Microsoft-Windows-PktMon] Property: Component 69, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458644900 [Microsoft-Windows-PktMon] Property: Component 69, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458645100 [Microsoft-Windows-PktMon] Property: Component 69, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458645300 [Microsoft-Windows-PktMon] Property: Component 69, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458645600 [Microsoft-Windows-PktMon] Drop Counters: Component 69, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458645900 [Microsoft-Windows-PktMon] Flow Counters: Component 69, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 3, Bytes In 158, Direction Out = Tx , Packets Out 2, Bytes Out 116 
[00]425C.34D8::2024-04-02 10:27:05.458646200 [Microsoft-Windows-PktMon] Component 68, Type Protocol , Name tcpip.sys, TCPIP6 
[00]425C.34D8::2024-04-02 10:27:05.458646500 [Microsoft-Windows-PktMon] Property: Component 68, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458647000 [Microsoft-Windows-PktMon] Property: Component 68, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458647400 [Microsoft-Windows-PktMon] Property: Component 68, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458647700 [Microsoft-Windows-PktMon] Drop Counters: Component 68, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458648000 [Microsoft-Windows-PktMon] Flow Counters: Component 68, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458648200 [Microsoft-Windows-PktMon] Component 67, Type Protocol , Name mslldp.sys, MSLLDP 
[00]425C.34D8::2024-04-02 10:27:05.458648500 [Microsoft-Windows-PktMon] Property: Component 67, EtherType  = LLDP  
[00]425C.34D8::2024-04-02 10:27:05.458648900 [Microsoft-Windows-PktMon] Property: Component 67, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458649200 [Microsoft-Windows-PktMon] Property: Component 67, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458649900 [Microsoft-Windows-PktMon] Drop Counters: Component 67, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458650100 [Microsoft-Windows-PktMon] Flow Counters: Component 67, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458650300 [Microsoft-Windows-PktMon] Component 66, Type Protocol , Name lltdio.sys, LLTDIO 
[00]425C.34D8::2024-04-02 10:27:05.458650700 [Microsoft-Windows-PktMon] Property: Component 66, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458651000 [Microsoft-Windows-PktMon] Property: Component 66, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458651300 [Microsoft-Windows-PktMon] Drop Counters: Component 66, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458651600 [Microsoft-Windows-PktMon] Flow Counters: Component 66, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458651900 [Microsoft-Windows-PktMon] Component 65, Type Protocol , Name NULL, RDMANDK 
[00]425C.34D8::2024-04-02 10:27:05.458652200 [Microsoft-Windows-PktMon] Property: Component 65, EtherType  = 0 
[00]425C.34D8::2024-04-02 10:27:05.458652500 [Microsoft-Windows-PktMon] Property: Component 65, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458652800 [Microsoft-Windows-PktMon] Property: Component 65, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458653100 [Microsoft-Windows-PktMon] Drop Counters: Component 65, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458653400 [Microsoft-Windows-PktMon] Flow Counters: Component 65, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458653600 [Microsoft-Windows-PktMon] Component 64, Type Protocol , Name rspndr.sys, RSPNDR 
[00]425C.34D8::2024-04-02 10:27:05.458654000 [Microsoft-Windows-PktMon] Property: Component 64, EtherType  = VLAN  
[00]425C.34D8::2024-04-02 10:27:05.458654200 [Microsoft-Windows-PktMon] Property: Component 64, EtherType  = LLTD  
[00]425C.34D8::2024-04-02 10:27:05.458654500 [Microsoft-Windows-PktMon] Property: Component 64, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458654800 [Microsoft-Windows-PktMon] Property: Component 64, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458655100 [Microsoft-Windows-PktMon] Drop Counters: Component 64, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458655400 [Microsoft-Windows-PktMon] Flow Counters: Component 64, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458655600 [Microsoft-Windows-PktMon] Component 63, Type Protocol , Name tcpip.sys, TCPIP 
[00]425C.34D8::2024-04-02 10:27:05.458655800 [Microsoft-Windows-PktMon] Property: Component 63, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458656300 [Microsoft-Windows-PktMon] Property: Component 63, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458656600 [Microsoft-Windows-PktMon] Property: Component 63, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458656800 [Microsoft-Windows-PktMon] Property: Component 63, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458657400 [Microsoft-Windows-PktMon] Drop Counters: Component 63, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458657700 [Microsoft-Windows-PktMon] Flow Counters: Component 63, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458658000 [Microsoft-Windows-PktMon] Component 62, Type Protocol , Name tcpip.sys, TCPIP6 
[00]425C.34D8::2024-04-02 10:27:05.458658200 [Microsoft-Windows-PktMon] Property: Component 62, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458658500 [Microsoft-Windows-PktMon] Property: Component 62, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458658700 [Microsoft-Windows-PktMon] Property: Component 62, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458659100 [Microsoft-Windows-PktMon] Drop Counters: Component 62, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458659500 [Microsoft-Windows-PktMon] Flow Counters: Component 62, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458659800 [Microsoft-Windows-PktMon] Component 61, Type Protocol , Name mslldp.sys, MSLLDP 
[00]425C.34D8::2024-04-02 10:27:05.458660000 [Microsoft-Windows-PktMon] Property: Component 61, EtherType  = LLDP  
[00]425C.34D8::2024-04-02 10:27:05.458660200 [Microsoft-Windows-PktMon] Property: Component 61, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458660500 [Microsoft-Windows-PktMon] Property: Component 61, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458660900 [Microsoft-Windows-PktMon] Drop Counters: Component 61, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458661400 [Microsoft-Windows-PktMon] Flow Counters: Component 61, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458661700 [Microsoft-Windows-PktMon] Component 60, Type Protocol , Name lltdio.sys, LLTDIO 
[00]425C.34D8::2024-04-02 10:27:05.458661900 [Microsoft-Windows-PktMon] Property: Component 60, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458662100 [Microsoft-Windows-PktMon] Property: Component 60, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458662500 [Microsoft-Windows-PktMon] Drop Counters: Component 60, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458662900 [Microsoft-Windows-PktMon] Flow Counters: Component 60, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458663300 [Microsoft-Windows-PktMon] Component 59, Type Protocol , Name NULL, RDMANDK 
[00]425C.34D8::2024-04-02 10:27:05.458663600 [Microsoft-Windows-PktMon] Property: Component 59, EtherType  = 0 
[00]425C.34D8::2024-04-02 10:27:05.458663800 [Microsoft-Windows-PktMon] Property: Component 59, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458664300 [Microsoft-Windows-PktMon] Property: Component 59, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458664600 [Microsoft-Windows-PktMon] Drop Counters: Component 59, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458664900 [Microsoft-Windows-PktMon] Flow Counters: Component 59, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458665100 [Microsoft-Windows-PktMon] Component 58, Type Protocol , Name rspndr.sys, RSPNDR 
[00]425C.34D8::2024-04-02 10:27:05.458665300 [Microsoft-Windows-PktMon] Property: Component 58, EtherType  = VLAN  
[00]425C.34D8::2024-04-02 10:27:05.458665600 [Microsoft-Windows-PktMon] Property: Component 58, EtherType  = LLTD  
[00]425C.34D8::2024-04-02 10:27:05.458665800 [Microsoft-Windows-PktMon] Property: Component 58, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458666100 [Microsoft-Windows-PktMon] Property: Component 58, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458666500 [Microsoft-Windows-PktMon] Drop Counters: Component 58, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458666900 [Microsoft-Windows-PktMon] Flow Counters: Component 58, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458667100 [Microsoft-Windows-PktMon] Component 57, Type Protocol , Name tcpip.sys, TCPIP 
[00]425C.34D8::2024-04-02 10:27:05.458667400 [Microsoft-Windows-PktMon] Property: Component 57, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458667800 [Microsoft-Windows-PktMon] Property: Component 57, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458668100 [Microsoft-Windows-PktMon] Property: Component 57, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458668400 [Microsoft-Windows-PktMon] Property: Component 57, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458668700 [Microsoft-Windows-PktMon] Drop Counters: Component 57, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458669000 [Microsoft-Windows-PktMon] Flow Counters: Component 57, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 1, Bytes In 74, Direction Out = Tx , Packets Out 1, Bytes Out 74 
[00]425C.34D8::2024-04-02 10:27:05.458669200 [Microsoft-Windows-PktMon] Component 56, Type Protocol , Name tcpip.sys, TCPIP6 
[00]425C.34D8::2024-04-02 10:27:05.458669500 [Microsoft-Windows-PktMon] Property: Component 56, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458669800 [Microsoft-Windows-PktMon] Property: Component 56, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458670100 [Microsoft-Windows-PktMon] Property: Component 56, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458670400 [Microsoft-Windows-PktMon] Drop Counters: Component 56, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458670800 [Microsoft-Windows-PktMon] Flow Counters: Component 56, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458671100 [Microsoft-Windows-PktMon] Component 55, Type Protocol , Name mslldp.sys, MSLLDP 
[00]425C.34D8::2024-04-02 10:27:05.458671400 [Microsoft-Windows-PktMon] Property: Component 55, EtherType  = LLDP  
[00]425C.34D8::2024-04-02 10:27:05.458671600 [Microsoft-Windows-PktMon] Property: Component 55, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458672000 [Microsoft-Windows-PktMon] Property: Component 55, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458672300 [Microsoft-Windows-PktMon] Drop Counters: Component 55, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458672600 [Microsoft-Windows-PktMon] Flow Counters: Component 55, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458672900 [Microsoft-Windows-PktMon] Component 54, Type Protocol , Name lltdio.sys, LLTDIO 
[00]425C.34D8::2024-04-02 10:27:05.458673100 [Microsoft-Windows-PktMon] Property: Component 54, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458673500 [Microsoft-Windows-PktMon] Property: Component 54, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458673800 [Microsoft-Windows-PktMon] Drop Counters: Component 54, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458674100 [Microsoft-Windows-PktMon] Flow Counters: Component 54, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458674500 [Microsoft-Windows-PktMon] Component 53, Type Protocol , Name NULL, RDMANDK 
[00]425C.34D8::2024-04-02 10:27:05.458674800 [Microsoft-Windows-PktMon] Property: Component 53, EtherType  = 0 
[00]425C.34D8::2024-04-02 10:27:05.458675100 [Microsoft-Windows-PktMon] Property: Component 53, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458675900 [Microsoft-Windows-PktMon] Property: Component 53, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458676100 [Microsoft-Windows-PktMon] Drop Counters: Component 53, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458676500 [Microsoft-Windows-PktMon] Flow Counters: Component 53, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458676900 [Microsoft-Windows-PktMon] Component 52, Type Protocol , Name rspndr.sys, RSPNDR 
[00]425C.34D8::2024-04-02 10:27:05.458677300 [Microsoft-Windows-PktMon] Property: Component 52, EtherType  = VLAN  
[00]425C.34D8::2024-04-02 10:27:05.458677700 [Microsoft-Windows-PktMon] Property: Component 52, EtherType  = LLTD  
[00]425C.34D8::2024-04-02 10:27:05.458678000 [Microsoft-Windows-PktMon] Property: Component 52, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458678300 [Microsoft-Windows-PktMon] Property: Component 52, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458678500 [Microsoft-Windows-PktMon] Drop Counters: Component 52, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458678800 [Microsoft-Windows-PktMon] Flow Counters: Component 52, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458679100 [Microsoft-Windows-PktMon] Component 51, Type Protocol , Name tcpip.sys, TCPIP 
[00]425C.34D8::2024-04-02 10:27:05.458679500 [Microsoft-Windows-PktMon] Property: Component 51, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458679800 [Microsoft-Windows-PktMon] Property: Component 51, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458680200 [Microsoft-Windows-PktMon] Property: Component 51, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458680500 [Microsoft-Windows-PktMon] Property: Component 51, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458680800 [Microsoft-Windows-PktMon] Drop Counters: Component 51, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458681100 [Microsoft-Windows-PktMon] Flow Counters: Component 51, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458681400 [Microsoft-Windows-PktMon] Component 50, Type Protocol , Name tcpip.sys, TCPIP6 
[00]425C.34D8::2024-04-02 10:27:05.458681700 [Microsoft-Windows-PktMon] Property: Component 50, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458682000 [Microsoft-Windows-PktMon] Property: Component 50, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458682300 [Microsoft-Windows-PktMon] Property: Component 50, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458682500 [Microsoft-Windows-PktMon] Drop Counters: Component 50, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458682800 [Microsoft-Windows-PktMon] Flow Counters: Component 50, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458683200 [Microsoft-Windows-PktMon] Component 49, Type Protocol , Name mslldp.sys, MSLLDP 
[00]425C.34D8::2024-04-02 10:27:05.458683700 [Microsoft-Windows-PktMon] Property: Component 49, EtherType  = LLDP  
[00]425C.34D8::2024-04-02 10:27:05.458684000 [Microsoft-Windows-PktMon] Property: Component 49, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458684300 [Microsoft-Windows-PktMon] Property: Component 49, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458684800 [Microsoft-Windows-PktMon] Drop Counters: Component 49, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458685100 [Microsoft-Windows-PktMon] Flow Counters: Component 49, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458685400 [Microsoft-Windows-PktMon] Component 48, Type Protocol , Name lltdio.sys, LLTDIO 
[00]425C.34D8::2024-04-02 10:27:05.458685700 [Microsoft-Windows-PktMon] Property: Component 48, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458686000 [Microsoft-Windows-PktMon] Property: Component 48, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458686300 [Microsoft-Windows-PktMon] Drop Counters: Component 48, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458686600 [Microsoft-Windows-PktMon] Flow Counters: Component 48, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458686900 [Microsoft-Windows-PktMon] Component 47, Type Protocol , Name NULL, RDMANDK 
[00]425C.34D8::2024-04-02 10:27:05.458687200 [Microsoft-Windows-PktMon] Property: Component 47, EtherType  = 0 
[00]425C.34D8::2024-04-02 10:27:05.458687500 [Microsoft-Windows-PktMon] Property: Component 47, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458688100 [Microsoft-Windows-PktMon] Property: Component 47, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458688700 [Microsoft-Windows-PktMon] Drop Counters: Component 47, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458689400 [Microsoft-Windows-PktMon] Flow Counters: Component 47, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458689700 [Microsoft-Windows-PktMon] Component 46, Type Protocol , Name rspndr.sys, RSPNDR 
[00]425C.34D8::2024-04-02 10:27:05.458689900 [Microsoft-Windows-PktMon] Property: Component 46, EtherType  = VLAN  
[00]425C.34D8::2024-04-02 10:27:05.458690100 [Microsoft-Windows-PktMon] Property: Component 46, EtherType  = LLTD  
[00]425C.34D8::2024-04-02 10:27:05.458690300 [Microsoft-Windows-PktMon] Property: Component 46, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458690600 [Microsoft-Windows-PktMon] Property: Component 46, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458690900 [Microsoft-Windows-PktMon] Drop Counters: Component 46, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458691200 [Microsoft-Windows-PktMon] Flow Counters: Component 46, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458691500 [Microsoft-Windows-PktMon] Component 45, Type Protocol , Name tcpip.sys, TCPIP 
[00]425C.34D8::2024-04-02 10:27:05.458691700 [Microsoft-Windows-PktMon] Property: Component 45, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458691900 [Microsoft-Windows-PktMon] Property: Component 45, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458692200 [Microsoft-Windows-PktMon] Property: Component 45, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458692300 [Microsoft-Windows-PktMon] Property: Component 45, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458692600 [Microsoft-Windows-PktMon] Drop Counters: Component 45, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458692900 [Microsoft-Windows-PktMon] Flow Counters: Component 45, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458693200 [Microsoft-Windows-PktMon] Component 44, Type Protocol , Name tcpip.sys, TCPIP6 
[00]425C.34D8::2024-04-02 10:27:05.458693400 [Microsoft-Windows-PktMon] Property: Component 44, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458693700 [Microsoft-Windows-PktMon] Property: Component 44, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458693900 [Microsoft-Windows-PktMon] Property: Component 44, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458694300 [Microsoft-Windows-PktMon] Drop Counters: Component 44, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458694700 [Microsoft-Windows-PktMon] Flow Counters: Component 44, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458695100 [Microsoft-Windows-PktMon] Component 43, Type Protocol , Name mslldp.sys, MSLLDP 
[00]425C.34D8::2024-04-02 10:27:05.458695900 [Microsoft-Windows-PktMon] Property: Component 43, EtherType  = LLDP  
[00]425C.34D8::2024-04-02 10:27:05.458696100 [Microsoft-Windows-PktMon] Property: Component 43, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458696400 [Microsoft-Windows-PktMon] Property: Component 43, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458696700 [Microsoft-Windows-PktMon] Drop Counters: Component 43, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458697200 [Microsoft-Windows-PktMon] Flow Counters: Component 43, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458697500 [Microsoft-Windows-PktMon] Component 42, Type Protocol , Name lltdio.sys, LLTDIO 
[00]425C.34D8::2024-04-02 10:27:05.458697800 [Microsoft-Windows-PktMon] Property: Component 42, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458698000 [Microsoft-Windows-PktMon] Property: Component 42, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458698200 [Microsoft-Windows-PktMon] Drop Counters: Component 42, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458698500 [Microsoft-Windows-PktMon] Flow Counters: Component 42, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458698700 [Microsoft-Windows-PktMon] Component 41, Type Protocol , Name NULL, RDMANDK 
[00]425C.34D8::2024-04-02 10:27:05.458698900 [Microsoft-Windows-PktMon] Property: Component 41, EtherType  = 0 
[00]425C.34D8::2024-04-02 10:27:05.458699200 [Microsoft-Windows-PktMon] Property: Component 41, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458699400 [Microsoft-Windows-PktMon] Property: Component 41, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458699800 [Microsoft-Windows-PktMon] Drop Counters: Component 41, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458700100 [Microsoft-Windows-PktMon] Flow Counters: Component 41, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458700300 [Microsoft-Windows-PktMon] Component 40, Type Protocol , Name rspndr.sys, RSPNDR 
[00]425C.34D8::2024-04-02 10:27:05.458700600 [Microsoft-Windows-PktMon] Property: Component 40, EtherType  = VLAN  
[00]425C.34D8::2024-04-02 10:27:05.458700800 [Microsoft-Windows-PktMon] Property: Component 40, EtherType  = LLTD  
[00]425C.34D8::2024-04-02 10:27:05.458701100 [Microsoft-Windows-PktMon] Property: Component 40, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458701200 [Microsoft-Windows-PktMon] Property: Component 40, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458701500 [Microsoft-Windows-PktMon] Drop Counters: Component 40, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458701700 [Microsoft-Windows-PktMon] Flow Counters: Component 40, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458702000 [Microsoft-Windows-PktMon] Component 39, Type Protocol , Name tcpip.sys, TCPIP 
[00]425C.34D8::2024-04-02 10:27:05.458702100 [Microsoft-Windows-PktMon] Property: Component 39, EtherType  = ARP  
[00]425C.34D8::2024-04-02 10:27:05.458702400 [Microsoft-Windows-PktMon] Property: Component 39, EtherType  = IPv4  
[00]425C.34D8::2024-04-02 10:27:05.458702600 [Microsoft-Windows-PktMon] Property: Component 39, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458702900 [Microsoft-Windows-PktMon] Property: Component 39, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458703100 [Microsoft-Windows-PktMon] Drop Counters: Component 39, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458703400 [Microsoft-Windows-PktMon] Flow Counters: Component 39, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458703700 [Microsoft-Windows-PktMon] Component 38, Type Protocol , Name tcpip.sys, TCPIP6 
[00]425C.34D8::2024-04-02 10:27:05.458703900 [Microsoft-Windows-PktMon] Property: Component 38, EtherType  = IPv6  
[00]425C.34D8::2024-04-02 10:27:05.458704100 [Microsoft-Windows-PktMon] Property: Component 38, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458704300 [Microsoft-Windows-PktMon] Property: Component 38, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458704600 [Microsoft-Windows-PktMon] Drop Counters: Component 38, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458704900 [Microsoft-Windows-PktMon] Flow Counters: Component 38, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458708700 [Microsoft-Windows-PktMon] Component 37, Type Protocol , Name mslldp.sys, MSLLDP 
[00]425C.34D8::2024-04-02 10:27:05.458709000 [Microsoft-Windows-PktMon] Property: Component 37, EtherType  = LLDP  
[00]425C.34D8::2024-04-02 10:27:05.458709200 [Microsoft-Windows-PktMon] Property: Component 37, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458709400 [Microsoft-Windows-PktMon] Property: Component 37, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458709700 [Microsoft-Windows-PktMon] Drop Counters: Component 37, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458710100 [Microsoft-Windows-PktMon] Flow Counters: Component 37, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458710300 [Microsoft-Windows-PktMon] Component 36, Type Protocol , Name lltdio.sys, LLTDIO 
[00]425C.34D8::2024-04-02 10:27:05.458710500 [Microsoft-Windows-PktMon] Property: Component 36, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458710700 [Microsoft-Windows-PktMon] Property: Component 36, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458711000 [Microsoft-Windows-PktMon] Drop Counters: Component 36, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458711400 [Microsoft-Windows-PktMon] Flow Counters: Component 36, Edge Lower, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458711800 [Microsoft-Windows-PktMon] Component 35, Type Filter , Name vmswitch.sys, Hyper-V Virtual Switch Extension Filter 
[00]425C.34D8::2024-04-02 10:27:05.458712000 [Microsoft-Windows-PktMon] Property: Component 35, MiniportIfIndex  = 10 
[00]425C.34D8::2024-04-02 10:27:05.458712300 [Microsoft-Windows-PktMon] Property: Component 35, IfIndex  = 11 
[00]425C.34D8::2024-04-02 10:27:05.458712600 [Microsoft-Windows-PktMon] Property: Component 35, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458713000 [Microsoft-Windows-PktMon] Drop Counters: Component 35, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458713400 [Microsoft-Windows-PktMon] Flow Counters: Component 35, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458713800 [Microsoft-Windows-PktMon] Flow Counters: Component 35, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458714200 [Microsoft-Windows-PktMon] Component 34, Type Filter , Name wfplwfs.sys, WFP Native MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458714500 [Microsoft-Windows-PktMon] Property: Component 34, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458714800 [Microsoft-Windows-PktMon] Property: Component 34, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458715000 [Microsoft-Windows-PktMon] Property: Component 34, IfIndex  = 13 
[00]425C.34D8::2024-04-02 10:27:05.458715200 [Microsoft-Windows-PktMon] Property: Component 34, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458715500 [Microsoft-Windows-PktMon] Drop Counters: Component 34, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458715900 [Microsoft-Windows-PktMon] Flow Counters: Component 34, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458716200 [Microsoft-Windows-PktMon] Flow Counters: Component 34, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458716600 [Microsoft-Windows-PktMon] Component 33, Type Filter , Name pacer.sys, QoS Packet Scheduler 
[00]425C.34D8::2024-04-02 10:27:05.458716800 [Microsoft-Windows-PktMon] Property: Component 33, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458717000 [Microsoft-Windows-PktMon] Property: Component 33, LowerIfIndex  = 13 
[00]425C.34D8::2024-04-02 10:27:05.458717300 [Microsoft-Windows-PktMon] Property: Component 33, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458717600 [Microsoft-Windows-PktMon] Property: Component 33, IfIndex  = 14 
[00]425C.34D8::2024-04-02 10:27:05.458717800 [Microsoft-Windows-PktMon] Property: Component 33, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458718000 [Microsoft-Windows-PktMon] Drop Counters: Component 33, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458718400 [Microsoft-Windows-PktMon] Flow Counters: Component 33, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458718800 [Microsoft-Windows-PktMon] Flow Counters: Component 33, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458719100 [Microsoft-Windows-PktMon] Component 32, Type Filter , Name wfplwfs.sys, WFP 802.3 MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458719300 [Microsoft-Windows-PktMon] Property: Component 32, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458719500 [Microsoft-Windows-PktMon] Property: Component 32, LowerIfIndex  = 14 
[00]425C.34D8::2024-04-02 10:27:05.458719800 [Microsoft-Windows-PktMon] Property: Component 32, MiniportIfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458720100 [Microsoft-Windows-PktMon] Property: Component 32, IfIndex  = 15 
[00]425C.34D8::2024-04-02 10:27:05.458720400 [Microsoft-Windows-PktMon] Property: Component 32, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458720700 [Microsoft-Windows-PktMon] Drop Counters: Component 32, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458721100 [Microsoft-Windows-PktMon] Flow Counters: Component 32, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458721400 [Microsoft-Windows-PktMon] Flow Counters: Component 32, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458721700 [Microsoft-Windows-PktMon] Component 31, Type Filter , Name vmswitch.sys, Hyper-V Virtual Switch Extension Filter 
[00]425C.34D8::2024-04-02 10:27:05.458722000 [Microsoft-Windows-PktMon] Property: Component 31, LowerIfIndex  = 20 
[00]425C.34D8::2024-04-02 10:27:05.458722200 [Microsoft-Windows-PktMon] Property: Component 31, MiniportIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458722500 [Microsoft-Windows-PktMon] Property: Component 31, IfIndex  = 17 
[00]425C.34D8::2024-04-02 10:27:05.458722700 [Microsoft-Windows-PktMon] Property: Component 31, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458722900 [Microsoft-Windows-PktMon] Drop Counters: Component 31, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458723400 [Microsoft-Windows-PktMon] Flow Counters: Component 31, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 7, Bytes In 390, Direction Out = Tx , Packets Out 6, Bytes Out 348 
[00]425C.34D8::2024-04-02 10:27:05.458723700 [Microsoft-Windows-PktMon] Flow Counters: Component 31, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 7, Bytes In 390, Direction Out = Tx , Packets Out 6, Bytes Out 348 
[00]425C.34D8::2024-04-02 10:27:05.458724200 [Microsoft-Windows-PktMon] Component 30, Type Filter , Name wfplwfs.sys, WFP Native MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458724500 [Microsoft-Windows-PktMon] Property: Component 30, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458724700 [Microsoft-Windows-PktMon] Property: Component 30, MiniportIfIndex  = 5 
[00]425C.34D8::2024-04-02 10:27:05.458724900 [Microsoft-Windows-PktMon] Property: Component 30, IfIndex  = 7 
[00]425C.34D8::2024-04-02 10:27:05.458725100 [Microsoft-Windows-PktMon] Property: Component 30, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458725300 [Microsoft-Windows-PktMon] Drop Counters: Component 30, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458725600 [Microsoft-Windows-PktMon] Flow Counters: Component 30, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458725900 [Microsoft-Windows-PktMon] Flow Counters: Component 30, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458726200 [Microsoft-Windows-PktMon] Component 29, Type Filter , Name wfplwfs.sys, WFP Native MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458726400 [Microsoft-Windows-PktMon] Property: Component 29, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458726600 [Microsoft-Windows-PktMon] Property: Component 29, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458726800 [Microsoft-Windows-PktMon] Property: Component 29, IfIndex  = 9 
[00]425C.34D8::2024-04-02 10:27:05.458727000 [Microsoft-Windows-PktMon] Property: Component 29, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458727300 [Microsoft-Windows-PktMon] Drop Counters: Component 29, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458727600 [Microsoft-Windows-PktMon] Flow Counters: Component 29, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458727800 [Microsoft-Windows-PktMon] Flow Counters: Component 29, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458728100 [Microsoft-Windows-PktMon] Component 28, Type Filter , Name pacer.sys, QoS Packet Scheduler 
[00]425C.34D8::2024-04-02 10:27:05.458728300 [Microsoft-Windows-PktMon] Property: Component 28, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458728500 [Microsoft-Windows-PktMon] Property: Component 28, LowerIfIndex  = 9 
[00]425C.34D8::2024-04-02 10:27:05.458730900 [Microsoft-Windows-PktMon] Property: Component 28, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458731300 [Microsoft-Windows-PktMon] Property: Component 28, IfIndex  = 18 
[00]425C.34D8::2024-04-02 10:27:05.458731700 [Microsoft-Windows-PktMon] Property: Component 28, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458732200 [Microsoft-Windows-PktMon] Drop Counters: Component 28, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458735600 [Microsoft-Windows-PktMon] Flow Counters: Component 28, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458736100 [Microsoft-Windows-PktMon] Flow Counters: Component 28, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458736600 [Microsoft-Windows-PktMon] Component 27, Type Filter , Name wfplwfs.sys, WFP 802.3 MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458736900 [Microsoft-Windows-PktMon] Property: Component 27, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458737300 [Microsoft-Windows-PktMon] Property: Component 27, LowerIfIndex  = 18 
[00]425C.34D8::2024-04-02 10:27:05.458737700 [Microsoft-Windows-PktMon] Property: Component 27, MiniportIfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458738000 [Microsoft-Windows-PktMon] Property: Component 27, IfIndex  = 19 
[00]425C.34D8::2024-04-02 10:27:05.458738300 [Microsoft-Windows-PktMon] Property: Component 27, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458738800 [Microsoft-Windows-PktMon] Drop Counters: Component 27, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458739400 [Microsoft-Windows-PktMon] Flow Counters: Component 27, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458739900 [Microsoft-Windows-PktMon] Flow Counters: Component 27, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458740500 [Microsoft-Windows-PktMon] Component 26, Type Filter , Name vfpext.sys, Virtual Filtering Platform VMSwitch Extension 
[00]425C.34D8::2024-04-02 10:27:05.458741000 [Microsoft-Windows-PktMon] Property: Component 26, MiniportIfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458741400 [Microsoft-Windows-PktMon] Property: Component 26, IfIndex  = 20 
[00]425C.34D8::2024-04-02 10:27:05.458741800 [Microsoft-Windows-PktMon] Property: Component 26, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458742200 [Microsoft-Windows-PktMon] Drop Counters: Component 26, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458742800 [Microsoft-Windows-PktMon] Flow Counters: Component 26, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 4, Bytes In 264, Direction Out = Tx , Packets Out 4, Bytes Out 264 
[00]425C.34D8::2024-04-02 10:27:05.458743300 [Microsoft-Windows-PktMon] Flow Counters: Component 26, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 7, Bytes In 390, Direction Out = Tx , Packets Out 6, Bytes Out 348 
[00]425C.34D8::2024-04-02 10:27:05.458743700 [Microsoft-Windows-PktMon] Component 25, Type Filter , Name wfplwfs.sys, WFP Native MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458743900 [Microsoft-Windows-PktMon] Property: Component 25, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458744200 [Microsoft-Windows-PktMon] Property: Component 25, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458744500 [Microsoft-Windows-PktMon] Property: Component 25, IfIndex  = 22 
[00]425C.34D8::2024-04-02 10:27:05.458744700 [Microsoft-Windows-PktMon] Property: Component 25, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458745100 [Microsoft-Windows-PktMon] Drop Counters: Component 25, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458745500 [Microsoft-Windows-PktMon] Flow Counters: Component 25, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458746200 [Microsoft-Windows-PktMon] Flow Counters: Component 25, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458746600 [Microsoft-Windows-PktMon] Component 24, Type Filter , Name pacer.sys, QoS Packet Scheduler 
[00]425C.34D8::2024-04-02 10:27:05.458747000 [Microsoft-Windows-PktMon] Property: Component 24, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458747300 [Microsoft-Windows-PktMon] Property: Component 24, LowerIfIndex  = 22 
[00]425C.34D8::2024-04-02 10:27:05.458747600 [Microsoft-Windows-PktMon] Property: Component 24, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458748000 [Microsoft-Windows-PktMon] Property: Component 24, IfIndex  = 23 
[00]425C.34D8::2024-04-02 10:27:05.458748300 [Microsoft-Windows-PktMon] Property: Component 24, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458748700 [Microsoft-Windows-PktMon] Drop Counters: Component 24, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458749100 [Microsoft-Windows-PktMon] Flow Counters: Component 24, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458749600 [Microsoft-Windows-PktMon] Flow Counters: Component 24, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458750100 [Microsoft-Windows-PktMon] Component 23, Type Filter , Name wfplwfs.sys, WFP 802.3 MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458750500 [Microsoft-Windows-PktMon] Property: Component 23, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458750900 [Microsoft-Windows-PktMon] Property: Component 23, LowerIfIndex  = 23 
[00]425C.34D8::2024-04-02 10:27:05.458751100 [Microsoft-Windows-PktMon] Property: Component 23, MiniportIfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458751400 [Microsoft-Windows-PktMon] Property: Component 23, IfIndex  = 24 
[00]425C.34D8::2024-04-02 10:27:05.458751700 [Microsoft-Windows-PktMon] Property: Component 23, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458752100 [Microsoft-Windows-PktMon] Drop Counters: Component 23, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458752500 [Microsoft-Windows-PktMon] Flow Counters: Component 23, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458753000 [Microsoft-Windows-PktMon] Flow Counters: Component 23, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458753500 [Microsoft-Windows-PktMon] Component 22, Type Filter , Name wfplwfs.sys, WFP Native MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458753800 [Microsoft-Windows-PktMon] Property: Component 22, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458754600 [Microsoft-Windows-PktMon] Property: Component 22, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458755000 [Microsoft-Windows-PktMon] Property: Component 22, IfIndex  = 27 
[00]425C.34D8::2024-04-02 10:27:05.458755500 [Microsoft-Windows-PktMon] Property: Component 22, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458756300 [Microsoft-Windows-PktMon] Drop Counters: Component 22, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458756800 [Microsoft-Windows-PktMon] Flow Counters: Component 22, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458757400 [Microsoft-Windows-PktMon] Flow Counters: Component 22, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458757900 [Microsoft-Windows-PktMon] Component 21, Type Filter , Name pacer.sys, QoS Packet Scheduler 
[00]425C.34D8::2024-04-02 10:27:05.458758300 [Microsoft-Windows-PktMon] Property: Component 21, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458758800 [Microsoft-Windows-PktMon] Property: Component 21, LowerIfIndex  = 27 
[00]425C.34D8::2024-04-02 10:27:05.458759100 [Microsoft-Windows-PktMon] Property: Component 21, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458759300 [Microsoft-Windows-PktMon] Property: Component 21, IfIndex  = 28 
[00]425C.34D8::2024-04-02 10:27:05.458759600 [Microsoft-Windows-PktMon] Property: Component 21, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458759900 [Microsoft-Windows-PktMon] Drop Counters: Component 21, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458760300 [Microsoft-Windows-PktMon] Flow Counters: Component 21, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458760700 [Microsoft-Windows-PktMon] Flow Counters: Component 21, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458761000 [Microsoft-Windows-PktMon] Component 20, Type Filter , Name wfplwfs.sys, WFP 802.3 MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458761300 [Microsoft-Windows-PktMon] Property: Component 20, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458761600 [Microsoft-Windows-PktMon] Property: Component 20, LowerIfIndex  = 28 
[00]425C.34D8::2024-04-02 10:27:05.458761900 [Microsoft-Windows-PktMon] Property: Component 20, MiniportIfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458762300 [Microsoft-Windows-PktMon] Property: Component 20, IfIndex  = 29 
[00]425C.34D8::2024-04-02 10:27:05.458763000 [Microsoft-Windows-PktMon] Property: Component 20, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458763400 [Microsoft-Windows-PktMon] Drop Counters: Component 20, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458763800 [Microsoft-Windows-PktMon] Flow Counters: Component 20, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458764100 [Microsoft-Windows-PktMon] Flow Counters: Component 20, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458764500 [Microsoft-Windows-PktMon] Component 19, Type Filter , Name wfplwfs.sys, WFP Native MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458764900 [Microsoft-Windows-PktMon] Property: Component 19, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458765200 [Microsoft-Windows-PktMon] Property: Component 19, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458765400 [Microsoft-Windows-PktMon] Property: Component 19, IfIndex  = 32 
[00]425C.34D8::2024-04-02 10:27:05.458765600 [Microsoft-Windows-PktMon] Property: Component 19, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458765900 [Microsoft-Windows-PktMon] Drop Counters: Component 19, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458766200 [Microsoft-Windows-PktMon] Flow Counters: Component 19, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458766600 [Microsoft-Windows-PktMon] Flow Counters: Component 19, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458767200 [Microsoft-Windows-PktMon] Component 18, Type Filter , Name pacer.sys, QoS Packet Scheduler 
[00]425C.34D8::2024-04-02 10:27:05.458767500 [Microsoft-Windows-PktMon] Property: Component 18, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458767800 [Microsoft-Windows-PktMon] Property: Component 18, LowerIfIndex  = 32 
[00]425C.34D8::2024-04-02 10:27:05.458768000 [Microsoft-Windows-PktMon] Property: Component 18, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458768200 [Microsoft-Windows-PktMon] Property: Component 18, IfIndex  = 33 
[00]425C.34D8::2024-04-02 10:27:05.458768500 [Microsoft-Windows-PktMon] Property: Component 18, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458768800 [Microsoft-Windows-PktMon] Drop Counters: Component 18, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458769200 [Microsoft-Windows-PktMon] Flow Counters: Component 18, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458769600 [Microsoft-Windows-PktMon] Flow Counters: Component 18, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458770200 [Microsoft-Windows-PktMon] Component 17, Type Filter , Name wfplwfs.sys, WFP 802.3 MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458770800 [Microsoft-Windows-PktMon] Property: Component 17, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458771000 [Microsoft-Windows-PktMon] Property: Component 17, LowerIfIndex  = 33 
[00]425C.34D8::2024-04-02 10:27:05.458771200 [Microsoft-Windows-PktMon] Property: Component 17, MiniportIfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458771400 [Microsoft-Windows-PktMon] Property: Component 17, IfIndex  = 34 
[00]425C.34D8::2024-04-02 10:27:05.458771600 [Microsoft-Windows-PktMon] Property: Component 17, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458771900 [Microsoft-Windows-PktMon] Drop Counters: Component 17, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458772100 [Microsoft-Windows-PktMon] Flow Counters: Component 17, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458772400 [Microsoft-Windows-PktMon] Flow Counters: Component 17, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458772900 [Microsoft-Windows-PktMon] Component 16, Type Filter , Name wfplwfs.sys, WFP Native MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458773200 [Microsoft-Windows-PktMon] Property: Component 16, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458773400 [Microsoft-Windows-PktMon] Property: Component 16, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458773600 [Microsoft-Windows-PktMon] Property: Component 16, IfIndex  = 36 
[00]425C.34D8::2024-04-02 10:27:05.458773800 [Microsoft-Windows-PktMon] Property: Component 16, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458774000 [Microsoft-Windows-PktMon] Drop Counters: Component 16, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458774400 [Microsoft-Windows-PktMon] Flow Counters: Component 16, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458774800 [Microsoft-Windows-PktMon] Flow Counters: Component 16, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458775100 [Microsoft-Windows-PktMon] Component 15, Type Filter , Name pacer.sys, QoS Packet Scheduler 
[00]425C.34D8::2024-04-02 10:27:05.458775400 [Microsoft-Windows-PktMon] Property: Component 15, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458775700 [Microsoft-Windows-PktMon] Property: Component 15, LowerIfIndex  = 36 
[00]425C.34D8::2024-04-02 10:27:05.458776000 [Microsoft-Windows-PktMon] Property: Component 15, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458776300 [Microsoft-Windows-PktMon] Property: Component 15, IfIndex  = 37 
[00]425C.34D8::2024-04-02 10:27:05.458776500 [Microsoft-Windows-PktMon] Property: Component 15, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458776800 [Microsoft-Windows-PktMon] Drop Counters: Component 15, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458777200 [Microsoft-Windows-PktMon] Flow Counters: Component 15, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458777700 [Microsoft-Windows-PktMon] Flow Counters: Component 15, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458778000 [Microsoft-Windows-PktMon] Component 14, Type Filter , Name wfplwfs.sys, WFP 802.3 MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458778200 [Microsoft-Windows-PktMon] Property: Component 14, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458778400 [Microsoft-Windows-PktMon] Property: Component 14, LowerIfIndex  = 37 
[00]425C.34D8::2024-04-02 10:27:05.458778600 [Microsoft-Windows-PktMon] Property: Component 14, MiniportIfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458779200 [Microsoft-Windows-PktMon] Property: Component 14, IfIndex  = 38 
[00]425C.34D8::2024-04-02 10:27:05.458779500 [Microsoft-Windows-PktMon] Property: Component 14, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458779800 [Microsoft-Windows-PktMon] Drop Counters: Component 14, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458780200 [Microsoft-Windows-PktMon] Flow Counters: Component 14, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458780700 [Microsoft-Windows-PktMon] Flow Counters: Component 14, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458781100 [Microsoft-Windows-PktMon] Component 13, Type Filter , Name wfplwfs.sys, WFP Native MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458781400 [Microsoft-Windows-PktMon] Property: Component 13, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458781700 [Microsoft-Windows-PktMon] Property: Component 13, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458781900 [Microsoft-Windows-PktMon] Property: Component 13, IfIndex  = 41 
[00]425C.34D8::2024-04-02 10:27:05.458782100 [Microsoft-Windows-PktMon] Property: Component 13, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458782500 [Microsoft-Windows-PktMon] Drop Counters: Component 13, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458783100 [Microsoft-Windows-PktMon] Flow Counters: Component 13, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458783400 [Microsoft-Windows-PktMon] Flow Counters: Component 13, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458783800 [Microsoft-Windows-PktMon] Component 12, Type Filter , Name pacer.sys, QoS Packet Scheduler 
[00]425C.34D8::2024-04-02 10:27:05.458784000 [Microsoft-Windows-PktMon] Property: Component 12, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458784200 [Microsoft-Windows-PktMon] Property: Component 12, LowerIfIndex  = 41 
[00]425C.34D8::2024-04-02 10:27:05.458784400 [Microsoft-Windows-PktMon] Property: Component 12, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458784600 [Microsoft-Windows-PktMon] Property: Component 12, IfIndex  = 42 
[00]425C.34D8::2024-04-02 10:27:05.458784800 [Microsoft-Windows-PktMon] Property: Component 12, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458785100 [Microsoft-Windows-PktMon] Drop Counters: Component 12, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458785500 [Microsoft-Windows-PktMon] Flow Counters: Component 12, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458786200 [Microsoft-Windows-PktMon] Flow Counters: Component 12, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458786500 [Microsoft-Windows-PktMon] Component 11, Type Filter , Name wfplwfs.sys, WFP 802.3 MAC Layer LightWeight Filter 
[00]425C.34D8::2024-04-02 10:27:05.458786700 [Microsoft-Windows-PktMon] Property: Component 11, OptDataPath  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458786900 [Microsoft-Windows-PktMon] Property: Component 11, LowerIfIndex  = 42 
[00]425C.34D8::2024-04-02 10:27:05.458787100 [Microsoft-Windows-PktMon] Property: Component 11, MiniportIfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458787300 [Microsoft-Windows-PktMon] Property: Component 11, IfIndex  = 43 
[00]425C.34D8::2024-04-02 10:27:05.458787500 [Microsoft-Windows-PktMon] Property: Component 11, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458787800 [Microsoft-Windows-PktMon] Drop Counters: Component 11, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458788200 [Microsoft-Windows-PktMon] Flow Counters: Component 11, Edge Lower, Edge Id 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458788700 [Microsoft-Windows-PktMon] Flow Counters: Component 11, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458789300 [Microsoft-Windows-PktMon] Component 10, Type Miniport , Name vmswitch.sys, Hyper-V Virtual Switch Extension Adapter 
[00]425C.34D8::2024-04-02 10:27:05.458789600 [Microsoft-Windows-PktMon] Property: Component 10, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458789800 [Microsoft-Windows-PktMon] Property: Component 10, IfGuid  = {4a83e31a-1116-4e0e-bf81-5af1564ead6d} 
[00]425C.34D8::2024-04-02 10:27:05.458790000 [Microsoft-Windows-PktMon] Property: Component 10, IfIndex  = 10 
[00]425C.34D8::2024-04-02 10:27:05.458790200 [Microsoft-Windows-PktMon] Property: Component 10, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458790500 [Microsoft-Windows-PktMon] Drop Counters: Component 10, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458790900 [Microsoft-Windows-PktMon] Flow Counters: Component 10, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458791400 [Microsoft-Windows-PktMon] Component 9, Type Miniport , Name VmsProxyHNic.sys, Hyper-V Virtual Ethernet Adapter 
[00]425C.34D8::2024-04-02 10:27:05.458791800 [Microsoft-Windows-PktMon] Property: Component 9, PhysAddress  = 0x00155D07EAB1 
[00]425C.34D8::2024-04-02 10:27:05.458792100 [Microsoft-Windows-PktMon] Property: Component 9, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458792400 [Microsoft-Windows-PktMon] Property: Component 9, IfGuid  = {2c980a25-6b71-4915-8c6a-b58c31947924} 
[00]425C.34D8::2024-04-02 10:27:05.458792800 [Microsoft-Windows-PktMon] Property: Component 9, IfIndex  = 12 
[00]425C.34D8::2024-04-02 10:27:05.458793300 [Microsoft-Windows-PktMon] Property: Component 9, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458793600 [Microsoft-Windows-PktMon] Drop Counters: Component 9, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458794100 [Microsoft-Windows-PktMon] Flow Counters: Component 9, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458794500 [Microsoft-Windows-PktMon] Component 8, Type Miniport , Name vmswitch.sys, Hyper-V Virtual Switch Extension Adapter #2 
[00]425C.34D8::2024-04-02 10:27:05.458794900 [Microsoft-Windows-PktMon] Property: Component 8, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458795100 [Microsoft-Windows-PktMon] Property: Component 8, IfGuid  = {2dfcbbde-7e74-42dd-b5de-1c528522a948} 
[00]425C.34D8::2024-04-02 10:27:05.458795400 [Microsoft-Windows-PktMon] Property: Component 8, IfIndex  = 16 
[00]425C.34D8::2024-04-02 10:27:05.458795700 [Microsoft-Windows-PktMon] Property: Component 8, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458796200 [Microsoft-Windows-PktMon] Drop Counters: Component 8, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458796500 [Microsoft-Windows-PktMon] Flow Counters: Component 8, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 4, Bytes In 264, Direction Out = Tx , Packets Out 4, Bytes Out 264 
[00]425C.34D8::2024-04-02 10:27:05.458796800 [Microsoft-Windows-PktMon] Component 7, Type Miniport , Name netvsc.sys, Microsoft Hyper-V Network Adapter 
[00]425C.34D8::2024-04-02 10:27:05.458797200 [Microsoft-Windows-PktMon] Property: Component 7, PhysAddress  = 0x00155DC98C10 
[00]425C.34D8::2024-04-02 10:27:05.458797500 [Microsoft-Windows-PktMon] Property: Component 7, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458797700 [Microsoft-Windows-PktMon] Property: Component 7, IfGuid  = {903236ef-f9e7-481c-a5a4-57c36a7a3f04} 
[00]425C.34D8::2024-04-02 10:27:05.458798000 [Microsoft-Windows-PktMon] Property: Component 7, IfIndex  = 5 
[00]425C.34D8::2024-04-02 10:27:05.458798200 [Microsoft-Windows-PktMon] Property: Component 7, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458798500 [Microsoft-Windows-PktMon] Drop Counters: Component 7, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458798900 [Microsoft-Windows-PktMon] Flow Counters: Component 7, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 3, Bytes In 158, Direction Out = Tx , Packets Out 3, Bytes Out 158 
[00]425C.34D8::2024-04-02 10:27:05.458799300 [Microsoft-Windows-PktMon] Component 6, Type Miniport , Name VmsProxyHNic.sys, Hyper-V Virtual Ethernet Adapter #2 
[00]425C.34D8::2024-04-02 10:27:05.458799600 [Microsoft-Windows-PktMon] Property: Component 6, PhysAddress  = 0x00155DC98C10 
[00]425C.34D8::2024-04-02 10:27:05.458799900 [Microsoft-Windows-PktMon] Property: Component 6, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458800200 [Microsoft-Windows-PktMon] Property: Component 6, IfGuid  = {44133f9c-a0c8-4440-98e3-c295f6b94c9a} 
[00]425C.34D8::2024-04-02 10:27:05.458800400 [Microsoft-Windows-PktMon] Property: Component 6, IfIndex  = 8 
[00]425C.34D8::2024-04-02 10:27:05.458800600 [Microsoft-Windows-PktMon] Property: Component 6, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458801000 [Microsoft-Windows-PktMon] Drop Counters: Component 6, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458801300 [Microsoft-Windows-PktMon] Flow Counters: Component 6, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 3, Bytes In 158, Direction Out = Tx , Packets Out 2, Bytes Out 116 
[00]425C.34D8::2024-04-02 10:27:05.458801700 [Microsoft-Windows-PktMon] Component 5, Type Miniport , Name VmsProxyHNic.sys, Hyper-V Virtual Ethernet Container Adapter 
[00]425C.34D8::2024-04-02 10:27:05.458801900 [Microsoft-Windows-PktMon] Property: Component 5, PhysAddress  = 0x00155DC5E288 
[00]425C.34D8::2024-04-02 10:27:05.458802200 [Microsoft-Windows-PktMon] Property: Component 5, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458802400 [Microsoft-Windows-PktMon] Property: Component 5, IfGuid  = {26cdbb72-b7bb-46bb-b5f6-50bcd1de2766} 
[00]425C.34D8::2024-04-02 10:27:05.458802700 [Microsoft-Windows-PktMon] Property: Component 5, IfIndex  = 21 
[00]425C.34D8::2024-04-02 10:27:05.458802900 [Microsoft-Windows-PktMon] Property: Component 5, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458803300 [Microsoft-Windows-PktMon] Drop Counters: Component 5, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458803700 [Microsoft-Windows-PktMon] Flow Counters: Component 5, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458804200 [Microsoft-Windows-PktMon] Component 4, Type Miniport , Name VmsProxyHNic.sys, Hyper-V Virtual Ethernet Container Adapter #2 
[00]425C.34D8::2024-04-02 10:27:05.458804500 [Microsoft-Windows-PktMon] Property: Component 4, PhysAddress  = 0x00155D3AAA31 
[00]425C.34D8::2024-04-02 10:27:05.458804800 [Microsoft-Windows-PktMon] Property: Component 4, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458805000 [Microsoft-Windows-PktMon] Property: Component 4, IfGuid  = {df224efa-f0c4-4981-aea7-4951a9fde7f2} 
[00]425C.34D8::2024-04-02 10:27:05.458805400 [Microsoft-Windows-PktMon] Property: Component 4, IfIndex  = 26 
[00]425C.34D8::2024-04-02 10:27:05.458805800 [Microsoft-Windows-PktMon] Property: Component 4, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458806000 [Microsoft-Windows-PktMon] Drop Counters: Component 4, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458806400 [Microsoft-Windows-PktMon] Flow Counters: Component 4, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 1, Bytes In 74, Direction Out = Tx , Packets Out 1, Bytes Out 74 
[00]425C.34D8::2024-04-02 10:27:05.458806800 [Microsoft-Windows-PktMon] Component 3, Type Miniport , Name VmsProxyHNic.sys, Hyper-V Virtual Ethernet Container Adapter #3 
[00]425C.34D8::2024-04-02 10:27:05.458807100 [Microsoft-Windows-PktMon] Property: Component 3, PhysAddress  = 0x00155D07EE72 
[00]425C.34D8::2024-04-02 10:27:05.458807400 [Microsoft-Windows-PktMon] Property: Component 3, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458807600 [Microsoft-Windows-PktMon] Property: Component 3, IfGuid  = {81a4e383-dfcf-4058-a83f-829819ef1b17} 
[00]425C.34D8::2024-04-02 10:27:05.458807900 [Microsoft-Windows-PktMon] Property: Component 3, IfIndex  = 31 
[00]425C.34D8::2024-04-02 10:27:05.458808100 [Microsoft-Windows-PktMon] Property: Component 3, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458808400 [Microsoft-Windows-PktMon] Drop Counters: Component 3, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458809000 [Microsoft-Windows-PktMon] Flow Counters: Component 3, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458809300 [Microsoft-Windows-PktMon] Component 2, Type Miniport , Name VmsProxyHNic.sys, Hyper-V Virtual Ethernet Adapter #3 
[00]425C.34D8::2024-04-02 10:27:05.458809600 [Microsoft-Windows-PktMon] Property: Component 2, PhysAddress  = 0x00155D07FDC7 
[00]425C.34D8::2024-04-02 10:27:05.458809900 [Microsoft-Windows-PktMon] Property: Component 2, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458810100 [Microsoft-Windows-PktMon] Property: Component 2, IfGuid  = {714a1ff5-a661-40ee-b5b2-6b419d3e7854} 
[00]425C.34D8::2024-04-02 10:27:05.458810700 [Microsoft-Windows-PktMon] Property: Component 2, IfIndex  = 35 
[00]425C.34D8::2024-04-02 10:27:05.458811000 [Microsoft-Windows-PktMon] Property: Component 2, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458811300 [Microsoft-Windows-PktMon] Drop Counters: Component 2, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458811700 [Microsoft-Windows-PktMon] Flow Counters: Component 2, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458812000 [Microsoft-Windows-PktMon] Component 1, Type Miniport , Name VmsProxyHNic.sys, Hyper-V Virtual Ethernet Container Adapter #4 
[00]425C.34D8::2024-04-02 10:27:05.458812300 [Microsoft-Windows-PktMon] Property: Component 1, PhysAddress  = 0x00155D07E547 
[00]425C.34D8::2024-04-02 10:27:05.458812600 [Microsoft-Windows-PktMon] Property: Component 1, NdisMedium  = Ethernet  
[00]425C.34D8::2024-04-02 10:27:05.458812900 [Microsoft-Windows-PktMon] Property: Component 1, IfGuid  = {f01ba7c6-c6de-4a65-a32e-9a475e4b40af} 
[00]425C.34D8::2024-04-02 10:27:05.458813200 [Microsoft-Windows-PktMon] Property: Component 1, IfIndex  = 40 
[00]425C.34D8::2024-04-02 10:27:05.458813400 [Microsoft-Windows-PktMon] Property: Component 1, NdisObject  = 1 
[00]425C.34D8::2024-04-02 10:27:05.458814100 [Microsoft-Windows-PktMon] Drop Counters: Component 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458814700 [Microsoft-Windows-PktMon] Flow Counters: Component 1, Edge Upper, Edge Id 1, Direction In = Rx , Packets In 0, Bytes In 0, Direction Out = Tx , Packets Out 0, Bytes Out 0 
[00]425C.34D8::2024-04-02 10:27:05.458815100 [Microsoft-Windows-PktMon] Packet Filter 1, Name , MAC-1 0x000000000000, MAC-2 0x000000000000, EtherType 0, VlanId 0, IP-1 10.127.130.9, IP-2 0.0.0.0, Protocol ICMP , Port-1 0, Port-2 0, TCPFlags 0 
[00]425C.34D8::2024-04-02 10:27:05.458815600 [Microsoft-Windows-PktMon] Packet Filter 2, Name , MAC-1 0x000000000000, MAC-2 0x000000000000, EtherType ARP , VlanId 0, IP-1 10.127.130.9, IP-2 0.0.0.0, Protocol 0, Port-1 0, Port-2 0, TCPFlags 0 
  

If you’re still facing any issues, please provide packet traces for both a successful and a failed ping so we can further look into this. Thanks!

adrianm-msft commented 3 months ago

Hi @aarnaud, just a quick follow-up to see if the issue persists on your end; otherwise we'll close it promptly. Thanks!

aarnaud commented 3 months ago

I will try to find time to re-build a lab to test

aarnaud commented 3 months ago

Hi, At the begining of my test I didn't reproduce the issue from my install using the ISO SERVER EVAL from 31 Oct 2023 OS build 20348.587 . But after few Windows Update and few reboot. I reproduced.

image

image

aarnaud commented 3 months ago

@aarnaud, are you seeing an issue with the MAC address resolution during ping failure? arp -a should show you the resolved mac address of the container.

Nothing different on the arp table between issue or normal situation

aarnaud commented 3 months ago

@aarnaud, are you seeing an issue with the MAC address resolution during ping failure? arp -a should show you the resolved mac address of the container.

Nothing different on the arp table between issue or normal situation

Well, on the windows the arp don't change but on the network equipment the windows server HWaddress is incomplete:

Address                  HWtype  HWaddress           Flags Mask            Iface
192.168.123.4                    (incomplete)                              vmbr2

Address                  HWtype  HWaddress           Flags Mask            Iface
192.168.123.4            ether   bc:24:11:c0:3c:b5   C                     vmbr2
root@x:~# tcpdump -i vmbr2 arp
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on vmbr2, link-type EN10MB (Ethernet), snapshot length 262144 bytes
15:58:40.541847 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:41.565868 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:44.515318 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:45.533821 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:46.557846 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:49.518896 ARP, Request who-has 192.168.123.1 tell 192.168.123.4, length 28
15:58:49.518901 ARP, Reply 192.168.123.1 is-at 42:c7:63:5a:20:43 (oui Unknown), length 28
15:58:54.717876 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:55.741848 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:56.765840 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:58.660025 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:58:59.677872 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:00.701868 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:02.053435 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:03.069856 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:04.093857 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:08.065134 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:09.085860 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:10.113852 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:13.532614 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:14.557845 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:15.581874 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:16.865323 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:17.885852 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:18.909853 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:22.880839 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:23.901819 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:24.925871 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:28.526589 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:29.537818 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:30.510440 ARP, Request who-has 192.168.123.1 tell 192.168.123.4, length 28
15:59:30.510479 ARP, Reply 192.168.123.1 is-at 42:c7:63:5a:20:43 (oui Unknown), length 28
15:59:35.677868 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:36.701848 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:37.725881 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:39.650149 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:40.669820 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:41.693820 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:44.525085 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:45.533846 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:46.557821 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:49.525406 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:50.525860 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:51.549852 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:54.527810 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:55.549821 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:56.573820 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
15:59:59.534735 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:00.541855 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:01.565819 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:04.534978 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:05.565822 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:06.589855 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:09.538163 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:10.557847 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:11.581820 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:14.507484 ARP, Request who-has 192.168.123.1 tell 192.168.123.4, length 28
16:00:14.507492 ARP, Reply 192.168.123.1 is-at 42:c7:63:5a:20:43 (oui Unknown), length 28
16:00:19.709867 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:20.733856 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:21.757846 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:23.663785 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:24.669824 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:25.693845 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:00:28.523371 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28

It's working few seconds after the reply and failed again.

With ICMP:

root@x:~# tcpdump -n -i vmbr2
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on vmbr2, link-type EN10MB (Ethernet), snapshot length 262144 bytes
16:03:24.573936 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:27.526231 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 283, length 40
16:03:27.526847 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:28.541955 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:29.565951 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:32.526397 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 284, length 40
16:03:32.526838 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:33.533930 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:34.557962 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:37.526092 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 285, length 40
16:03:37.526521 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:38.557920 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:39.581968 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:42.521291 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 286, length 40
16:03:42.521913 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:43.549818 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:44.573937 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:47.522705 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 287, length 40
16:03:47.523287 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:48.541982 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:49.565968 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:52.519347 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 288, length 40
16:03:52.519503 ARP, Request who-has 192.168.123.1 tell 192.168.123.4, length 28
16:03:52.519508 ARP, Reply 192.168.123.1 is-at 42:c7:63:5a:20:43, length 28
16:03:52.519788 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 288, length 40
16:03:53.541807 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 289, length 40
16:03:53.542374 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 289, length 40
16:03:54.553661 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 290, length 40
16:03:54.554084 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 290, length 40
16:03:55.564974 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 291, length 40
16:03:55.565427 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 291, length 40
16:03:56.582267 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 292, length 40
16:03:56.582781 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 292, length 40
16:03:57.565957 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:57.604914 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 293, length 40
16:03:57.605464 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 293, length 40
16:03:58.589973 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:58.616699 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 294, length 40
16:03:58.617267 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 294, length 40
16:03:59.613986 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:03:59.627592 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 295, length 40
16:03:59.628141 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 295, length 40
16:04:00.635456 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 296, length 40
16:04:00.635934 IP 1.1.1.1 > 192.168.123.4: ICMP echo reply, id 1, seq 296, length 40
16:04:01.657757 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 297, length 40
16:04:01.658416 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:02.685935 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:03.709947 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:06.533193 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 298, length 40
16:04:06.533767 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:07.549964 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:08.573934 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:11.524880 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 299, length 40
16:04:11.525446 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:12.541938 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:13.565944 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
16:04:16.520914 IP 192.168.123.4 > 1.1.1.1: ICMP echo request, id 1, seq 300, length 40
16:04:16.521540 ARP, Request who-has 192.168.123.4 tell 192.168.123.1, length 28
aarnaud commented 3 months ago

New clue !! I tried to change the network device to VMware vmxnet3 instead of VirtIO (paravirtualized) and I don't have the issue. So my guess is there is an windows update that break the VirtIO network driver. I tested the stable (100.93.104.24000) and latest driver (100.94.104.24800).

BTW the Red Hat VirtIO Ethernet Adapter alone works fine, but when there is Hyper-V Virtual Ethernet Adapter created by the script for L2Bridge I have the issue. I tried to disable all offload feature on the network adapter, issue still here.

adrianm-msft commented 2 months ago

@aarnaud, could you please provide the pktmon logs? This will help us identify exactly which component is causing the packet drops. Thanks!

aarnaud commented 2 months ago

this pktmon logs start with a batch of success ICMP packets , follow by a batch of timeout, follow by a batch of success.

PktMon.txt

adrianm-msft commented 2 months ago

@aarnaud, can you share the pktmon logs including the ARP requests? The issue seems to be related to ARP. You can use the following commands to set up the appropriate filters:

PS C:\> pktmon filter remove
PS C:\> pktmon filter add -t ICMP -i 1.1.1.1
PS C:\> pktmon filter add -d ARP -i 1.1.1.1
faxioman commented 2 months ago

We have the same issue in an on-premises kubernetes cluster with flannel. This is a super-simple way to replicate this issue (without installing k8s nor containerd). These steps must be followed in both VMs.

  1. Create two Windows 2022 VM in an hyper-v host (mine is an Asus Rog Ally) using the "Default switch"
  2. Update the VMs to cumulative patch KB5036909 (it includes KB5034129)
  3. Disable firewall (just to make things easier) Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False
  4. Add Containers feature Add-WindowsFeature Containers
  5. Reboot
  6. Download Microsoft SDN helpers:
    Invoke-WebRequest https://raw.githubusercontent.com/microsoft/SDN/master/Kubernetes/windows/helper.psm1 -O C:\helper.psm1
    Invoke-WebRequest https://raw.githubusercontent.com/microsoft/SDN/master/Kubernetes/windows/helper.v2.psm1 -O C:\helper.v2.psm1
    Invoke-WebRequest https://raw.githubusercontent.com/Microsoft/SDN/master/Kubernetes/windows/hns.psm1 -O C:\hns.psm1
    Invoke-WebRequest https://raw.githubusercontent.com/Microsoft/SDN/master/Kubernetes/windows/hns.v2.psm1 -O C:\hns.v2.psm1
  7. Load downloaded modules:
    ipmo -force -DisableNameChecking C:\helper.psm1
    ipmo -force -DisableNameChecking C:\helper.v2.psm1
    ipmo -force -DisableNameChecking C:\hns.psm1
    ipmo -force -DisableNameChecking C:\hns.v2.psm1
  8. Create the l2bridge HNS network
    CreateExternalNetwork -NetworkMode "l2bridge" -InterfaceName Ethernet

    -- OR -- [CreateExternalNetwork executes the following command]

    New-HNSNetwork -Type l2bridge -AddressPrefix "192.168.255.0/30" -Gateway "192.168.255.1" -Name "External" -AdapterName Ethernet
  9. The two VMs cannot ping each other. To restore the network between the two VMs, you need to remove the HNS network:
    Get-HnsNetwork | Remove-HnsNetwork
pbenini commented 2 months ago

Thanks @faxioman! , with the procedure you shared it is really easy to replicate the issue in our environment.

We have windows server 2022 datacenter on vsphere 7.0.3 Our VM's are configured with VMXNET 3 interface

aarnaud commented 2 months ago

@aarnaud, can you share the pktmon logs including the ARP requests? The issue seems to be related to ARP. You can use the following commands to set up the appropriate filters:

PS C:\> pktmon filter remove
PS C:\> pktmon filter add -t ICMP -i 1.1.1.1
PS C:\> pktmon filter add -d ARP -i 1.1.1.1

I verified, It's already include ARP filter

aarnaud commented 2 months ago

Today there is less drop, the pattern is different but still here

PS C:\Users\Administrator> PktMon.exe start --capture

Logger Parameters:
    Logger name:        PktMon
    Logging mode:       Circular
    Log file:           C:\Users\Administrator\PktMon.etl
    Max file size:      512 MB
    Memory used:        128 MB

Collected Data:
    Packet counters, packet capture

Capture Type:
    All packets

Monitored Components:
    All

Packet Filters:
     # Name    EtherType Protocol IP Address
     - ----    --------- -------- ----------
     1 <empty> ARP                1.1.1.1
     2 <empty>           ICMP     1.1.1.1
PS C:\Users\Administrator> ping 1.1.1.1 /t

Pinging 1.1.1.1 with 32 bytes of data:
Request timed out.
Request timed out.
Reply from 1.1.1.1: bytes=32 time=2ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time<1ms TTL=57
Reply from 1.1.1.1: bytes=32 time<1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time<1ms TTL=57
Request timed out.
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time<1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=6ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Request timed out.
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time<1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Request timed out.
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=48ms TTL=57
Reply from 1.1.1.1: bytes=32 time=34ms TTL=57
Reply from 1.1.1.1: bytes=32 time=81ms TTL=57
Reply from 1.1.1.1: bytes=32 time=27ms TTL=57
Reply from 1.1.1.1: bytes=32 time=19ms TTL=57
Reply from 1.1.1.1: bytes=32 time<1ms TTL=57
Reply from 1.1.1.1: bytes=32 time=1ms TTL=57
Request timed out.
Reply from 1.1.1.1: bytes=32 time<1ms TTL=57

Ping statistics for 1.1.1.1:
    Packets: Sent = 38, Received = 32, Lost = 6 (15% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 81ms, Average = 7ms
Control-C
PS C:\Users\Administrator> pktmon stop

pktmon.txt

aarnaud commented 2 months ago

The 100% reproduce steps:

faxioman commented 2 months ago

In our test scenario, after the L2bridge creation, the ping between the two VMs never works. No problem without applying the cumulative patch KB5036909.

aarnaud commented 2 months ago

I don't understand why Microsoft don't handle this issue more seriously, That confirm my point when is possible to run an app in Linux container or have a build for Linux, I will always ask push in this direction instead of having windows container. I'm ready to be contacted for more troubleshooting, but it seem clearly reproducible in different environment.

ntrappe-msft commented 2 months ago

@grcusanz Do you have any updates you can share? Or potential workarounds while @adrianm-msft is still working on this?

adrianm-msft commented 2 months ago

@aarnaud, I'm setting up a repro environment. It’s taking longer than expected, will get back shortly.

aarnaud commented 2 months ago

No problem, don't hesitate if you need more informations, I can join on sig-windows on slack too.

adrianm-msft commented 1 month ago

I’ve managed to replicate the issue and am now investigating. Will keep this thread updated.

microsoft-github-policy-service[bot] commented 4 days ago

This issue has been open for 30 days with no updates. @adrianm-msft, please provide an update or close this issue.

adrianm-msft commented 1 day ago

We have added this issue to our backlog and will work on resolving it.