Skip to main content
Versa Networks

Configure Automatic Bandwidth Monitoring

Versa-logo-release-icon.png For supported software information, click here.

You can monitor a path's bandwidth automatically for SD-WAN and DIA deployments. You can then use the monitored bandwidth to perform traffic steering.

Note that you cannot enable both DIA and SD-WAN bandwidth monitoring on the same interface.

Configure Automatic SD-WAN Bandwidth Monitoring

In an SD-WAN deployment, when you use data-driven SLA monitoring, you can monitor a path's bandwidth usage automatically. To do this:

  • Configure a Versa speed-test server and assign it to a group.
  • On the VOS devices, create an SD-WAN path policy, enable bandwidth monitoring, and associate the path policy with an interface.

Typically, you use automatic bandwidth monitoring in a hub-and-spoke topology.

Note that for bandwidth monitoring to work, port 5201 must be open on any firewall in the monitoring path. For more information, see VOS Device Firewall Requirements.

For more information, see Configure Data-Driven SLA Monitoring.

Configure Automatic SD-WAN Bandwidth Monitoring Using Versa Director

  1. Configure a Versa speed-test server. Typically, in a hub-and-spoke topology, you configure the hub as the speed-test server. For more information, see Configure a Versa Speed-Test Server.
  2. In Director view:
    1. Select the Configuration tab in the top menu bar.
    2. Select Templates > Device Templates in the horizontal menu bar.
    3. Select an organization in the left navigation bar.
    4. Select a post-staging template in the main pane. The view changes to Appliance view.
  3. Select the Configuration tab in the top menu bar.
  4. Select Services > SD-WAN > Site in the left menu bar. The main pane displays the Site pane.

    site_page.png
  5. In the Site pane, click theedit_icon.png Edit icon. The Edit Site popup window displays.
  6. In the Group Membership field, click the add_icon.png Add icon, and then enter a name for the group to which to assign the Versa speed test servers. You configure group membership only on the device that is acting as the speed-test server. Note that if a spoke is using two hubs to perform automatic SD-WAN bandwidth measures, you must select a hub-specific group membership name.

    edit_site.png
  7. Click OK.

On the spoke device, you configure the SD-WAN path policy to apply to branches, hubs, and Controller devices:

  1. In Director view:
    1. Select the Configuration tab in the top menu bar.
    2. Select Templates > Device Templates in the horizontal menu bar.
    3. Select an organization in the left navigation bar.
    4. Select a post-staging template in the main pane. The view changes to Appliance view.
  2. Select the Configuration tab in the top menu bar.
  3. Select Services > SD-WAN > Path Policies. The main pane displays the path policies that are currently configured.

    path_policies.png
  4. Click the add_icon.png Add icon. The Add Path Policy popup window displays.

    add_path_policy.png
  5. In the Policy Name field, enter a name for the policy.
  6. Click the add_icon.png Add icon. The Add Terms window displays.
  7. Select the Match tab, and then enter information for the following fields.

    add_terms.png
     
    Field Description
    Term Name (Required) Enter a name for the term.
    Remote Site Type Select a remote site type with which to conduct the speed test.
    Group Membership Click the add_icon.png Add icon and select the remote node group.
    Circuit Names (Tab) Configure the WAN circuits to match, by circuit name.
    • Local
    Click the add_icon.png Add icon. From the drop-down, select a WAN circuit name on the local branch. Circuits typically have names such as WAN1 and WAN2.
    • Remote
    Click the add_icon.png Add icon. From the drop-down, select a WAN circuit name on the remote branch.
  8. Select the Action tab, and then enter information for the following fields.

    action_tab.png
     
    Field Description
    Bandwidth Monitoring Click to monitor the link bandwidth on a circuit. You can view the circuit bandwidth in the Monitor > Summary screen.

    Interval

    Enter how often to monitor the link bandwidth, in minutes.

    Range: 10 through 300 minutes

    Default: 10 minutes

  9. Click OK.

Then, associate the path policy with an interface:

  1. In Director view:
    1. Select the Configuration tab in the top menu bar.
    2. Select Templates > Device Templates in the horizontal menu bar.
    3. Select an organization in the left navigation bar.
    4. Select a post-staging template in the main pane. The view changes to Appliance view.
  2. Select the Configuration tab in the top menu bar.
  3. Select Services > SD-WAN > System > Site in the left menu bar. The main pane displays the Site pane.

    site_page1.png
  4. In the Site pane, click the edit_icon.png Edit icon. The Edit Site popup window displays.

    edit_site_page.png
  5. In the WAN Interfaces table, select an interface. The Edit WAN Interfaces popup window displays.
  6. In the Bandwidth Monitoring Policy field, select the policy to associate with the WAN interface.

    edit_WAN_interfaces.png
  7. Click OK.

Configure Automatic SD-WAN Bandwidth Monitoring Using a REST API Call

Use this API call to enable automatic SD-WAN based bandwidth monitoring.

Versa REST API Type
https://ip-address:9182/versa/ncs-services/api/config/devices/device/device/config/orgs/org/org-name/sd-wan/site PUT

The following example shows the payload of this API call:

