Configure Dial-out Mode
In a dial-out mode, the router initiates a session to the destinations based on the subscription.
All 64-bit IOS XR platforms (except for NCS 6000 series routers) support gRPC , UDP and TCP protocols. All 32-bit IOS XR platforms support only TCP.
For more information about the dial-out mode, see Dial-out Mode.
The process to configure a dial-out mode involves:
Create a Destination Group
The destination group specifies the destination address, port, encoding and transport that the router uses to send out telemetry data.
-
Identify the destination address, port, transport, and encoding format.
-
Create a destination group. Router(config)#telemetry model-driven Router(config-model-driven)#destination-group <group-name> Router(config-model-driven-dest)#address family ipv4 <IP-address> port <port-number> Router(config-model-driven-dest-addr)#encoding <encoding-format> Router(config-model-driven-dest-addr)#protocol <transport> Router(config-model-driven-dest-addr)#commit
Example: Destination Group for TCP Dial-out
DGroup1
created for TCP dial-out configuration with
key-value Google Protocol Buffers (also called self-describing-gpb) encoding:
Router(config)#telemetry model-driven
Router(config-model-driven)#destination-group DGroup1
Router(config-model-driven-dest)#address family ipv4 172.0.0.0 port 5432
Router(config-model-driven-dest-addr)#encoding self-describing-gpb
Router(config-model-driven-dest-addr)#protocol tcp
Router(config-model-driven-dest-addr)#commit
Example: Destination Group for UDP Dial-out
DGroup1
created for UDP dial-out configuration with key-value Google Protocol Buffers (also called self-describing-gpb) encoding:
Router(config)#telemetry model-driven
Router(config-model-driven)#destination-group DGroup1
Router(config-model-driven-dest)#address family ipv4 172.0.0.0 port 5432
Router(config-model-driven-dest-addr)#encoding self-describing-gpb
Router(config-model-driven-dest-addr)#protocol udp
Router(config-model-driven-dest-addr)#commit
The UDP destination is shown as Active
irrespective of the state of the collector because UDP is connectionless.
Model-driven Telemetry with UDP is not suitable for a busy network. There is no retry if a message is dropped by the network before it reaches the collector.
Example: Destination Group for gRPC Dial-out
Note |
gRPC is supported in only 64-bit platforms. |
/misc/config/grpc/dialout/
. To by-pass the TLS option, use protocol grpc no-tls
.
RP/0/RP0/CPU0:ios#run
Wed Aug 24 05:05:46.206 UTC
[xr-vm_node0_RP0_CPU0:~]$ls -l /misc/config/grpc/dialout/
total 4
-rw-r--r-- 1 root root 4017 Aug 19 19:17 dialout.pem
[xr-vm_node0_RP0_CPU0:~]$
The CN (CommonName) used in the certificate must be configured as protocol grpc tls-hostname <>
.
DGroup2
created for gRPC dial-out configuration with key-value GPB encoding, and with tls disabled:
Router(config)#telemetry model-driven
Router(config-model-driven)#destination-group DGroup2
Router(config-model-driven-dest)#address family ipv4 172.0.0.0 port 57500
Router(config-model-driven-dest-addr)#encoding self-describing-gpb
Router(config-model-driven-dest-addr)#protocol grpc no-tls
Router(config-model-driven-dest-addr)#commit
DGroup2
created for gRPC dial-out configuration with key-value GPB encoding, and with tls hostname:
Configuration with tls-hostname:
Router(config)#telemetry model-driven
Router(config-model-driven)#destination-group DGroup2
Router(config-model-driven-dest)#address family ipv4 172.0.0.0 port 57500
Router(config-model-driven-dest-addr)#encoding self-describing-gpb
Router(config-model-driven-dest-addr)#protocol grpc tls-hostname hostname.com
Router(config-model-driven-dest-addr)#commit
Note |
If only the protocol grpc is configured without tls option, tls is enabled by default and tls-hostname defaults to the IP address of the destination. |
What to Do Next:
Create a sensor group.Create a Sensor Group
The sensor-group specifies a list of YANG models that are to be streamed.
-
Identify the sensor path for XR YANG model.
-
Create a sensor group. Router(config)#telemetry model-driven Router(config-model-driven)#sensor-group <group-name> Router(config-model-driven-snsr-grp)# sensor-path <XR YANG model> Router(config-model-driven-snsr-grp)# commit
Example: Sensor Group for Dial-out
Note |
gRPC is supported in only 64-bit platforms. |
SGroup1
created for dial-out configuration with the YANG model for optics controller:
Router(config)#telemetry model-driven
Router(config-model-driven)#sensor-group SGroup1
Router(config-model-driven-snsr-grp)# sensor-path Cisco-IOS-XR-controller-optics-oper:optics-oper/optics-ports/optics-port/optics-info
Router(config-model-driven-snsr-grp)# commit
What to Do Next:
Create a subscription.Create a Subscription
The subscription associates a destination-group with a sensor-group and sets the streaming method - cadence-based or event-based telemetry.
A source interface in the subscription group specifies the interface that will be used for establishing the session to stream data to the destination. If both VRF and source interface are configured, the source interface must be in the same VRF as the one specified under destination group for the session to be established.
Router(config)#telemetry model-driven
Router(config-model-driven)#subscription <subscription-name>
Router(config-model-driven-subs)#sensor-group-id <sensor-group> sample-interval <interval>
Router(config-model-driven-subs)#destination-id <destination-group>
Router(config-model-driven-subs)#source-interface <source-interface>
Router(config-mdt-subscription)#commit
Example: Subscription for Cadence-based Dial-out Configuration
The following example shows a subscriptionSub1
that is created to associate the sensor-group and destination-group, and configure an interval of 30 seconds to stream data:
Router(config)#telemetry model-driven
Router(config-model-driven)#subscription Sub1
Router(config-model-driven-subs)#sensor-group-id SGroup1 sample-interval 30000
Router(config-model-driven-subs)#destination-id DGroup1
Router(config-mdt-subscription)# commit
Example: Configure Event-driven Telemetry for Optics Controller and Performance Monitoring
telemetry model-driven
destination-group 1
address family ipv4 <ip-address> port <port-number>
encoding self-describing-gpb
protocol grpc no-tls
!
!
sensor-group 1
sensor-path Cisco-IOS-XR-controller-optics-oper:optics-oper/optics-ports/optics-port/optics-info
!
sensor-group 2
sensor-path Cisco-IOS-XR-pmengine-oper:performance-management-history/global/periodic/
optics-history/optics-port-histories/optics-port-history/optics-second30-history
!
subscription 1
sensor-group-id 1 sample-interval 0
sensor-group-id 2 sample-interval 0
destination-id 1
!
Example: Subscription for Event-based Dial-out Configuration
The following example shows a subscriptionSub1
that is created to associate the sensor-group and destination-group, and configure event-based method to stream data:
Router(config)#telemetry model-driven
Router(config-model-driven)#subscription Sub1
Router(config-model-driven-subs)#sensor-group-id SGroup1 sample-interval 0
Router(config-model-driven-subs)#destination-id DGroup1
Router(config-mdt-subscription)# commit
What to Do Next:
Validate the configuration.Validate Dial-out Configuration
Use the following command to verify that you have correctly configured the router for dial-out.
Router#show telemetry model-driven subscription <subscription-group-name>
Example: Validation for TCP Dial-out
Router#show telemetry model-driven subscription Sub1
Thu Jul 21 15:42:27.751 UTC
Subscription: Sub1 State: ACTIVE
-------------
Sensor groups:
Id Interval(ms) State
SGroup1 30000 Resolved
Destination Groups:
Id Encoding Transport State Port IP
DGroup1 self-describing-gpb tcp Active 5432 172.0.0.0
Example: Validation for gRPC Dial-out
Note |
gRPC is supported in only 64-bit platforms. |
Router#show telemetry model-driven subscription Sub2
Thu Jul 21 21:14:08.636 UTC
Subscription: Sub2 State: ACTIVE
-------------
Sensor groups:
Id Interval(ms) State
SGroup2 30000 Resolved
Destination Groups:
Id Encoding Transport State Port IP
DGroup2 self-describing-gpb grpc ACTIVE 57500 172.0.0.0
The telemetry data starts steaming out of the router to the destination.
Example: Configure model-driven telemetry with different sensor groups
RP/0/RP0/CPU0:ios#sh run telemetry model-driven
Wed Aug 24 04:49:19.309 UTC
telemetry model-driven
destination-group 1
address family ipv4 10.1.1.1 port 1111
protocol grpc
!
!
destination-group 2
address family ipv4 10.2.2.2 port 2222
!
!
destination-group test
address family ipv4 172.0.0.0 port 8801
encoding self-describing-gpb
protocol grpc no-tls
!
address family ipv4 172.0.0.0 port 8901
encoding self-describing-gpb
protocol grpc tls-hostname chkpt1.com
!
!
sensor-group 1
sensor-path Cisco-IOS-XR-controller-optics-oper:optics-oper/optics-ports/optics-port/optics-info
!
sensor-group mdt
sensor-path Cisco-IOS-XR-pmengine-oper:performance-management-history/global/periodic/
optics-history/optics-port-histories/optics-port-history/optics-second30-history
!
sensor-group generic
sensor-path Cisco-IOS-XR-pmengine-oper:performance-management-history/global/periodic/
optics-history/optics-port-histories/optics-port-history/optics-minute15-history
!
sensor-group if-oper
sensor-path Cisco-IOS-XR-pmengine-oper:performance-management-history/global/periodic/
optics-history/optics-port-histories/optics-port-history/optics-hour24-history
!
subscription mdt
sensor-group-id mdt sample-interval 10000
!
subscription generic
sensor-group-id generic sample-interval 10000
!
subscription if-oper
sensor-group-id if-oper sample-interval 10000
destination-id test
!
!
A sample output from the destination with TLS certificate chkpt1.com
: RP/0/RP0/CPU0:ios#sh telemetry model-driven dest
Wed Aug 24 04:49:25.030 UTC
Group Id IP Port Encoding Transport State
-----------------------------------------------------------------------------
1 10.1.1.1 1111 none grpc ACTIVE
TLS:10.1.1.1
2 10.2.2.2 2222 none grpc ACTIVE
TLS:10.2.2.2
test 172.0.0.0 8801 self-describing-gpb grpc Active
test 172.0.0.0 8901 self-describing-gpb grpc Active
TLS:chkpt1.com
A sample output from the subscription: RP/0/RP0/CPU0:ios#sh telemetry model-driven subscription
Wed Aug 24 04:49:48.002 UTC
Subscription: mdt State: ACTIVE
-------------
Sensor groups:
Id Interval(ms) State
mdt 10000 Resolved
Subscription: generic State: ACTIVE
-------------
Sensor groups:
Id Interval(ms) State
generic 10000 Resolved
Subscription: if-oper State: ACTIVE
-------------
Sensor groups:
Id Interval(ms) State
if-oper 10000 Resolved
Destination Groups:
Id Encoding Transport State Port IP
test self-describing-gpb grpc ACTIVE 8801 172.0.0.0
No TLS :
test self-describing-gpb grpc Active 8901 172.0.0.0
TLS : chkpt1.com
RP/0/RP0/CPU0:ios#sh telemetry model-driven subscription if-oper
Wed Aug 24 04:50:02.295 UTC
Subscription: if-oper
-------------
State: ACTIVE
Sensor groups:
Id: if-oper
Sample Interval: 10000 ms
Sensor Path: Cisco-IOS-XR-pmengine-oper:performance-management-history/global/periodic/
optics-history/optics-port-histories/optics-port-history/optics-hour24-history
Sensor Path State: Resolved
Destination Groups:
Group Id: test
Destination IP: 172.0.0.0
Destination Port: 8801
Encoding: self-describing-gpb
Transport: grpc
State: ACTIVE
No TLS
Destination IP: 172.0.0.0
Destination Port: 8901
Encoding: self-describing-gpb
Transport: grpc
State: ACTIVE
TLS : chkpt1.com
Total bytes sent: 120703
Total packets sent: 11
Last Sent time: 2016-08-24 04:49:53.52169253 +0000
Collection Groups:
------------------
Id: 1
Sample Interval: 10000 ms
Encoding: self-describing-gpb
Num of collection: 11
Collection time: Min: 69 ms Max: 82 ms
Total time: Min: 69 ms Avg: 76 ms Max: 83 ms
Total Deferred: 0
Total Send Errors: 0
Total Send Drops: 0
Total Other Errors: 0
Last Collection Start:2016-08-24 04:49:53.52086253 +0000
Last Collection End: 2016-08-24 04:49:53.52169253 +0000
Sensor Path: Cisco-IOS-XR-controller-optics-oper:optics-oper/optics-ports/optics-port/optics-info