-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Cisco-IOS-XR-ipv4-bgp-cfg.yang
5346 lines (5002 loc) · 160 KB
/
Cisco-IOS-XR-ipv4-bgp-cfg.yang
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
module Cisco-IOS-XR-ipv4-bgp-cfg {
/*** NAMESPACE / PREFIX DEFINITION ***/
namespace "http://cisco.com/ns/yang/Cisco-IOS-XR-ipv4-bgp-cfg";
prefix "ipv4-bgp-cfg";
/*** LINKAGE (IMPORTS / INCLUDES) ***/
import ietf-inet-types { prefix "inet"; }
import Cisco-IOS-XR-types { prefix "xr"; }
import Cisco-IOS-XR-ipv4-bgp-datatypes { prefix "dt1"; }
import Cisco-IOS-XR-infra-rsi-cfg { prefix "a1"; }
import Cisco-IOS-XR-snmp-agent-cfg { prefix "a2"; }
/*** META INFORMATION ***/
organization "Cisco Systems, Inc.";
contact
"Cisco Systems, Inc.
Customer Service
Postal: 170 West Tasman Drive
San Jose, CA 95134
Tel: +1 800 553-NETS
E-mail: cs-yang@cisco.com";
description
"This module contains a collection of YANG definitions
for Cisco IOS-XR ipv4-bgp package configuration.
This module contains definitions
for the following management objects:
bgp: BGP configuration commands
bmp-server-all: bmp server all
bmp-servers: bmp servers
This YANG module augments the
Cisco-IOS-XR-infra-rsi-cfg,
Cisco-IOS-XR-snmp-agent-cfg
modules with configuration data.
Copyright (c) 2013-2016 by Cisco Systems, Inc.
All rights reserved.";
revision "2015-08-27" {
description
"IOS XR 5.3.2 revision.";
}
typedef Bgp-mvpn-sfs-select {
type enumeration {
enum all-paths {
value 1;
description "Select all paths as single forwarder PE";
}
enum highest-ip-address {
value 2;
description
"Select PE with highest address as single
forwarder PE";
}
}
description "Bgp mvpn sfs select";
}
typedef Bmp-policy-select {
type enumeration {
enum post-policy {
value 2;
description "Pickup routes after policy application";
}
}
description "Bmp policy select";
}
typedef Bgp-default-metric-range {
type uint32 {
range "0..4294967295";
}
description "Bgp default metric range";
}
typedef Bgp-ebgp-send-dmz-enable-mode {
type enumeration {
enum disable {
value 0;
description "Disable Mode - Prevent inheritance";
}
enum default {
value 1;
description
"Default Mode - Send dmz link bandwidth value to
ebgp neighbor";
}
enum cumulative {
value 2;
description
"Strict Mode - Send cumulative dmz link
bandwidth value to ebgp neighbor";
}
}
description "Bgp ebgp send dmz enable mode";
}
typedef Bgp-signal {
type enumeration {
enum bgp-disable {
value 1;
description "Signalling BGP disable";
}
enum ldp-disable {
value 2;
description "Signalling LDP disable";
}
}
description "Bgp signal";
}
typedef Bgp-vrf-route-target {
type enumeration {
enum as {
value 0;
description "AS format RT";
}
enum ipv4-address {
value 1;
description "IPv4 address format RT";
}
enum four-byte-as {
value 2;
description "4-byte AS format RT";
}
}
description "Bgp vrf route target";
}
typedef Bgp-rnh-install-format {
type enumeration {
enum ext-comm {
value 0;
description "Install RNH as opaque and extcomm";
}
enum ext-comm-only {
value 1;
description "Install RNH as extcomm only";
}
}
description "Bgp rnh install format";
}
typedef Bgp-bfd-enable-mode {
type enumeration {
enum disable {
value 0;
description "Disable Mode - Prevent inheritance";
}
enum default {
value 1;
description "Default Mode - Default BFD behavior";
}
enum strict {
value 2;
description
"Strict Mode - Hold down adj until BFD session
up";
}
}
description "Bgp bfd enable mode";
}
typedef Route-target-as-index {
type uint32 {
range "0..4294967295";
}
description "Route target as index";
}
typedef Bmp-route-direction {
type enumeration {
enum inbound {
value 1;
description "Pickup routes at inbound direction from peer";
}
}
description "Bmp route direction";
}
typedef Bgp-send-mcast-attr-cfg {
type enumeration {
enum enable {
value 1;
description "Enable SendMcastAttr";
}
enum disable {
value 2;
description "Disable SendMcastAttr";
}
}
description "Bgp send mcast attr cfg";
}
typedef Bgp-aigp-cfg-poi {
type enumeration {
enum pre-best-path {
value 1;
description "AIGP Pre-bestpath POI";
}
enum igp-cost {
value 2;
description "AIGP igp-cost POI";
}
}
description "Bgp aigp cfg poi";
}
typedef Bgp-flowspec-validation-cfg {
type enumeration {
enum enable {
value 1;
description "Enable Flowspec validation";
}
enum disable {
value 2;
description "Disable Flowspec validation";
}
enum redirect-nexhop-disable {
value 3;
description "Disable Flowspec redirect nexthop validation";
}
}
description "Bgp flowspec validation cfg";
}
typedef Route-target-addr-index {
type uint32 {
range "0..65535";
}
description "Route target addr index";
}
typedef Bgp-orf {
type enumeration {
enum none {
value 0;
description "No capability to send or receive";
}
enum receive {
value 1;
description "Receive ORF capability";
}
enum send {
value 2;
description "Send ORF capability";
}
enum both {
value 3;
description "Send and receive ORF capability";
}
}
description "Bgp orf";
}
typedef Bgp-rpki-transport {
type enumeration {
enum tcp {
value 0;
description "TCP Transport";
}
enum ssh {
value 1;
description "SSH Transport";
}
}
description "Bgp rpki transport";
}
typedef Bgp-reorg-opt {
type enumeration {
enum bgp-cfg-adv {
value 1;
description "Advertise translated routes";
}
enum bgp-cfg-adv-reorg {
value 2;
description "Advertise Reorig routes";
}
enum bgp-cfg-adv-disable {
value 3;
description "Disable adv of routes";
}
enum bgp-cfg-adv-local {
value 4;
description "Advertise local routes";
}
enum bgp-cfg-adv-def-vrf-imp-disable {
value 5;
description "Disable adv of Def VRF Imported routes";
}
enum bgp-cfg-adv-vrf-re-imp-disable {
value 6;
description "Disable adv of VRF ReImported routes";
}
}
description "Bgp reorg opt";
}
typedef Bgp-af-encapsulation {
type enumeration {
enum vx-lan {
value 1;
description "VxLAN encapsulation type";
}
}
description "Bgp af encapsulation";
}
typedef Bgp-aigp-cfg {
type enumeration {
enum enable {
value 1;
description "Enable AIGP";
}
enum disable {
value 2;
description "Disable AIGP";
}
}
description "Bgp aigp cfg";
}
typedef Bgp-route-distinguisher {
type enumeration {
enum auto {
value 1;
description "Automatically assigned";
}
enum as {
value 2;
description "AS format RD";
}
enum four-byte-as {
value 3;
description "4-byte AS format RD";
}
enum ipv4-address {
value 4;
description "IPv4 address format RD";
}
}
description "Bgp route distinguisher";
}
typedef Bgp-adv-rt {
type enumeration {
enum bgp-regular-rt {
value 0;
description "Regular RT type";
}
enum bgp-stitching-rt {
value 1;
description "Stitching RT type";
}
}
description "Bgp adv rt";
}
typedef Bgp-tcp-mode {
type enumeration {
enum either {
value 0;
description "Either active or passive mode";
}
enum active-only {
value 1;
description "Active mode only";
}
enum passive-only {
value 2;
description "Passive mode only";
}
}
description "Bgp tcp mode";
}
typedef Bgp-site-of-origin {
type enumeration {
enum as {
value 0;
description "AS format SoO";
}
enum ipv4-address {
value 1;
description "IPv4 address format SoO";
}
enum four-byte-as {
value 2;
description "4-byte AS format SoO";
}
}
description "Bgp site of origin";
}
typedef Bgp-cluster-id {
type enumeration {
enum number {
value 1;
description "Number";
}
enum ipv4-address {
value 2;
description "IPv4 Address";
}
}
description "Bgp cluster id";
}
grouping ADVERTISE-DISABLE {
description
"Common node of neighbor-group-af, neighbor-af,
vrf-neighbor-af, af-group-af";
container advertise-disable {
description "Disable Advertise Of Routes to the peer";
leaf af-name {
type dt1:Bgp-address-family;
description "Address family";
}
leaf reorg-option {
type Bgp-reorg-opt;
description "Reorigination option";
}
leaf rt-type {
type Bgp-adv-rt;
description "RT type";
}
}
}
grouping TABLE-POLICY {
description "Common node of global-af, vrf-global-af";
leaf table-policy {
type string;
description
"Configure policy for installation of routes to
RIB";
}
}
grouping MAXIMUM-PREFIXES {
description
"Common node of global-af, vrf-global-afCommon
node of neighbor-group-af, neighbor-af,
vrf-neighbor-af, af-group-af";
container maximum-prefixes {
presence "Indicates a maximum-prefixes node is configured.";
description
"Maximum number of prefixes to accept from this
peer";
leaf prefix-limit {
type uint32 {
range "1..4294967295";
}
mandatory true;
description "Maximum prefixes limit";
}
leaf warning-percentage {
type uint32 {
range "1..100";
}
default "75";
description
"Threshold value (%) at which to generate a
warning message.";
}
leaf warning-only {
type boolean;
default "false";
description
"TRUE to only give a warning message when limit
is exceeded. FALSE to accept max prefix limit
only.";
}
leaf restart-time {
type uint32 {
range "0..65535";
}
default "0";
description "Restart interval";
}
leaf discard-extra-paths {
type boolean;
default "false";
description "Discard extra paths when limit is exceeded";
}
}
}
grouping DISTANCE {
description "Common node of global-af, vrf-global-af";
container distance {
description "Define an administrative distance";
leaf external-routes {
type uint32 {
range "1..255";
}
default "20";
description "Distance for routes external to the AS";
}
leaf internal-routes {
type uint32 {
range "1..255";
}
default "200";
description "Distance for routes internal to the AS";
}
leaf local-routes {
type uint32 {
range "1..255";
}
default "200";
description "Distance for local routes";
}
}
}
grouping UPDATE-SOURCE-INTERFACE {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
leaf update-source-interface {
type xr:Interface-name;
description "Select an interface to configure";
}
}
grouping MULTI-PATH-AS-PATH-IGNORE-ONWARDS {
description "Common node of global, vrf-global";
leaf multi-path-as-path-ignore-onwards {
type empty;
description
"Change default multi-route selection criteria to
ignore everything onwards as-path check";
}
}
grouping PROPAGATE-DMZ-LINK-BANDWIDTH {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
leaf propagate-dmz-link-bandwidth {
type boolean;
description
"TRUE to propagate DMZ link bandwidth. FALSE to
not propagate and to prevent inheritance from a
parent";
}
}
grouping DISABLE-AUTO-SOFT-RESET {
description "Common node of global, vrf-global";
leaf disable-auto-soft-reset {
type empty;
description
"Disable automatic soft peer reset on policy
reconfiguration";
}
}
grouping MSG-LOG-IN {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
container msg-log-in {
description "Message log inbound";
leaf msg-buf-count {
type uint32 {
range "1..100";
}
description "Inbound message log buffer size";
}
leaf msg-log-disable {
type boolean;
description "Disable inbound message logging";
}
leaf msg-log-inherit-disable {
type boolean;
description
"TRUE, to prevent this entity from having a
inbound message logging if parent has one";
}
}
}
grouping DISABLE-ENFORCE-FIRST-AS {
description "Common node of global, vrf-global";
leaf disable-enforce-first-as {
type empty;
description "Disable enforce the first AS for EBGP routes";
}
}
grouping ROUTE-TARGET-TABLE {
description
"Common node of import-route-targets,
export-route-targets";
container route-targets {
description "Route target table";
list route-target {
must "as-or-four-byte-as or ipv4-address" {
description
"AS-or-FourByteAS or IPV4Address must be
present.";
}
key "type";
description "Route target";
leaf type {
type Bgp-vrf-route-target;
description "Type of RT";
}
list as-or-four-byte-as {
when "../type = 'as' or ../type = 'four-byte-as'" {
description "../Type = AS or ../Type = FourByteAS";
}
key "as-xx as as-index stitching-rt";
description "as or four byte as";
leaf as-xx {
type uint32;
description "AS number";
}
leaf as {
type uint32 {
range "1..4294967295";
}
description "AS number";
}
leaf as-index {
type Route-target-as-index;
description "AS number Index";
}
leaf stitching-rt {
type uint32 {
range "0..1";
}
description "Stitching RT";
}
}
list ipv4-address {
when "../type = 'ipv4-address'" {
description "../Type = IPV4Address";
}
key "address address-index stitching-rt";
description "ipv4 address";
leaf address {
type inet:ipv4-address-no-zone;
description "IP address";
}
leaf address-index {
type Route-target-addr-index;
description "IP address Index";
}
leaf stitching-rt {
type uint32 {
range "0..1";
}
description "Stitching RT";
}
}
}
}
}
grouping REMOTE-AS {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
container remote-as {
description "Set remote AS";
leaf as-xx {
type dt1:Bgp-as-range;
description "xx of AS number xx.yy";
}
leaf as-yy {
type dt1:Bgp-as-range;
description "yy of AS number xx.yy";
}
}
}
grouping ADDITIONAL-PATHS-SEND {
description "Common node of global-af, vrf-global-af";
leaf additional-paths-send {
type dt1:Bgpaf-additional-paths-cfg;
description "Advertise additional paths Send capability";
}
}
grouping UPDATE-IN-FILTERING {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
container update-in-filtering {
description "Inbound update filtering";
container update-in-filtering-message-buffers {
presence "Indicates a update-in-filtering-message-buffers"+
" node is configured.";
description "Message buffers to store filtered updates";
leaf number-of-buffers {
type uint32 {
range "0..25";
}
mandatory true;
description "Number of message buffers";
}
leaf non-circular-buffer {
type boolean;
mandatory true;
description "TRUE to configure non-circular buffer";
}
}
leaf enable {
type empty;
description "Configure inbound update filtering";
}
leaf update-in-filtering-attribute-filter-group {
type string;
description
"Attribute-filter group name for update
filtering";
}
leaf update-in-filtering-syslog-disable {
type empty;
description
"Disable inbound update filtering syslog
messages";
}
}
}
grouping SHUTDOWN {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
leaf shutdown {
type boolean;
description
"TRUE to shutdown this entity, FALSE to prevent
this entity from being shutdown even if the
parent is.";
}
}
grouping BMP-ACTIVATE-TABLE {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
container bmp-activates {
description "Enable BMP logging for this neighbor";
list bmp-activate {
key "server-id";
description "Enable BMP logging for this particular server";
leaf server-id {
type uint32 {
range "1..8";
}
description "BMP Server ID";
}
}
}
}
grouping ADVERTISE-VRF-IMP-DISABLE-V4 {
description
"Common node of neighbor-group-af, neighbor-af,
vrf-neighbor-af, af-group-af";
container advertise-vrf-imp-disable-v4 {
description "Disable Advertise Of VRF ReImported Routes";
leaf af-name {
type dt1:Bgp-address-family;
description "Address family";
}
leaf adv-option {
type Bgp-reorg-opt;
description "Advertise option";
}
leaf rt-type {
type Bgp-adv-rt;
description "RT type";
}
}
}
grouping ADVERTISE-VRF-IMP-DISABLE-V6 {
description
"Common node of neighbor-group-af, neighbor-af,
vrf-neighbor-af, af-group-af";
container advertise-vrf-imp-disable-v6 {
description "Disable Advertise Of VRF ReImported Routes";
leaf af-name {
type dt1:Bgp-address-family;
description "Address family";
}
leaf adv-option {
type Bgp-reorg-opt;
description "Advertise option";
}
leaf rt-type {
type Bgp-adv-rt;
description "RT type";
}
}
}
grouping SITE-OF-ORIGIN {
description
"Common node of neighbor-group-af, vrf-neighbor-af
, af-group-af";
container site-of-origin {
description
"Site-of-Origin extended community associated
with the neighbor";
leaf type {
type Bgp-site-of-origin;
description "Type of Extended community";
}
leaf as-xx {
when "../type = 'as' or ../type = 'four-byte-as'" {
description "../Type = AS or ../Type = FourByteAS";
}
type dt1:Bgp-as-range;
description "AS number";
}
leaf as {
when "../type = 'as' or ../type = 'four-byte-as'" {
description "../Type = AS or ../Type = FourByteAS";
}
type dt1:Bgp-as-range;
description "AS number";
}
leaf as-index {
when "../type = 'as' or ../type = 'four-byte-as'" {
description "../Type = AS or ../Type = FourByteAS";
}
type dt1:Bgp-extcomm-asn-index;
description "AS number Index";
}
leaf address {
when "../type = 'ipv4-address'" {
description "../Type = IPV4Address";
}
type inet:ipv4-address-no-zone;
description "IP address";
}
leaf address-index {
when "../type = 'ipv4-address'" {
description "../Type = IPV4Address";
}
type dt1:Bgp-extcomm-v4-addr-index;
description "IP address Index";
}
}
}
grouping ROUTE-POLICY-OUT {
description
"Common node of neighbor-group-af, neighbor-af,
vrf-neighbor-af, af-group-af";
leaf route-policy-out {
type string;
description "Route policy name to apply to outbound routes";
}
}
grouping ADVERTISE-V4 {
description
"Common node of neighbor-group-af, neighbor-af,
vrf-neighbor-af, af-group-af";
container advertise-v4 {
description "Advertise Translated Routes to the peer";
leaf af-name {
type dt1:Bgp-address-family;
description "Address family";
}
leaf reorg-option {
type Bgp-reorg-opt;
description "Reorigination option";
}
leaf rt-type {
type Bgp-adv-rt;
description "RT type";
}
}
}
grouping ADVERTISE-V6 {
description
"Common node of neighbor-group-af, neighbor-af,
vrf-neighbor-af, af-group-af";
container advertise-v6 {
description "Advertise Translated Routes to the peer";
leaf af-name {
type dt1:Bgp-address-family;
description "Address family";
}
leaf reorg-option {
type Bgp-reorg-opt;
description "Reorigination option";
}
leaf rt-type {
type Bgp-adv-rt;
description "RT type";
}
}
}
grouping DEFAULT-ORIGINATE {
description
"Common node of neighbor-group-af, neighbor-af,
vrf-neighbor-af, af-group-af";
container default-originate {
description "Originate default route to this neighbor";
leaf enable {
type boolean;
default "false";
description
"FALSE to prevent default-originate from, being
inherited from a parent. TRUE otherwise.";
}
leaf route-policy-name {
type string;
description
"Route policy name to specify criteria to
originate default.";
}
}
}
grouping IDLE-WATCH-TIME {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
leaf idle-watch-time {
type uint32 {
range "30..1800";
}
units "second";
description
"Time to wait for deleteing IDLE state Dynamic
peer";
}
}
grouping TIMERS {
description
"Common node of neighbor-group, neighbor,
vrf-neighbor, session-group";
container timers {
description "BGP per neighbor timers.";
leaf keepalive-interval {
type uint32 {
range "0..65535";
}
default "60";
description "Keepalive interval";
}
leaf hold-time {
type uint32 {
range "0..65535";
}
default "180";
description
"Hold time. Specify 0 to disable
keepalives/hold time";
}
leaf min-accept-hold-time {
type uint32 {
range "0..65535";
}
default "3";
description
"Minimum acceptable hold time. Specify 0 to
disable keepalives/hold time";
}
}
}
grouping DISABLE-FAST-EXTERNAL-FALLOVER {
description "Common node of global, vrf-global";
leaf disable-fast-external-fallover {
type empty;
description
"Disable immediate reset session if a link to a
directly connected external peer goes down";
}
}