{ 
   "path-policy":[ 
      { 
         "policy-name":"BW-MS-WAN1",
         "terms":{ 
            "term":[
               { 
                  "term-name":"Test-BW-MS",
                  "match":{
                     "remote-site-type":"branch"
                  },
                  "action":{
                     "sla-monitoring":{
                        "interval":"10000",
                        "logging-interval":"300",
                        "loss-threshold":"3"
                     },
                     "bandwidth-monitoring":{
                        "interval":"10"
                     }
                  }
               }
            ]
         }
      }
   ]
}

Use this API call to associate the path policy to an interface.

Versa REST API Type
https://ip-address:9182/versa/ncs-services/api/config/devices/device/device/config/orgs/org/org-name/sd-wan/site/ PUT

The following example shows the payload of this API call:

"wan-interfaces":{
         "vni":[ 
            { 
               "name":"vni-0/0.0",
               "sla-monitoring-policy":"SLAM_Policy_vni-0/0.0",
               "bandwidth-monitoring-policy":"BW-MS-WAN1",
               "shaping-rate":{
 
               },
               "management-traffic":{
                  "priority":"0"
               }
            },
            { 
               "name":"vni-0/1.0",
               "sla-monitoring-policy":"SLAM_Policy_vni-0/1.0",
               "shaping-rate":{
 
               }
            }
         ]
      }
      

Configure Automatic DIA Bandwidth Monitoring

For Releases 21.2.1 and later.

You can configure VOS devices to send DIA bandwidth monitors at a configured interval toward a peer node or a configured node with a public IP address. To do this, you configure one or more monitors on the VOS device, specifying the IP address of a remote destination. The VOS device then runs the speed test between the local and remote devices. You can then use the monitored bandwidth to perform traffic steering. For more information, see Configure SD-WAN Traffic Steering.

Note: If the destination IP address is a remote SD-WAN branch's WAN IP address, the remote branch must be configured as a speed-test server.

VOS devices can also use predeployed speed-test servers to run speed tests from Versa Director nodes. For more information, see Run Internet Speed Tests.

To configure DIA bandwidth monitors:

  1. Configure a Versa speed-test server. For more information, see Configure a Versa Speed Test Server.
  2. In Director view:
    1. Select the Configuration tab in the top menu bar.
    2. Select Templates > Device Templates in the horizontal menu bar.
    3. Select an organization in the left menu bar.
    4. Select a post-staging template in the main pane. The view changes to Appliance view.
  3. Select the Configuration tab in the top menu bar.
  4. Select Others > System > Speed Test in the left menu bar. The Speed Test screen displays.

    speet_test_page.png
  5. Select the Auto Bandwidth Measurement tab.
  6. Click the add_icon.png Add icon. In the Add Bandwidth Measurement popup window, enter information for the following fields.

    add_bandwidth_measurement.png
     
    Field Description
    Name (Required) Enter a name for the bandwidth monitor.
    Remote Destination (Required) Enter the IP address of the remote node. Note that you cannot enter an FQDN as the remote destination.
    Monitor Interval (Required)

    Enter the interval between speed tests, in minutes.

    Default: 30 minutes

    Range: 5 to 300 minutes

    Network or Interfaces (Group of Fields) Select either a network or interfaces to use for the speed test. You cannot select both.
    • Networks
    Select a network to use for the speed test.
    • Interface List
    Click the add_image.png Add icon and select up to 8 VNI or TVI interfaces per monitor from which to run the speed test.
  7. Click OK.

To define next-hop parameters and priorities for DIA traffic, you configure them in a Layer 3 SD-WAN traffic forwarding profile, on the Next Hop tab in the Add (or Edit) Forwarding Profile popup window. For more information, see Configure SD-WAN Traffic Steering.

View the Monitored Bandwidth

For Releases 21.2.1 and later.

To view the SD-WAN or DIA monitored bandwidth:

  1. In Director view:
    1. Select the Administration tab from the top menu bar.
    2. Select Appliances in the left menu bar.
    3. Select the device in the main pane. The view changes to Appliance view.
  2. Select the Monitor tab in the top menu bar.
  3. Select an organization in the left menu bar.
  4. Select the Summary tab in the horizontal menu bar.
  5. For the interface that you used for the speed test, click theeye_icon.png Eye icon in the Bandwidth column. The Bandwidth Results popup window displays.

    summary_page.png
  6. Select the Path Bandwidth Measurement (SD-WAN) tab or the Bandwidth Measurement (DIA) tab to display the results for each type of measurement.

    bandwidth_results.png

To check the calculated bandwidth from the CLI, issue the following command:

admin@SD-WAN-Branch3-New-cli> show system bw-measurement monitor status brief
           BANDWIDTH                                                                                                        
INTERFACE  MONITOR                                            REMOTE      DOWNLINK    UPLINK     LAST                                  
NAME       NAME       SOURCE ADDRESS  REMOTE ADDRESS  FQDN    BANDWIDTH   BANDWIDTH   TRIGGERED  STATUS                      
-----------------------------------------------------------------------------------------------------------------------------
vni-0/0.0  wan1_mon   192.168.200.10  192.168.200.40  N/A     95.99 Mbps  93.44 Mbps  00:01:00   completed-within-threshold  
vni-0/1.0  wan2_mon   192.168.200.11  192.168.200.41  N/A     95.77 Mbps  95.05 Mbps  00:01:00   completed-within-threshold  

Supported Software Information

Releases 20.2.1 and later support all content described in this article, except:

  • Release 21.2.1 supports speed tests over DIA links and viewing the monitored bandwidth.
  • Was this article helpful?