Newer
Older
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
(i.e., OAM messages are generated) and reports are gathered at the end of the measurement intervals.
Note that the value 0 means a degenerated measurement interval with a single OAM message and the report is sent as immediately as possible.";
}
leaf repetition-period {
type repetition-period;
description "This attribute contains the time between the start of two measurement intervals. This IS applicable for the repetitive instance type and MAY be applicable for the repetitive series type.
Note that a value of 0 means not applicable (NA), which is for the cases of single instance, single series, or repetitive series without extra gap in between the measurement intervals (i.e., also as known as continuous series).";
}
leaf time-of-the-day-alignment {
type boolean;
default "true";
description "MEF 35.1:
[D7] A SOAM PM Implementation SHOULD allow for no alignment to the time-of-day clock.";
}
leaf offset-from-time-of-the-day {
type uint64;
description "MEF 35.1:
[D8] A SOAM PM Implementation SHOULD support a configurable (in minutes) offset from ToD time for alignment of the start of Measurement Intervals other than the first Measurement Interval.";
}
leaf flr-availability-delta-time {
type uint64;
default "1";
description "Time length over which each Availability Frame Loss Ratio value is calculated.
MEF 35.1:
[R78]/[CR58] [O8] A SOAM PM Implementation MUST support a configurable parameter for the length of time over which each Availability flr value is calculated, with a range of 1s – 300s. This parameter is equivalent to delta-t as specified by MEF 10.3.
[R79]/[CR59] [O8] The length of time over which each Availability flr value is calculated (delta-t) MUST be an integer multiple of the interval between each SLM/1SL frame transmission.
[D31]/[CD16] [O8] The default length of time over which each Availability flr value is calculated SHOULD be 1s.";
}
leaf flr-availability-threshold {
type decimal64 {
fraction-digits 7;
}
default "0.1";
description "Frame loss ratio threshold to be used in evaluating the Available/Unavailable state of each time interval (as specified by Availability Delta Time).
MEF 35.1:
[R81]/[CR61] A SOAM PM Implementation MUST support a configurable Availability frame loss ratio threshold to be used in evaluating the Available/Unavailable state of each delta-t interval per MEF 10.3
[R82]/[CR62] The Availability frame loss ratio threshold range of 0.00 through 1.00 MUST be supported in increments of 0.01.
[D33]/[CD18] [O8] The default Availability frame loss ratio threshold SHOULD be 0.1.";
}
leaf flr-availability-samples {
type uint64;
default "10";
description "Number of consecutive Availability Frame Loss Ratio measurements to be used to determine Available/Unavailable state transitions.
MEF 35.1:
[R80]/[CR60] [O8] The number range of 1 through 10 MUST be supported for the configurable number of consecutive Availability flr measurements to be used to determine Available/Unavailable state transitions.
This parameter is equivalent to the Availability parameter of n as specified by MEF 10.3.
[D32]/[CD17] [O8] The default number of n for Availability SHOULD be 10.";
}
description "Time length over which each Availability Frame Loss Ratio value is calculated. This parameter allows to generalize SES and UAS.
MEF 35.1:
[R78]/[CR58] [O8] A SOAM PM Implementation MUST support a configurable parameter for the length of time over which each Availability flr value is calculated, with a range of 1s – 300s. This parameter is equivalent to delta-t as specified by MEF 10.3.
[R79]/[CR59] [O8] The length of time over which each Availability flr value is calculated (delta-t) MUST be an integer multiple of the interval between each SLM/1SL frame transmission.
[D31]/[CD16] [O8] The default length of time over which each Availability flr value is calculated SHOULD be 1s.";
}
grouping eth-pro-active-1-dm-source-performance-data {
description "This object class represents the PM current data collected in a pro-active delay measurement job (using 1DM), on the source or controller MEP.";
}
grouping eth-pro-active-1-lm-source-performance-data {
description "This object class represents the PM current data collected in a pro-active loss measurement job (using 1SL), on the source or controller MEP.";
}
grouping eth-on-demand-1-lm-source-performance-data {
description "none";
}
grouping eth-on-demand-1-dm-source-performance-data {
description "none";
}
grouping eth-connectivity-service-end-point-spec {
container ety-termination-common-pac {
uses ety-termination-common-pac;
description "none";
}
container eth-termination-common-pac {
uses eth-termination-common-pac;
description "none";
}
container eth-ctp-common-pac {
uses eth-ctp-common-pac;
description "none";
}
description "none";
}
grouping ety-termination-common-pac {
leaf is-fts-enabled {
type boolean;
description "This attribute indicates whether Forced Transmitter Shutdown (FTS) is enabled or not. It models the ETYn_TT_So_MI_FTSEnable information.";
}
leaf is-tx-pause-enabled {
type boolean;
description "This attribute identifies whether the Transmit Pause process is enabled or not. It models the MI_TxPauseEnable defined in G.8021.";
}
description "none";
}
grouping eth-termination-common-pac {
container priority-regenerate {
uses priority-mapping;
description "This attribute models the ETHx/ETH-m _A_Sk_MI_P_Regenerate information defined in G.8021.";
}
leaf priority-code-point-config {
type pcp-coding;
description "This attribute models the ETHx/ETH-m _A_Sk_MI_PCP_Config information defined in G.8021.";
}
leaf ether-type {
type vlan-type;
description "This attribute models the ETHx/ETH-m _A_Sk_MI_Etype information defined in G.8021.";
}
leaf frametype-config {
type frame-type;
description "This attribute models the ETHx/ETH-m_A_Sk_MI_Frametype_Config information defined in G.8021.";
}
leaf-list filter-config-1 {
type mac-address;
description "This attribute models the ETHx/ETH-m_A_Sk_MI_Filter_Config information defined in G.8021.
It indicates the configured filter action for each of the 33 group MAC addresses for control frames.
The 33 MAC addresses are:
01-80-C2-00-00-10,
01-80-C2-00-00-00 to 01-80-C2-00-00-0F, and
01-80-C2-00-00-20 to 01-80-C2-00-00-2F.
The filter action is Pass or Block.
If the destination address of the incoming ETH_CI_D matches one of the above addresses, the filter process shall perform the corresponding configured filter action.
If none of the above addresses match, the ETH_CI_D is passed.
";
}
leaf port-vid {
type vid;
default "1";
description "This attribute models the ETHx/ETH-m _A_Sk_MI_PVID information defined in G.8021.";
}
description "none";
}
grouping eth-ctp-common-pac {
leaf-list auxiliary-function-position-sequence {
type uint64;
description "This attribute indicates the positions (i.e., the relative order) of all the MEP, MIP, and TCS objects which are associated with the CTP.";
}
leaf collector-max-delay {
type uint64;
description "See 802.1AX:
The value of this attribute defines the maximum delay, in tens of microseconds, that may be imposed by the Frame Collector between receiving a frame from an Aggregator Parser, and either delivering the frame to its MAC Client or discarding the frame (see IEEE 802.1AX clause 5.2.3.1.1).
range of type : 16-bit";
}
leaf csf-config {
type csf-config;
description "This attribute models the combination of all CSF related MI signals (MI_CSF_Enable, MI_CSFrdifdi_Enable, MI_CSFdci_Enable) as defined in G.8021.
range of type : true, false";
}
leaf csf-rdi-fdi-enable {
type boolean;
description "This attribute models the MI_CSFrdifdiEnable information defined in G.8021.";
}
leaf csf-report {
type boolean;
description "This attribute models the MI_CSF_Reported information defined in G.8021.
range of type : true, false";
}
container filter-config {
uses control-frame-filter;
description "This attribute models the FilterConfig MI defined in section 8.3/G.8021. It indicates the configured filter action for each of the 33 group MAC addresses for control frames. The 33 MAC addresses are:
- All bridges address: 01-80-C2-00-00-10,
- Reserved addresses: 01-80-C2-00-00-00 to 01-80-C2-00-00-0F,
- GARP Application addresses: 01-80-C2-00-00-20 to 01-80-C2-00-00-2F.
The filter action is Pass or Block.
If the destination address of the incoming ETH_CI_D matches one of the above addresses, the filter process shall perform the corresponding configured filter action.
If none of the above addresses match, the ETH_CI_D is passed.";
}
leaf-list filter-config-snk {
type mac-address;
description "This attribute models the FilteConfig MI defined in 8.3/G.8021. It indicates the configured filter action for each of the 33 group MAC addresses for control frames. The 33 MAC addresses are:
01-80-C2-00-00-10,
01-80-C2-00-00-00 to 01-80-C2-00-00-0F, and
01-80-C2-00-00-20 to 01-80-C2-00-00-2F.
The filter action is Pass or Block.
If the destination address of the incoming ETH_CI_D matches one of the above addresses, the filter process shall perform the corresponding configured filter action.
If none of the above addresses match, the ETH_CI_D is passed.";
}
leaf is-ssf-reported {
type boolean;
description "This attribute provisions whether the SSF defect should be reported as fault cause or not.
It models the ETH-LAG_FT_Sk_MI_SSF_Reported defined in G.8021.";
}
leaf mac-length {
type uint64;
default "2000";
description "This attribute models the MAC_Lenght MI defined in 8.6/G.8021 for the MAC Length Check process. It indicates the allowed maximum frame length in bytes.
range of type : 1518, 1522, 2000";
}
leaf pll-thr {
type uint64;
description "This attribute provisions the threshold for the number of active ports. If the number of active ports is more than zero but less than the provisioned threshold, a cPLL (Partial Link Loss) is raised. See section 9.7.1.2 of G.8021.
range of type : 0..number of ports";
}
leaf vlan-config {
type uint64;
description "This attribute models the ETHx/ETH-m_A_So_MI_Vlan_Config information defined in G.8021.
range of type : -1, 0, 1..4094";
}
container traffic-shaping-pac {
uses traffic-shaping-pac;
description "none";
}
container traffic-conditioning-pac {
uses traffic-conditioning-pac;
description "none";
}
description "none";
}
grouping eth-service-inteface-point-spec {
uses ety-pac;
description "none";
}
grouping ety-pac {
leaf phy-type {
type ety-phy-type;
config false;
description "This attribute identifies the PHY type of the ETY trail termination. See IEEE 802.3 clause 30.3.2.1.2.";
}
leaf-list phy-type-list {
type ety-phy-type;
config false;
description "This attribute identifies the possible PHY types that could be supported at the ETY trail termination. See IEEE 802.3 clause 30.3.2.1.3.";
}
description "none";
}
grouping eth-connectivity-service {
description "none";
}
/**************************
* package type-definitions
**************************/
identity ETH_OAM_JOB_TYPE {
base tapi-oam:OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_1DM {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_1SLM {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_LM_CCM {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_LM_LMM {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_SLM {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_DM {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_LTC {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_LBK {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity ETH_OAM_JOB_TYPE_ETH_TEST {
base ETH_OAM_JOB_TYPE;
description "none";
}
identity MAINTENANCE_DOMAIN_NAME_TYPE {
description "none";
}
identity MAINTENANCE_DOMAIN_NAME_TYPE_NONE {
base MAINTENANCE_DOMAIN_NAME_TYPE;
description "IEEE P802.1Qcx/D0.3:
No format specified, usually because there is not a Maintenance Domain Name. In this case, a zero length OCTET string for the Domain name field is acceptable.
MEF 38:
No format specified.";
}
identity MAINTENANCE_DOMAIN_NAME_TYPE_DOMAIN-NAME {
base MAINTENANCE_DOMAIN_NAME_TYPE;
description "IEEE P802.1Qcx/D0.3:
MEF 38:
Domain Name like string, globally unique text string derived from a DNS name.";
}
identity MAINTENANCE_DOMAIN_NAME_TYPE_MAC-ADDR-AND-UINT_ {
base MAINTENANCE_DOMAIN_NAME_TYPE;
description "IEEE P802.1Qcx/D0.3:
MEF 38:
MAC address + 2-octet (unsigned) integer.";
}
identity MAINTENANCE_DOMAIN_NAME_TYPE_STRING {
base MAINTENANCE_DOMAIN_NAME_TYPE;
description "IEEE P802.1Qcx/D0.3:
MEF 38:
RFC2579 DisplayString, except that the character codes 0-31 (decimal) are not used.
";
}
identity MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES {
description "none";
}
identity MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES_SEND-ID-NONE {
base MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES;
description "The Sender ID TLV is not to be sent.";
}
identity MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES_SEND-ID-CHASSIS {
base MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES;
description "The Chassis ID Length, Chassis ID Subtype, and Chassis ID fields of te Sender ID TLV are to be sent.";
}
identity MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES_SEND-ID-MANAGE {
base MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES;
description "The Management Address Length and Management Address of the Sender ID TLV are to be sent.";
}
identity MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES_SEND-ID-CHASSIS-MANAGE {
base MAINTENANCE_DOMAIN_ID_PERMISSION_TYPES;
description "The Chassis ID Length, Chassis ID Subtype, Chassis ID, Management Address Length and Management Address fields are all to be sent.";
}
identity MAINTENANCE_ASSOCIATION_ID_PERMISSION_TYPES {
description "none";
}
identity MAINTENANCE_ASSOCIATION_ID_PERMISSION_TYPES_SEND-ID-DEFER {
base MAINTENANCE_ASSOCIATION_ID_PERMISSION_TYPES;
description "IEEE P802.1Qcx/D0.3:
MEF 38:
The content of the Sender ID TLV are determined by the corresponding Maintenance Domain variable.";
}
identity LINK_TRACE_RELAY_ACTION_FIELD_VALUE {
description "none";
}
identity LINK_TRACE_RELAY_ACTION_FIELD_VALUE_RELAY-HIT {
base LINK_TRACE_RELAY_ACTION_FIELD_VALUE;
description "The LTM reached a Maintenance Point whose MAC address matches the target address.";
}
identity LINK_TRACE_RELAY_ACTION_FIELD_VALUE_RELAY-FDB {
base LINK_TRACE_RELAY_ACTION_FIELD_VALUE;
description "The Egress Port was determined by consulting the Filtering Database.";
}
identity LINK_TRACE_RELAY_ACTION_FIELD_VALUE_RELAY-MPDB {
base LINK_TRACE_RELAY_ACTION_FIELD_VALUE;
description "The Egress Port was determined by consulting the MIP CCM Database.";
}
identity LINK_TRACE_INGRESS_ACTION_FIELD_VALUE {
description "none";
}
identity LINK_TRACE_INGRESS_ACTION_FIELD_VALUE_INGRESS-NO-TLV {
base LINK_TRACE_INGRESS_ACTION_FIELD_VALUE;
description "Indicates that no Reply Ingress TLV was returned in the LTM.";
}
identity LINK_TRACE_INGRESS_ACTION_FIELD_VALUE_INGRESS-OK {
base LINK_TRACE_INGRESS_ACTION_FIELD_VALUE;
description "The target data frame would be passed through to the MAC Relay Entity.";
}
identity LINK_TRACE_INGRESS_ACTION_FIELD_VALUE_INGRESS-DOWN {
base LINK_TRACE_INGRESS_ACTION_FIELD_VALUE;
description "The Bridge Ports MAC_Operational parameter is false.";
}
identity LINK_TRACE_INGRESS_ACTION_FIELD_VALUE_INGRESS-BLOCKED {
base LINK_TRACE_INGRESS_ACTION_FIELD_VALUE;
description "The target data frame would not be forwarded if received on this Port due to active topology enforcement.";
}
identity LINK_TRACE_INGRESS_ACTION_FIELD_VALUE_INGRESS-VID {
base LINK_TRACE_INGRESS_ACTION_FIELD_VALUE;
description "The ingress port is not in the member set of the LTMs VID, and ingress filtering is enabled, so the target data frame would be filtered by ingress filtering.";
}
identity LINK_TRACE_EGRESS_ACTION_FIELD_VALUE {
description "none";
}
identity LINK_TRACE_EGRESS_ACTION_FIELD_VALUE_EGRESS-NO-TLV {
base LINK_TRACE_EGRESS_ACTION_FIELD_VALUE;
description "Indicates that no Reply Egress TLV was returned in the LTM.";
}
identity LINK_TRACE_EGRESS_ACTION_FIELD_VALUE_EGRESS-OK {
base LINK_TRACE_EGRESS_ACTION_FIELD_VALUE;
description "The targeted data frame would be forwarded.";
}
identity LINK_TRACE_EGRESS_ACTION_FIELD_VALUE_EGRESS-DOWN {
base LINK_TRACE_EGRESS_ACTION_FIELD_VALUE;
description "The Egress Port can be identified, but that Bridge Port MAC_Operational parameter is false.";
}
identity LINK_TRACE_EGRESS_ACTION_FIELD_VALUE_EGRESS-BLOCKED {
base LINK_TRACE_EGRESS_ACTION_FIELD_VALUE;
description "The Egress Port can be identified, but the data frame would not pass through the Egress Port due to active topology management (i.e., the Bridge Port is not in the Forwarding state).";
}
identity LINK_TRACE_EGRESS_ACTION_FIELD_VALUE_EGRESS-VID {
base LINK_TRACE_EGRESS_ACTION_FIELD_VALUE;
description "The Egress Port can be identified, but the Bridge Port is not in the LTMs VIDs member set, so would be filtered by egress filtering.";
}
identity LTMFLAGS {
description "none";
}
identity LTMFLAGS_USE-FDB-ONLY {
base LTMFLAGS;
description "IEEE 802.1Q 2018:
If set, indicates that only MAC addresses learned in a Bridge’s FDB, and not information saved in the MIP CCM Database, is to be used to determine the Egress Port.
Bit 8 (MSB).";
}
identity TEST_PATTERN {
description "none";
}
identity TEST_PATTERN_NULL-SIGNAL-WITHOUT-CRC-32 {
base TEST_PATTERN;
description "none";
}
identity TEST_PATTERN_NULL-SIGNAL-WITH-CRC-32 {
base TEST_PATTERN;
description "none";
}
identity TEST_PATTERN_PRBS-2_31-1-WITHOUT-CRC-32 {
base TEST_PATTERN;
description "none";
}
identity TEST_PATTERN_PRBS-2_31-1-WITH-CRC-32 {
base TEST_PATTERN;
description "none";
}
identity BANDWIDTH_PROFILE_TYPE {
description "none";
}
identity BANDWIDTH_PROFILE_TYPE_MEF_10.x {
base BANDWIDTH_PROFILE_TYPE;
description "none";
}
identity BANDWIDTH_PROFILE_TYPE_RFC_2697 {
base BANDWIDTH_PROFILE_TYPE;
description "none";
}
identity BANDWIDTH_PROFILE_TYPE_RFC_2698 {
base BANDWIDTH_PROFILE_TYPE;
description "none";
}
identity BANDWIDTH_PROFILE_TYPE_RFC_4115 {
base BANDWIDTH_PROFILE_TYPE;
description "none";
}
identity ETH_PM_PARAMETER_NAME {
base tapi-oam:PM_PARAMETER_NAME;
description "none";
}
identity ETH_PM_PARAMETER_NAME_MINIMUM_FRAME_DELAY {
base ETH_PM_PARAMETER_NAME;
description "none";
}
identity ETH_PM_PARAMETER_NAME_MAXIMUM_FRAME_DELAY {
base ETH_PM_PARAMETER_NAME;
description "none";
}
identity ETH_PM_PARAMETER_NAME_AVERAGE_FRAME_DELAY {
base ETH_PM_PARAMETER_NAME;
description "none";
}
identity ETH_PM_PARAMETER_NAME_MINIMUM_FRAME_DELAY_VARIATION {
base ETH_PM_PARAMETER_NAME;
description "This attribute contains the minimum frame delay variation measured in units of ns (nano second, 1x10e-9 seconds).
Y.1563:
The 2-point frame delay variation (vk) for an Ethernet frame k between SRC and DST is the difference between the absolute Ethernet frame transfer delay (xk) of frame k and a defined reference Ethernet frame transfer delay, d1,2, between those same MPs: vk = xk – d1,2.";
}
identity ETH_PM_PARAMETER_NAME_MAXIMUM_FRAME_DELAY_VARIATION {
base ETH_PM_PARAMETER_NAME;
description "This attribute contains the maximum frame delay variation measured in units of ns (nano second, 1x10e-9 seconds).
Y.1563:
The 2-point frame delay variation (vk) for an Ethernet frame k between SRC and DST is the difference between the absolute Ethernet frame transfer delay (xk) of frame k and a defined reference Ethernet frame transfer delay, d1,2, between those same MPs: vk = xk – d1,2.";
}
identity ETH_PM_PARAMETER_NAME_AVERAGE_FRAME_DELAY_VARIATION {
base ETH_PM_PARAMETER_NAME;
description "This attribute contains the average frame delay variation measured in units of ns (nano second, 1x10e-9 seconds).
Y.1563:
The 2-point frame delay variation (vk) for an Ethernet frame k between SRC and DST is the difference between the absolute Ethernet frame transfer delay (xk) of frame k and a defined reference Ethernet frame transfer delay, d1,2, between those same MPs: vk = xk – d1,2.";
}
identity ETH_PM_PARAMETER_NAME_MINIMUM_INTER_FRAME_DELAY_VARIATION {
base ETH_PM_PARAMETER_NAME;
description "This attribute contains the minimum frame delay variation measured in units of ns (nano second, 1x10e-9 seconds).
G.8013/Y.1731:
Frame delay variation is a measure of the variations in the frame delay between a pair of service frames";
}
identity ETH_PM_PARAMETER_NAME_MAXIMUM_INTER_FRAME_DELAY_VARIATION {
base ETH_PM_PARAMETER_NAME;
description "This attribute contains the maximum frame delay variation measured in units of ns (nano second, 1x10e-9 seconds).
G.8013/Y.1731:
Frame delay variation is a measure of the variations in the frame delay between a pair of service frames";
}
identity ETH_PM_PARAMETER_NAME_AVERAGE_INTER_FRAME_DELAY_VARIATION {
base ETH_PM_PARAMETER_NAME;
description "This attribute contains the average frame delay variation measured in units of ns (nano second, 1x10e-9 seconds).
G.8013/Y.1731:
Frame delay variation is a measure of the variations in the frame delay between a pair of service frames";
}
identity ETH_PM_PARAMETER_NAME_MINIMUM_FRAME_LOSS_RATIO {
base ETH_PM_PARAMETER_NAME;
description "none";
}
identity ETH_PM_PARAMETER_NAME_MAXIMUM_FRAME_LOSS_RATIO {
base ETH_PM_PARAMETER_NAME;
description "none";
}
identity ETH_PM_PARAMETER_NAME_AVERAGE_FRAME_LOSS_RATIO {
base ETH_PM_PARAMETER_NAME;
description "none";
}
identity ETH_PM_PARAMETER_NAME_HIGH_LOSS_INTERVALS {
base ETH_PM_PARAMETER_NAME;
description "none";
}
identity ETH_PM_PARAMETER_NAME_UNAVAILABLE_INTERVALS {
base ETH_PM_PARAMETER_NAME;
description "none";
}
identity ETH_ALARM_CONDITION_NAME {
base tapi-oam:ALARM_CONDITION_NAME;
description "none";
}
identity ETH_ALARM_CONDITION_NAME_LOSS_OF_CONTINUITY {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: The loss of continuity defect is calculated at the ETH layer. It monitors the presence of continuity in ETH trails.";
}
identity ETH_ALARM_CONDITION_NAME_UNEXPECTED_MEL {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: Reception of a CCM frame with an invalid MEL value.
Monitoring of the connectivity in a maintenance entity group.";
}
identity ETH_ALARM_CONDITION_NAME_UNEXPECTED_MEP {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: Reception of a CCM frame with an invalid MEP value, but with valid MEL and MEG values.
Monitoring of the connectivity in a maintenance entity group.
";
}
identity ETH_ALARM_CONDITION_NAME_MISMERGE_UNEXPECTED_MEG {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: Reception of a CCM frame with an invalid MEG value, but with a valid MEL value.
Monitoring of the connectivity in a maintenance entity group.
";
}
identity ETH_ALARM_CONDITION_NAME_UNEXPECTED_PERIODICITY {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: Reception of a CCM frame with an invalid periodicity value, but with valid MEL, MEG and MEP values.
It detects the configuration of different periodicities at different MEPs belonging to the same MEG.
";
}
identity ETH_ALARM_CONDITION_NAME_UNEXPECTED_PRIORITY {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: Reception of a CCM frame with an invalid priority value, but with valid MEL, MEG, MEP and periodicity values.
It detects the configuration of different priorities for CCM at different MEPs belonging to the same MEG.
";
}
identity ETH_ALARM_CONDITION_NAME_LOCKED {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: Reception of a LCK frame.";
}
identity ETH_ALARM_CONDITION_NAME_AIS {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: Reception of an AIS frame.";
}
identity ETH_ALARM_CONDITION_NAME_DEGRADED {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: The defect is detected if there are MI_LM_DEGM (lmDegm of EthMepSink) consecutive bad seconds and cleared if there are MI_LM_M (lmM of EthMepSink) consecutive good seconds.
In order to declare a bad second the number of transmitted frames must exceed a threshold (MI_LM_TFMIN, lmTfMin of EthMepSink).
Furthermore, if the frame loss ratio (lost frames/transmitted frames) is greater than MI_LM_DEGTHR (lmDegThr of EthMepSink), a bad second is declared.
This defect is only defined for point-to-point ETH connections. It monitors the connectivity of an ETH trail.
";
}
identity ETH_ALARM_CONDITION_NAME_RDI {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: Remote defect indicator defect, reception by an MEP (indexed by 'i', this index not included in the 'cause' cRDI) of a CCM frame with valid MEL, MEG, MEP and periodicity values and the RDI flag set to x; where x=0 (remote defect clear) and x=1 (remote defect set).";
}
identity ETH_ALARM_CONDITION_NAME_CSF {
base ETH_ALARM_CONDITION_NAME;
description "G.8021 - ETH layer: Reception of a CSF frame that indicates a client loss of signal (dCSF-LOS) or a client forward defect indication (dCSF-FDI) or a client reverse defect indication (dCSF-RDI).
The CSF (CSF-LOS, CSF-FDI, and CSF-RDI) defect is calculated at the ETH layer. It monitors the presence of a CSF maintenance signal.
G.8021 - GFP: dCSF is Client-specific GFP-F and GFP-T (resp. Frame and Transparent) sink processes.
dCSF-RDI: GFP client signal fail-remote defect indication is raised when a GFP client management frame with the RDI UPI (as defined in Table 6-4 of [ITU-T G.7041]) is received.
dCSF-RDI is cleared when no such GFP client management frame is received in N x 1000 ms (a value of 3 is suggested for N), a valid GFP client data frame is received, or a GFP client management frame with the DCI UPI is received.
dCSF-FDI: GFP client signal fail-forward defect indication is raised when a GFP client management frame with the FDI UPI (as defined in Table 6-4 of [ITU-T G.7041]) is received.
dCSF-FDI is cleared when no such GFP client management frame is received in N x 1000 ms (a value of 3 is suggested for N), a valid GFP client data frame is received, or a GFP client management frame with the DCI UPI is received.
dCSF-LOS: GFP client signal fail-loss of signal is raised when a GFP client management frame with the LOS UPI (as defined in Table 6-4 of [ITU-T G.7041]) is received.
dCSF-LOS is cleared when no such GFP client management frame is received in N x 1000 ms (a value of 3 is suggested for N), a valid GFP client data frame is received, or a GFP client management frame with the DCI UPI is received.";
}
identity ETH_ALARM_CONDITION_NAME_TOTAL_LINK_LOSS {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: LAG - fault cause will be raised if no ports are active for an aggregator.";
}
identity ETH_ALARM_CONDITION_NAME_PARTIAL_LINK_LOSS {
base ETH_ALARM_CONDITION_NAME;
description "G.8021: LAG - fault cause shall be raised if the number of active ports is less than the provisioned threshold.";
}
identity ETH_ALARM_CONDITION_NAME_PLM {
base ETH_ALARM_CONDITION_NAME;
description "G.806: The payload label mismatch defect (dPLM) shall be detected if the 'accepted TSL' code does not match the 'expected TSL' code. If the 'accepted TSL' is 'equipped non-specific', the mismatch is not detected (TSL: Trail Signal Label).
Payload type supervision checks that compatible adaptation functions are used at the source and the sink.
This is normally done by adding a signal type identifier at the source adaptation function and comparing it with the expected identifier at the sink.
If they do not match, a payload mismatch is detected.";
}
identity ETH_ALARM_CONDITION_NAME_LFD {
base ETH_ALARM_CONDITION_NAME;
description "G.806 - Server layer-specific GFP sink processes: GFP loss of frame delineation (dLFD) is raised when the frame delineation process (clause 6.3.1 of [ITU-T G.7041]) is not in the 'SYNC' state.
dLFD is cleared when the frame delineation process is in the 'SYNC' state.";
}
identity ETH_ALARM_CONDITION_NAME_EXM {
base ETH_ALARM_CONDITION_NAME;
description "G.806 - Common GFP sink processes: GFP extension header mismatch (dEXM) is raised when the accepted EXI (AcEXI) is different from the expected EXI.
dEXM is cleared when AcEXI matches the expected EXI or GFP_SF is active.";
}
identity ETH_ALARM_CONDITION_NAME_UPM {
base ETH_ALARM_CONDITION_NAME;
description "G.806 - Client-specific GFP-F (Frame) and GFP-T (Transparent) sink processes: GFP user payload mismatch (dUPM) is raised when the accepted UPI (AcUPI) is different from the expected UPI.
dUPM is cleared when AcUPI matches the expected UPI or GFP_SF is active.";
}
grouping priority-configuration {
leaf priority {
type uint64 {
range "0..7";
}
description "none";
}
leaf queue-id {
type uint64;
description "none";
}
description "none";
}
grouping queue-configuration {
leaf queue-id {
type uint64;
description "This attribute indicates the queue id.";
}
leaf queue-depth {
type uint64;
description "This attribute defines the depth of the queue in bytes.";
}
leaf queue-threshold {
type uint64;
description "This attribute defines the threshold of the queue in bytes.";
}
description "none";
}
grouping traffic-conditioning-configuration {
leaf cir {
type uint64;
description "This attribute indicates the Committed Information Rate in bits/s.";
}
leaf cbs {
type uint64;
description "This attribute indicates the Committed Burst Size in bytes.";
}
leaf eir {
type uint64;
description "This attribute indicates the Excess Information Rate in bits/s.";
}
leaf ebs {
type uint64;
description "This attribute indicates the Excess Burst Size in bytes.";
}
leaf coupling-flag {
type boolean;
description "This attribute indicates the coupling flag.";
}
leaf colour-mode {
type colour-mode;
description "This attribute indicates the colour mode.";
}
leaf queue-id {
type uint64;
description "This attribute indicates the queue id.";
}
description "none";
}
typedef mac-address {
type string;
description "This primitive data type contains an Ethernet MAC address defined by IEEE 802a. The format of the address consists of 12 hexadecimal characters, grouped in pairs and separated by '-' (e.g., 03-27-AC-75-3E-1D).";
}
grouping priority-mapping {
leaf priority-0 {
type uint64 {
range "0..7";
}
description "This attribute defines the new priority value for the old priority value 0.";
}
leaf priority-1 {
type uint64 {
range "0..7";
}
default "1";
description "This attribute defines the new priority value for the old priority value 1.";
}
leaf priority-2 {
type uint64 {
range "0..7";
}
default "2";
description "This attribute defines the new priority value for the old priority value 2.";
}
leaf priority-3 {
type uint64 {
range "0..7";
}
default "3";
description "This attribute defines the new priority value for the old priority value 3.";
}
leaf priority-4 {
type uint64 {
range "0..7";
}
default "4";
description "This attribute defines the new priority value for the old priority value 4.";
}
leaf priority-5 {
type uint64 {
range "0..7";
}
default "5";
description "This attribute defines the new priority value for the old priority value 5.";
}
leaf priority-6 {
type uint64 {
range "0..7";
}
default "6";
description "This attribute defines the new priority value for the old priority value 6.";
}
leaf priority-7 {
type uint64 {
range "0..7";
}
default "7";
description "This attribute defines the new priority value for the old priority value 7.";
}
description "This data type provides the priority mapping done in the 'P Regenerate' process defined in G.8021.";
}
typedef vid {
type string;
description "This primitive type models the 12 Bit VLAN identifier of a VLAN tag.";
}
typedef modify-cross-connection-data {
type string;
description "none";
}
grouping address-tuple {
leaf address {
type mac-address;
description "This attribute contains the MAC address of the address tuple.";
}
leaf-list port-list {
type mac-address;
description "This attribute contains the ports associated to the MAC address in the address tuple.";
}
description "This data type contains an address tuple consisting of a MAC address and a corresponding port list.";
}
typedef scheduling-configuration {
type string;
description "The syntax of this dataType is pending on the specification in G.8021, which is for further study.";
}
grouping control-frame-filter {
leaf c-2-00-00-10 {
type boolean;
description "This attribute identifies the 'All LANs Bridge Management Group Address'.";
}
leaf c-2-00-00-00 {
type boolean;
description "This attribute identifies the STP/RSTP/MSTP protocol address.";
}
leaf c-2-00-00-01 {
type boolean;
description "This attribute identifies the IEEE MAC-specific Control Protocols group address (PAUSE protocol).";
}
leaf c-2-00-00-02 {
type boolean;
description "This attribute identifies the IEEE 802.3 Slow_Protocols_Multicast address (LACP/LAMP or Link OAM protocols).";
}
leaf c-2-00-00-03 {
type boolean;
description "This attribute identifies the Nearest non-TPMR Bridge group address (Port Authentication protocol).";
}
leaf c-2-00-00-04 {
type boolean;
description "This attribute identifies the IEEE MAC-specific Control Protocols group address.";
}
leaf c-2-00-00-05 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-06 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-07 {
type boolean;
description "This attribute identifies the Metro Ethernet Forum E-LMI protocol group address.";
}
leaf c-2-00-00-08 {
type boolean;
description "This attribute identifies the Provider Bridge Group address.";
}
leaf c-2-00-00-09 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-0-a {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-0-b {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-0-c {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-0-d {
type boolean;
description "This attribute identifies the Provider Bridge MVRP address.";
}
leaf c-2-00-00-0-e {
type boolean;
description "This attribute identifies the Individual LAN Scope group address, Nearest Bridge group address (LLDP protocol).";
}
leaf c-2-00-00-0-f {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-20 {
type boolean;
description "This attribute identifies the Customer and Provider Bridge MMRP address.";
}
leaf c-2-00-00-21 {
type boolean;
description "This attribute identifies the Customer Bridge MVRP address.";
}
leaf c-2-00-00-22 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-23 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-24 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-25 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-26 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-27 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-28 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-29 {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-2-a {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-2-b {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-2-c {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-2-d {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-2-e {
type boolean;
description "Reserved for future standardization.";
}
leaf c-2-00-00-2-f {
type boolean;
description "Reserved for future standardization.";
}
description "This data type identifies the filter action for each of the 33 group MAC addresses (control frames).
Value 'false' means block: The frame is discarded by the filter process.
Value 'true' means pass: The frame is passed unchanged through the filter process.";
}
grouping bandwidth-report {
leaf source-mac-address {
type mac-address;
description "The sourceMacAddress is the address from the far end.";
}
leaf port-id {
type uint64;
description "This attribute returns the far end port identifier.";
}
leaf nominal-bandwidth {
type uint64;
description "This attribute returns the configured bandwidth";
}
leaf current-bandwidth {
type uint64;
description "This attribute returns the current bandwidth.";
}
description "Data type for the bandwidth report.";
}
typedef admin-state {
type enumeration {
enum LOCK {
description "none";
}
enum NORMAL {
description "none";
}
}
description "none";
}
typedef colour-mode {
type enumeration {
enum COLOUR_BLIND {
description "none";
}
enum COLOUR_AWARE {
description "none";
}
}
description "none";
}
typedef csf-config {
type enumeration {
enum DISABLED {
description "This literal covers the following states of the CSF related MI informations:
- MI_CSF_Enable is false
- MI_CSFrdifdi_Enable is false
- MI_CSFdci_Enable is false.";
}
enum ENABLED {
description "This literal covers the following states of the CSF related MI informations:
- MI_CSF_Enable is true
- MI_CSFrdifdi_Enable is false
- MI_CSFdci_Enable is false.";
}
enum ENABLED_WITH_RDI_FDI {
description "This literal covers the following states of the CSF related MI informations:
- MI_CSF_Enable is true
- MI_CSFrdifdi_Enable is true
- MI_CSFdci_Enable is false.";
}
enum ENABLED_WITH_RDI_FDI_DCI {
description "This literal covers the following states of the CSF related MI informations:
- MI_CSF_Enable is true
- MI_CSFrdifdi_Enable is true
- MI_CSFdci_Enable is true.";
}
enum ENABLED_WITH_DCI {
description "This literal covers the following states of the CSF related MI informations:
- MI_CSF_Enable is true
- MI_CSFrdifdi_Enable is false
- MI_CSFdci_Enable is true.";
}
}
description "none";
}
typedef ety-phy-type {
type enumeration {
enum OTHER {
description "none";
}
enum UNKNOWN {
description "none";
}
enum NONE {
description "none";
}
enum 2BASE_TL {
description "none";
}
enum 10MBIT_S {
description "none";
}
enum 10PASS_TS {
description "none";
}
enum 100BASE_T4 {
description "none";
}
enum 100BASE_X {
description "none";
}
enum 100BASE_T2 {
description "none";
}
enum 1000BASE_X {
description "none";
}
enum 1000BASE_T {
description "none";
}
enum 10GBASE-X {
description "none";
}