Network Management
Set interface bandwidth
This article provides steps to set the interface bandwidth.
First published date
Last published date
Overview
Product section
Cause
Resolution
- Log in to the Orion Web Console.
- Go to the interface details page.
- Click Edit Interface.
- Select Custom Bandwidth.
- Set the transmit bandwidth and receive bandwidth.
- Click Submit.
Another option, especially if you have to set a custom bandwidth on many interfaces, is to do the following:
- Log in to the Orion Web Console.
- Navigate to Settings -> Manage Nodes.
- Select the interfaces you need to modify.
- Click on Edit Properties.
- Select Custom Bandwidth.
- Set the transmit bandwidth and receive bandwidth.
- Click Submit.
The following example SQL statement performs a bulk change to all records to set the bandwidth to to 100Mb/s. Note that 'where interfaceid<1' must be changed to your own specs.
-- Scripts are not supported under any SolarWinds support program or service. -- Scripts are provided AS IS without warranty of any kind. SolarWinds further -- disclaims all warranties including, without limitation, any implied warranties -- of merchantability or of fitness for a particular purpose. The risk arising -- out of the use or performance of the scripts and documentation stays with you. -- In no event shall SolarWinds or anyone else involved in the creation, -- production, or delivery of the scripts be liable for any damages whatsoever -- (including, without limitation, damages for loss of business profits, business -- interruption, loss of business information, or other pecuniary loss) arising -- out of the use of or inability to use the scripts or documentation. SELECT fullname,custombandwidth, InBandwidth, OutBandwidth, * FROM [dbo].[Interfaces] order by nodeid where interfaceid<1 update interfaces set custombandwidth = 1, InBandwidth = 100000000, OutBandwidth = 100000000 where interfaceid <1