We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"ValueError: Unknown network interface None"
That's the error message I keep getting on Windows when I try to start the app. And I'm not sure how I can get name for my ethernet adapter either.
The text was updated successfully, but these errors were encountered:
Easy way: Open Device Manager and find your Network Adapter name
Open PowerShell and type the command:
get-wmiobject win32_networkadapter -filter "netconnectionstatus = 2" | select netconnectionid, name
You will get a device list:
netconnectionid name --------------- ---- VMware Network Adapter VMnet1 VMware Virtual Ethernet Adapter for VMnet1 VMware Network Adapter VMnet8 VMware Virtual Ethernet Adapter for VMnet8 Ethernet Realtek PCIe GBE Family Controller
Then use with rtmpSnoop:
python rtmpSnoop.py -i "Realtek PCIe GBE Family Controller"
You should see the text:
rtmpSnoop v0.2.1 - The RTMP Sniffer! Andrea Fabrizi - [email protected] Starting sniffing on Realtek PCIe GBE Family Controller...
Sorry, something went wrong.
No branches or pull requests
"ValueError: Unknown network interface None"
That's the error message I keep getting on Windows when I try to start the app. And I'm not sure how I can get name for my ethernet adapter either.
The text was updated successfully, but these errors were encountered: