Skip to content

Transport GPS Feature

Configure GPS.

Diagram

Diagram

Classes

transport_profiles (sdwan.feature_profiles)

NameTypeConstraintMandatoryDefault Value
gps_featuresList[gps_features]No

gps_features (sdwan.feature_profiles.transport_profiles)

NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[^&<>! "]{1,128}$Yes
descriptionStringNo
gps_enableBooleantrue, falseNotrue
gps_enable_variableStringRegex: ^[./\[\]a-zA-Z0-9_-]{1,64}$No
gps_modeChoicems-based, standaloneNo
gps_mode_variableStringRegex: ^[./\[\]a-zA-Z0-9_-]{1,64}$No
nmea_enableBooleantrue, falseNo
nmea_source_addressIPNo
nmea_source_address_variableStringRegex: ^[./\[\]a-zA-Z0-9_-]{1,64}$No
nmea_destination_addressIPNo
nmea_destination_address_variableStringRegex: ^[./\[\]a-zA-Z0-9_-]{1,64}$No
nmea_destination_portIntegermin: 1, max: 65535No
nmea_destination_port_variableStringRegex: ^[./\[\]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