-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathair-interface-2-0.yang
More file actions
1583 lines (1509 loc) · 52.6 KB
/
air-interface-2-0.yang
File metadata and controls
1583 lines (1509 loc) · 52.6 KB
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 air-interface-2-0 {
yang-version 1.1;
namespace "urn:onf:yang:air-interface-2-0";
prefix air-interface;
import ietf-yang-types {
prefix yang;
}
import core-model-1-4 {
prefix core-model;
}
organization
"openBackhaul.com proposal to Open Networking Foundation (ONF)";
contact
"WG Web : https://github.com/openBackhaul/Overview
WG List: AirInterface@openBackhaul.com
Editor : Thorsten Heinze
Email : Thorsten.Heinze@openBackhaul.com";
description
"Copyright 2024 openBackhaul.com
Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an 'AS IS' BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.";
revision 2024-01-02 {
description
"Model for the Transport SDN Introduction at Telefonica Germany.
Please view https://github.com/openBackhaul/airInterface/issues for changes.";
reference
"https://github.com/openBackhaul/airInterface/tree/tsi: Model definition
https://github.com/openBackhaul/onfCoreIm/tree/tsi: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";
}
revision 2023-10-16 {
description
"Model for the Transport SDN Introduction at Telefonica Germany.
Please view https://github.com/openBackhaul/airInterface/issues for changes.";
reference
"https://github.com/openBackhaul/airInterface/tree/tsi: Model definition
https://github.com/openBackhaul/onfCoreIm/tree/tsi: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";
}
revision 2022-03-28 {
description
"Model for the Transport SDN Pilot at Telefonica Germany.
Please view https://github.com/openBackhaul/airInterface/issues for changes.";
reference
"https://github.com/openBackhaul/airInterface/tree/tsi: Model definition
https://github.com/openBackhaul/onfCoreIm/tree/tsi: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";
}
revision 2020-01-21 {
description
"Model for the Transport SDN Pilot at Telefonica Germany.
Please view https://github.com/openBackhaul/airInterface/issues for changes.";
reference
"https://github.com/openBackhaul/airInterface/tree/tsi: Model definition
https://github.com/openBackhaul/onfCoreIm/tree/tsi: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";
}
revision 2019-11-22 {
description
"Model for the Transport SDN Pilot at Telefonica Germany.
Please view https://github.com/openBackhaul/airInterface/issues for changes.";
reference
"https://github.com/openBackhaul/airInterface/tree/tsi: Model definition
https://github.com/openBackhaul/onfCoreIm/tree/tsi: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";
}
revision 2019-07-11 {
description
"Model for the Transport SDN Pilot at Telefonica Germany.
Please view https://github.com/openBackhaul/airInterface/issues for changes.";
reference
"https://github.com/openBackhaul/airInterface/tree/tsi: Model definition
https://github.com/openBackhaul/onfCoreIm/tree/tsi: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";
}
identity LAYER_PROTOCOL_NAME_TYPE_AIR_LAYER {
base core-model:LAYER_PROTOCOL_NAME_TYPE;
description
"none";
}
/*********************************************
* grouping statements for complex data types
*******************************************/
identity RADIO_SIGNAL_ID_DATATYPE_TYPE {
description
"none";
}
identity RADIO_SIGNAL_ID_DATATYPE_TYPE_INTEGER {
base RADIO_SIGNAL_ID_DATATYPE_TYPE;
description
"none";
}
identity RADIO_SIGNAL_ID_DATATYPE_TYPE_STRING {
base RADIO_SIGNAL_ID_DATATYPE_TYPE;
description
"none";
}
identity RADIO_SIGNAL_ID_DATATYPE_TYPE_NOT_YET_DEFINED {
base RADIO_SIGNAL_ID_DATATYPE_TYPE;
description
"none";
}
identity LOOP_BACK_TYPE {
description
"none";
}
identity LOOP_BACK_TYPE_RF_TO_REMOTE {
base LOOP_BACK_TYPE;
description
"Returning the header information of the remote site back to the remote site on the radio interface between both outdoor units.";
}
identity LOOP_BACK_TYPE_RF_TO_LOCAL {
base LOOP_BACK_TYPE;
description
"Returning the header information of the local site back to the local site on the radio interface between both outdoor units.";
}
identity LOOP_BACK_TYPE_IF_TO_REMOTE {
base LOOP_BACK_TYPE;
description
"Returning the header information of the remote site back to the remote site on the intermediate frequency interface between local indoor unit and outdoor unit.";
}
identity LOOP_BACK_TYPE_IF_TO_LOCAL {
base LOOP_BACK_TYPE;
description
"Returning the header information of the local site back to the local site on the intermediate frequency interface between local indoor unit and outdoor unit.";
}
identity LOOP_BACK_TYPE_NONE {
base LOOP_BACK_TYPE;
description
"none";
}
identity DIRECTION_TYPE {
description
"none";
}
identity DIRECTION_TYPE_TX {
base DIRECTION_TYPE;
description
"none";
}
identity DIRECTION_TYPE_RX {
base DIRECTION_TYPE;
description
"none";
}
identity DIRECTION_TYPE_NONE {
base DIRECTION_TYPE;
description
"none";
}
identity G_826_TYPE {
description
"none";
}
identity G_826_TYPE_ES {
base G_826_TYPE;
description
"Errored Seconds. Threshold cross alarm will relate to TypeDefinitions::AirInterfacePerformanceType::es .";
}
identity G_826_TYPE_SES {
base G_826_TYPE;
description
"Severely Errored Seconds. Threshold cross alarm will relate to TypeDefinitions::AirInterfacePerformanceType::ses .";
}
identity G_826_TYPE_CSES {
base G_826_TYPE;
description
"Consecutive Severely Errored Seconds. Threshold cross alarm will relate to TypeDefinitions::AirInterfacePerformanceType::cses .";
}
identity G_826_TYPE_UAS {
base G_826_TYPE;
description
"Unavailable Seconds. Threshold cross alarm will relate to TypeDefinitions::AirInterfacePerformanceType::unavailability.";
}
identity G_826_TYPE_NOT_SPECIFIED {
base G_826_TYPE;
description
"none";
}
identity XLEVEL_THRESHOLD_SECOND_KIND_TYPE {
description
"none";
}
identity XLEVEL_THRESHOLD_SECOND_KIND_TYPE_RLTS {
base XLEVEL_THRESHOLD_SECOND_KIND_TYPE;
description
"none";
}
identity XLEVEL_THRESHOLD_SECOND_KIND_TYPE_TLTS {
base XLEVEL_THRESHOLD_SECOND_KIND_TYPE;
description
"none";
}
identity XLEVEL_THRESHOLD_SECOND_KIND_TYPE_NOT_YET_DEFINED {
base XLEVEL_THRESHOLD_SECOND_KIND_TYPE;
description
"none";
}
identity GRANULARITY_PERIOD_TYPE {
description
"none";
}
identity GRANULARITY_PERIOD_TYPE_UNKNOWN {
base GRANULARITY_PERIOD_TYPE;
description
"none";
}
identity GRANULARITY_PERIOD_TYPE_PERIOD-15-MIN {
base GRANULARITY_PERIOD_TYPE;
description
"none";
}
identity GRANULARITY_PERIOD_TYPE_PERIOD-24-HOURS {
base GRANULARITY_PERIOD_TYPE;
description
"none";
}
identity GRANULARITY_PERIOD_TYPE_NOT_YET_DEFINED {
base GRANULARITY_PERIOD_TYPE;
description
"none";
}
identity INTERFACE_STATUS_TYPE {
description
"none";
}
identity INTERFACE_STATUS_TYPE_UP {
base INTERFACE_STATUS_TYPE;
description
"Ready to pass packets. It is expected that the LogicalTerminationPoint::operationalState attribute is expressing this logical layer being available for use (means: ENABLED), while this value occurs.";
}
identity INTERFACE_STATUS_TYPE_DOWN {
base INTERFACE_STATUS_TYPE;
description
"The interface does not pass any packets. It is expected that the LogicalTerminationPoint::operationalState attribute is expressing this logical layer being NOT available for use (means: DISABLED), while this value occurs.";
}
identity INTERFACE_STATUS_TYPE_TESTING {
base INTERFACE_STATUS_TYPE;
description
"In some test mode. No operational packets can be passed. It is expected that the LogicalTerminationPoint::operationalState attribute is expressing this logical layer being NOT available for use (means: DISABLED), while this value occurs.";
}
identity INTERFACE_STATUS_TYPE_UNKNOWN {
base INTERFACE_STATUS_TYPE;
description
"Status cannot be determined for some reason. While this value occurs, the LogicalTerminationPoint::operationalState attribute, which is expressing the availability of the logical layer for being used, might have either ENABLED or DISABLED as value.";
}
identity INTERFACE_STATUS_TYPE_DORMANT {
base INTERFACE_STATUS_TYPE;
description
"Waiting for some external event. It is expected that the LogicalTerminationPoint::operationalState attribute is expressing this logical layer being available for use (means: ENABLED), while this value occurs.";
}
identity INTERFACE_STATUS_TYPE_NOT_PRESENT {
base INTERFACE_STATUS_TYPE;
description
"Some component (typically hardware) is missing. It is expected that the LogicalTerminationPoint::operationalState attribute is expressing this logical layer being NOT available for use (means: DISABLED), while this value occurs.";
}
identity INTERFACE_STATUS_TYPE_NOT_YET_DEFINED {
base INTERFACE_STATUS_TYPE;
description
"While this value occurs, the LogicalTerminationPoint::operationalState attribute, which is expressing the availability of the logical layer for being used, might have either ENABLED or DISABLED as value.";
}
/****************************************
* typedef statements
**************************************/
typedef radio-signal-id-datatype-type {
type identityref {
base RADIO_SIGNAL_ID_DATATYPE_TYPE;
}
description
"none";
}
typedef loop-back-type {
type identityref {
base LOOP_BACK_TYPE;
}
description
"none";
}
typedef direction-type {
type identityref {
base DIRECTION_TYPE;
}
description
"none";
}
typedef g-826-type {
type identityref {
base G_826_TYPE;
}
description
"none";
}
typedef xlevel-threshold-second-kind-type {
type identityref {
base XLEVEL_THRESHOLD_SECOND_KIND_TYPE;
}
description
"According to ETSI EN 301 129 V1.1.2 (1999-05) chapter B.1.1";
}
/****************************************
* package super-types
**************************************/
typedef granularity-period-type {
type identityref {
base GRANULARITY_PERIOD_TYPE;
}
description
"The enumeration with the options for granularity period of the performance data.";
}
typedef interface-status-type {
type identityref {
base INTERFACE_STATUS_TYPE;
}
description
"Current Interface Status";
}
/****************************************
* grouping statements for object classes
**************************************/
/****************************************
* package super-classes
**************************************/
grouping current-performance {
description
"none";
leaf timestamp {
type yang:date-and-time;
default "2010-11-20T14:00:00+01:00";
config false;
description
"The timestamp associated with when the current data was collected.";
}
leaf suspect-interval-flag {
type boolean;
default "false";
config false;
description
"This attribute is used to indicate that the performance data for the current period may not be reliable. Some reasons for this to occur are:
- Suspect data were detected by the actual resource doing data collection.
- Transition of the administrativeState attribute to/from the 'lock' state.
- Transition of the operationalState to/from the 'disabled' state.
- Scheduler setting that inhibits the collection function.
- The performance counters were reset during the interval.
- The currentData (or subclass) object instance was created during the monitoring period.";
}
leaf elapsed-time {
type int64;
units "s";
default "-1";
config false;
description
"Number of seconds that elapsed since the last reset of the counter.";
}
leaf scanner-id {
type string;
default "Scanner ID not defined.";
config false;
description
"none";
}
leaf granularity-period {
type granularity-period-type;
config false;
mandatory true;
description
"Time period between reset of the underlying counter.";
}
}
grouping historical-performance {
description
"none";
leaf suspect-interval-flag {
type boolean;
default "false";
config false;
description
"This attribute indicates that the data collected during the interval is suspect.";
}
leaf history-data-id {
type string;
default "History Data ID not defined.";
config false;
description
"none";
}
leaf granularity-period {
type granularity-period-type;
config false;
mandatory true;
description
"Time period between reset of the underlying counter.";
}
leaf period-end-time {
type yang:date-and-time;
config false;
mandatory true;
description
"Time when the counter values have been recorded and the counter reset.";
}
}
grouping air-interface-lp-spec {
description
"none";
container air-interface-pac {
description
"none";
uses air-interface-pac;
}
}
grouping air-interface-pac {
description
"none";
container air-interface-capability {
config false;
description
"none";
uses air-interface-capability;
}
container air-interface-configuration {
description
"none";
uses air-interface-configuration;
}
container air-interface-status {
config false;
description
"none";
uses air-interface-status;
}
container air-interface-current-performance {
config false;
description
"none";
uses air-interface-current-performance;
}
container air-interface-historical-performances {
config false;
description
"none";
uses air-interface-historical-performances;
}
}
grouping air-interface-capability {
description
"Describes the 'analog' capabilities of modem and transmitter of the microwave device. Value ranges of attributes are not independently (e.g. min. and max. transmit power depends on modulation). Legal combinations of values are expressed in transmissionModeTypes.";
leaf type-of-equipment {
type string;
default "Type of equipment not yet defined.";
config false;
description
"This parameter indicates the equipment type. Instead of uploading the complete set of capabilities, capabilities of the same equipment type could be reused. Should be unique for a combination of modem, radio and their respective firmware.";
}
leaf tx-frequency-min {
type int32;
units "kHz";
default "-1";
config false;
description
"Value of the minimum transmit frequency tunable at the air interface.";
}
leaf tx-frequency-max {
type int32;
units "kHz";
default "-1";
config false;
description
"Value of the maximum transmit frequency tunable at the air interface.";
}
leaf rx-frequency-min {
type int32;
units "kHz";
default "-1";
config false;
description
"Value of the minimum receive frequency tunable at the air interface.";
}
leaf rx-frequency-max {
type int32;
units "kHz";
default "-1";
config false;
description
"Value of the maximum receive frequency tunable at the air interface.";
}
leaf duplex-distance-is-freely-configurable {
type boolean;
default "false";
config false;
description
"true = Transmitted and received frequency can be freely chosen between the given minimum and maximum values.";
}
leaf-list duplex-distance-list {
type int32;
units "kHz";
default "-1";
config false;
description
"Only relevant if (duplexDistanceIsFreelyConfigurable==false). Lists all supported distances between transmitted and received frequency.";
}
list transmission-mode-list {
key "transmission-mode-name";
config false;
min-elements 1;
description
"List of supported Transmission Modes.";
uses transmission-mode;
}
leaf auto-freq-select-is-avail {
type boolean;
default "false";
config false;
description
"In case the microwave radio is capable of automatically selecting the transmit frequency in unlicensed bands, this field shall contain a 'true'.";
}
leaf receiver-on-off-is-avail {
type boolean;
default "false";
config false;
description
"In case switching on/off the receiver is available at the device, this field shall contain a 'true'.";
}
leaf adaptive-modulation-is-avail {
type boolean;
default "false";
config false;
description
"In case the device is capable of adaptive modulation, this field shall contain a 'true'.";
}
leaf atpc-is-avail {
type boolean;
default "false";
config false;
description
"In case the microwave radio is capable of ATPC, this field shall contain a 'true'.";
}
leaf atpc-range {
type int8;
units "dB";
default "0";
config false;
description
"Extent of the ATPC range. This value represents a device specific maximum value. The actual range of the ATPC at a specific link might be limited by the difference between configured transmit power (AirInterface::AirInterfaceConfiguration::txPower) and minimum transmit power of the device (TypeDefinitions::TransmissionModeType::txPowerMin).";
}
leaf supported-radio-signal-id-datatype {
type radio-signal-id-datatype-type;
default "RADIO_SIGNAL_ID_DATATYPE_TYPE_NOT_YET_DEFINED";
config false;
description
"This attribute is for expressing the datatype, which is supported as a Radio Signal ID by the device.";
}
leaf supported-radio-signal-id-length {
type int16;
default "-1";
config false;
description
"If (supportedRadioSignalIdDatatype==INTEGER): Maximum value of the Radio Signal ID supported by the device; If (supportedRadioSignalIdDatatype==STRING): Maximum number of letters supported by the device.";
}
leaf expected-equals-transmitted-radio-signal-id {
type boolean;
default "false";
config false;
description
"true = It is not possible to configure an expectedRadioSignalID different from the transmittedRadioSignalID.";
}
leaf encryption-is-avail {
type boolean;
default "false";
config false;
description
"Shall be marked 'true', if payload encryption is available.";
}
leaf-list supported-loop-back-kind-list {
type loop-back-type;
config false;
min-elements 1;
max-elements 4;
description
"List of supported kinds of looping back of header information to the remote site.";
}
leaf maintenance-timer-range {
type string;
default "Range of the maintenance timer not yet defined.";
config false;
description
"Available time periods for maintenance configurations (e.g. the loop back of microwave header information) to be described. Concrete values shall be separated by commas (e.g. '10, 60, 360'). Ranges shall be expressed as two values separated by a minus (e.g. '10-360').";
}
leaf acm-threshold-cross-alarms-is-avail {
type boolean;
default "false";
config false;
description
"true = Threshold cross alarms on performance of adaptive code modulation are available.";
}
leaf clearing-threshold-cross-alarms-is-avail {
type boolean;
default "false";
config false;
description
"true = Clearing threshold cross alarms by calling clearThresholdCrossAlarms() operation is available at the device.";
}
leaf performance-monitoring-is-avail {
type boolean;
default "false";
config false;
description
"true = Collection and aggregation of performance values is available.";
}
leaf direction-of-acm-performance-values {
type direction-type;
default "DIRECTION_TYPE_NONE";
config false;
description
"Expresses, whether the ACM performance values (timeXStatesList) are measured at the transmitter (TX) or at the receiver (RX).";
}
}
grouping air-interface-configuration {
description
"Configuration of the radio link.";
leaf air-interface-name {
type string;
default "Air interface ID not yet defined.";
description
"Operator specific microwave link ID (often used for coding area, type of element and sequential number).";
}
leaf remote-air-interface-name {
type string;
default "Air interface ID at the remote site not yet defined.";
description
"Name of the air interface, which belongs to the same link, at the remote site.";
}
container transmitted-radio-signal-id {
description
"Transmitted radio signal ID for synchronizing the remote receiver.";
uses radio-signal-id-type;
}
container expected-radio-signal-id {
description
"Only relevant, if expectedEqualsTransmittedRadioSignalID==false. Received radio signal ID for identifying the correct transmitter to synchronize on.";
uses radio-signal-id-type;
}
leaf tx-frequency {
type int32;
units "kHz";
default "-1";
description
"Center frequency of the transmit channel. The values to be configured have to exactly match the values listed in the international agreement referenced in channelPlanID. In case of automated selection of the transmit frequency this field shall describe the lowest center frequency selectable.";
}
leaf rx-frequency {
type int32;
units "kHz";
default "-1";
description
"Only configurable, if (duplexDistanceIsFreelyConfigurable==true). Allows configuring of the center frequency of the receive channel.";
}
leaf duplex-distance {
type int32;
units "kHz";
default "-1";
description
"Only configurable, if (duplexDistanceIsFreelyConfigurable==false) AND (duplexDistanceList contains more than one value). Allows configuring one of the values represented in AirInterfaceCapability::duplexDistanceList.";
}
leaf transmission-mode-min {
type leafref {
path "/core-model:control-construct/core-model:logical-termination-point[core-model:uuid = current()/../../../../core-model:uuid]/core-model:layer-protocol[core-model:local-id = current()/../../../core-model:local-id]/air-interface:air-interface-pac/air-interface:air-interface-capability/air-interface:transmission-mode-list/air-interface:transmission-mode-name";
require-instance false;
}
mandatory true;
description
"Minimum transmission mode to be configured (in case adaptive modulation is not used, this value represents also the fixed transmission mode).";
}
leaf transmission-mode-max {
type leafref {
path "/core-model:control-construct/core-model:logical-termination-point[core-model:uuid = current()/../../../../core-model:uuid]/core-model:layer-protocol[core-model:local-id = current()/../../../core-model:local-id]/air-interface:air-interface-pac/air-interface:air-interface-capability/air-interface:transmission-mode-list/air-interface:transmission-mode-name";
require-instance false;
}
description
"Maximum transmission mode to be configured.";
}
leaf power-is-on {
type boolean;
default "true";
description
"true = The power to all physical components required for this AirInterface instance is turned on.";
}
leaf transmitter-is-on {
type boolean;
default "false";
description
"Activation of the transmitter inside the radio shall be expressed as a 'true'.";
}
leaf receiver-is-on {
type boolean;
default "true";
description
"Maintenance Feature. Activation of the receiver inside the radio shall be expressed as a 'true'. Attribute shall also be used for RX main and RX diversity squelches in case of diversity configurations.";
}
leaf tx-power {
type int8;
units "dBm";
default "99";
description
"Transmit power to be configured on the microwave link. Signed Byte is required. The actually operated transmit power might be lower depending on adaptive modulation and ATPC.";
}
leaf adaptive-modulation-is-on {
type boolean;
default "false";
description
"Adaptive Modulation. Activation of adaptive modulation shall be expressed as a 'true'.";
}
leaf xpic-is-on {
type boolean;
default "false";
description
"Activation of Cross Polarization Interference Cancelation shall be expressed as a 'true'. In case XPIC is not available for the current combination of channel bandwidth and modulation or the hardware in general, this parameter shall always be set to 'false'.";
}
leaf mimo-is-on {
type boolean;
default "false";
description
"Activation of Multiple Input Multiple Output (MIMO) shall be expressed as a 'true'.";
}
leaf alic-is-on {
type boolean;
default "false";
description
"Activation of Adjacent Link Interference Cancelation (ALIC) shall be expressed as a 'true'.";
}
leaf atpc-is-on {
type boolean;
default "false";
description
"ATPC. Activation of Automated Transmit Power Control shall be expressed as a 'true'.";
}
leaf atpc-thresh-upper {
type int16;
units "dBm";
default "99";
description
"If the receive level at the local/remote site is higher than the upper threshold value, the transmitter at the remote/local site is notified to decrease transmit power. In case the device does not know upper and lower threshold values, but only a single reference value, the atpcThreshUpper shall not be available for configuration and constantly represent the default value.";
}
leaf atpc-thresh-lower {
type int16;
units "dBm";
default "99";
description
"If the receive level at the local/remote site is lower than the lower threshold value, the transmitter at the remote/local site is notified to increase transmit power. In case the device does not know upper and lower threshold values, but only a single reference value, the atpcThreshLower shall represent this reference value.";
}
leaf atpc-tx-power-min {
type int8;
units "dBm";
default "-99";
description
"Transmit power, which is not to be undercut, while operating ATPC.";
}
leaf auto-freq-select-is-on {
type boolean;
default "false";
description
"Activation of automatically selecting the transmit frequency in unlicensed bands shall be expressed as a 'true'.";
}
leaf auto-freq-select-range {
type int8;
units "channels";
default "-1";
description
"Number of transmit channels (starting at the center frequency defined in txFrequency and with channel bandwidth according to txChannelBandwidth) that define the range within the transmit frequency can automatically been chosen. ";
}
leaf modulation-is-on {
type boolean;
default "true";
description
"Maintenance Feature. De-activation of the modulation of the carrier signal for fault management shall be expressed as a 'false'.";
}
leaf encryption-is-on {
type boolean;
default "false";
description
"Activates encryption of the payload.";
}
leaf cryptographic-key {
type string;
default "Cryptographic key not yet defined.";
description
"Key for transforming plaintext into ciphertext data.";
}
leaf loop-back-kind-on {
type loop-back-type;
default "LOOP_BACK_TYPE_NONE";
description
"Maintenance Feature. The currently configured type of looping back of the air interface header shall be expressed here. The received header is returned to the remote site.";
}
leaf maintenance-timer {
type int32;
units "s";
default "-1";
description
"Time of existence of any maintenance configuration (e.g. the loop back of microwave header information). 0 = maintenance timer is switched off. Valid values are defined in AirInterface::AirInterfaceCapability::maintenanceTimerRange. ";
}
list g-826-threshold-cross-alarm-list {
key "g-826-value-kind granularity-period";
description
"List of G826 related threshold cross alarms to be configured.";
uses g-826-threshold-cross-alarm-type;
}
list xlts-threshold-cross-alarm-list {
key "level-threshold-second-kind granularity-period xlts-threshold-cross-alarm-definition-number";
description
"List of RLTS or TLTS (ETSI EN 301 129) related threshold cross alarms to be configured.";
uses xlts-threshold-cross-alarm-type;
}
list acm-threshold-cross-alarm-list {
key "acm-threshold-cross-alarm-definition-number granularity-period";
description
"List threshold cross alarms, which relate to the time period of operation of a specific transmission mode.";
uses acm-threshold-cross-alarm-type;
}
leaf performance-monitoring-is-on {
type boolean;
default "false";
description
"Enables measurement, collection, storage and access to performance data.";
}
}
grouping air-interface-status {
description
"Measurements of current values on the air interface and operational status of the device.";
leaf interface-status {
type interface-status-type;
default "INTERFACE_STATUS_TYPE_NOT_YET_DEFINED";
config false;
description
"Operational status of the interface.";
}
leaf tx-frequency-cur {
type int32;
units "kHz";
default "-1";
config false;
description
"Center frequency of the currently operated transmit channel.";
}
leaf rx-frequency-cur {
type int32;
units "kHz";
default "-1";
config false;
description
"Center frequency of the currently operated receive channel.";
}
leaf transmission-mode-cur {
type leafref {
path "/core-model:control-construct/core-model:logical-termination-point/core-model:layer-protocol/air-interface:air-interface-pac/air-interface:air-interface-capability/air-interface:transmission-mode-list/air-interface:transmission-mode-name";
require-instance false;
}
config false;
description
"Currently operated transmission mode according to definitions in Capabilities.";
}
container received-radio-signal-id {
config false;
description
"Radio signal ID of the signal, which the receiver is currently synchronized on.";
uses radio-signal-id-type;
}
leaf link-is-up {
type boolean;
default "false";
config false;
description
"If connection is established to the remote site with the same linkID, this shall be expressed as a 'true'.";
}
leaf xpic-is-up {
type boolean;
default "false";
config false;
description
"If XPIC is currently actually working (not just configured), this shall be expressed as a 'true'.";
}
leaf mimo-is-up {
type boolean;
default "false";
config false;
description
"If MIMO is currently actually working (not just configured), this shall be expressed as a 'true'.";
}
leaf alic-is-up {
type boolean;
default "false";
config false;
description
"If Adjacent Link Interference Cancelation (ALIC) is currently actually working (not just configured), this shall be expressed as a 'true'.";
}
leaf atpc-is-up {
type boolean;
default "false";
config false;
description
"If ATPC is currently actually working (not just configured), this shall be expressed as a 'true'.";
}
leaf auto-freq-select-is-up {
type boolean;
default "false";
config false;
description
"If automated frequency selection is currently actually working (not just configured), this shall be expressed as a 'true'.";
}
leaf local-end-point-id {
type string;
default "not-supported";
config false;
description
"The value of the localEndPointId is a vendor specific identifier of the air interface, used by the node to discover a microwave radio link.";
}
leaf remote-end-point-id {
type string;
default "not-supported";
config false;
description
"The value of the remoteEndPointId is a vendor specific identifier of the airinterface at the remote side, used to by the node to discover a microwave radio link.";
}
leaf loop-back-kind-up {
type loop-back-type;
default "LOOP_BACK_TYPE_NONE";
config false;
description
"The currently active (not just configured) type of looping back of the air interface header shall be expressed here. The received header is returned to the remote site.";
}
leaf performance-monitoring-is-up {
type boolean;
default "false";
config false;
description
"true = Performance values are currently collected and aggregated.";
}
leaf rx-level-cur {
type int8;
units "dBm";
default "99";
config false;