What is this?

This knowledgebase contains questions and answers about PRTG Network Monitor and network monitoring in general.

Learn more

PRTG Network Monitor

Intuitive to Use. Easy to manage.
More than 500,000 users rely on Paessler PRTG every day. Find out how you can reduce cost, increase QoS and ease planning, as well.

Free Download

Top Tags


View all Tags

How can i monitor speed of my Networkcard? (1 Gb\10Gb)

Votes:

0

How can i monitor the speed of my Networkcard? Example: if the speed fallback from 10GB to 1GB i Need an alert.

Which sensor are the right one? (Targets are Windows Server 2012 R2)

regards, Ralf

bandwidth networkcard speed

Created on Mar 23, 2016 7:25:57 AM



Best Answer

Accepted Answer

Votes:

1

Hi Ralf,

In addition to the previous answer, the speed could be monitored with your own custom script. The PowerShell command

Get-WmiObject -ComputerName 'servername' -Class Win32_NetworkAdapter | `
    Where-Object { $_.Speed -ne $null -and $_.MACAddress -ne $null } | `
    Format-Table -Property SystemName,Name,NetConnectionID,Speed

will list all adapters including the speed of the interface. The required syntax is documented on the Setup > PRTG API > Custom Sensors page.

Best regards, Felix

Created on Mar 24, 2016 5:31:12 AM by  Felix Saure [Paessler Support]



3 Replies

Votes:

0

Did you already have a look at the Windows Network Card Sensor ?

Created on Mar 23, 2016 12:30:07 PM



Accepted Answer

Votes:

1

Hi Ralf,

In addition to the previous answer, the speed could be monitored with your own custom script. The PowerShell command

Get-WmiObject -ComputerName 'servername' -Class Win32_NetworkAdapter | `
    Where-Object { $_.Speed -ne $null -and $_.MACAddress -ne $null } | `
    Format-Table -Property SystemName,Name,NetConnectionID,Speed

will list all adapters including the speed of the interface. The required syntax is documented on the Setup > PRTG API > Custom Sensors page.

Best regards, Felix

Created on Mar 24, 2016 5:31:12 AM by  Felix Saure [Paessler Support]



Votes:

0

Thanks

maybe i'm wrong, but the Network Card Sensor shows me not the connected speed of my networkcard. (like 10gb or 1 gb).

The second answer with WMI helps me to solve my Problem:

wql-File with: SELECT Speed FROM Win32_NetworkAdapter WHERE NetConnectionID ='<#PH1>'

<#PH1> = NetConnectionID (Show WMI-Script from Felix)

Thanks at all, regards, Ralf

Created on Mar 24, 2016 8:09:58 AM




Disclaimer: The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.