Transport GPS Feature
Configure GPS.
Diagram
Classes
transport_profiles (sdwan.feature_profiles)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
gps_features | List | [gps_features] | No |
gps_features (sdwan.feature_profiles.transport_profiles)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
name | String | Regex: ^[^&<>! "]{1,128}$ | Yes | |
description | String | No | ||
gps_enable | Boolean | true , false | No | true |
gps_enable_variable | String | Regex: ^[./\[\]a-zA-Z0-9_-]{1,64}$ | No | |
gps_mode | Choice | ms-based , standalone | No | |
gps_mode_variable | String | Regex: ^[./\[\]a-zA-Z0-9_-]{1,64}$ | No | |
nmea_enable | Boolean | true , false | No | |
nmea_source_address | IP | No | ||
nmea_source_address_variable | String | Regex: ^[./\[\]a-zA-Z0-9_-]{1,64}$ | No | |
nmea_destination_address | IP | No | ||
nmea_destination_address_variable | String | Regex: ^[./\[\]a-zA-Z0-9_-]{1,64}$ | No | |
nmea_destination_port | Integer | min: 1 , max: 65535 | No | |
nmea_destination_port_variable | String | Regex: ^[./\[\]a-zA-Z0-9_-]{1,64}$ | No |
Examples
Example-1: The example below demonstrates how to configure the gps feature within a transport profile. It sets up the LTE cellular modem for GPS in Standalone mode and enabling GPS NMEA data streaming, udp socket details: source IP, destination IP and port.
sdwan: feature_profiles: transport_profiles: - name: transport1 gps_features: - name: gps1 gps_enable: true gps_mode: standalone nmea_enable: true nmea_source_address: 192.168.1.100 nmea_destination_address: 192.168.1.22 nmea_destination_port: 12345