Is it possible to capture tcp packets inside a windows docker container? (using an image ultimately based on microsoft/windowsservercore)
netsh trace start
fails with The inbox capture driver could not be started (error=0x800106d9)
New-NetEventSession -CaptureMode SaveToFile -Name cat -LocalFilePath c:\cat.etl
fails with A general error occurred that is not covered by a more specific error code
(context - I'm trying to debug a networking issue, whereby a dockerised application seems to stop receiving data over an established connection after a period of time. I can run a trace on the docker host and see data getting forwarded to the container; I'd like to be able to do the same from within the container to see if it shows up there, too)