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
int-connection-46
int-connection-47
int-connection-48
int-connection-49
int-connection-5
int-connection-50
int-connection-51
int-connection-52
int-connection-53
int-connection-54
int-connection-55
int-connection-56
int-connection-57
int-connection-58
int-connection-59
int-connection-6
int-connection-60
int-connection-61
int-connection-62
int-connection-63
int-connection-64
int-connection-65
int-connection-66
int-connection-67
int-connection-68
int-connection-69
int-connection-7
int-connection-70
int-connection-71
int-connection-72
int-connection-73
int-connection-74
int-connection-75
int-connection-76
int-connection-77
int-connection-78
int-connection-79
int-connection-8
int-connection-80
int-connection-81
int-connection-82
int-connection-83
int-connection-84
int-connection-85
int-connection-86
int-connection-87
int-connection-88
int-connection-89
int-connection-9
int-connection-90
[2024-06-06 23:13:27,207] INFO:root:parameters {}
[2024-06-06 23:13:27,236] INFO:device.service.Tools:results_getconfig = [('/endpoints/endpoint[port-1-in]', {'uuid': 'port-1-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-10-in]', {'uuid': 'port-10-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-11-in]', {'uuid': 'port-11-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-12-in]', {'uuid': 'port-12-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-13-in]', {'uuid': 'port-13-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-14-in]', {'uuid': 'port-14-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-15-in]', {'uuid': 'port-15-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-16-in]', {'uuid': 'port-16-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-2-in]', {'uuid': 'port-2-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-3-in]', {'uuid': 'port-3-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-4-in]', {'uuid': 'port-4-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-5-in]', {'uuid': 'port-5-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-6-in]', {'uuid': 'port-6-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-7-in]', {'uuid': 'port-7-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-8-in]', {'uuid': 'port-8-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-9-in]', {'uuid': 'port-9-in', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_INPUT'}), ('/endpoints/endpoint[port-1-out]', {'uuid': 'port-1-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-10-out]', {'uuid': 'port-10-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-11-out]', {'uuid': 'port-11-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-12-out]', {'uuid': 'port-12-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-13-out]', {'uuid': 'port-13-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-14-out]', {'uuid': 'port-14-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-15-out]', {'uuid': 'port-15-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-16-out]', {'uuid': 'port-16-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-2-out]', {'uuid': 'port-2-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-3-out]', {'uuid': 'port-3-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-4-out]', {'uuid': 'port-4-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-5-out]', {'uuid': 'port-5-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-6-out]', {'uuid': 'port-6-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-7-out]', {'uuid': 'port-7-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-8-out]', {'uuid': 'port-8-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-9-out]', {'uuid': 'port-9-out', 'type': 'MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT'}), ('/endpoints/endpoint[port-33-in]', {'uuid': 'port-33-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-34-in]', {'uuid': 'port-34-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-35-in]', {'uuid': 'port-35-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-36-in]', {'uuid': 'port-36-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-37-in]', {'uuid': 'port-37-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-38-in]', {'uuid': 'port-38-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-39-in]', {'uuid': 'port-39-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-40-in]', {'uuid': 'port-40-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-41-in]', {'uuid': 'port-41-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-42-in]', {'uuid': 'port-42-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-43-in]', {'uuid': 'port-43-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-44-in]', {'uuid': 'port-44-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-45-in]', {'uuid': 'port-45-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-46-in]', {'uuid': 'port-46-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-47-in]', {'uuid': 'port-47-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-48-in]', {'uuid': 'port-48-in', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT'}), ('/endpoints/endpoint[port-33-out]', {'uuid': 'port-33-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-34-out]', {'uuid': 'port-34-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-35-out]', {'uuid': 'port-35-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-36-out]', {'uuid': 'port-36-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-37-out]', {'uuid': 'port-37-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-38-out]', {'uuid': 'port-38-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-39-out]', {'uuid': 'port-39-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-40-out]', {'uuid': 'port-40-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-41-out]', {'uuid': 'port-41-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-42-out]', {'uuid': 'port-42-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-43-out]', {'uuid': 'port-43-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-44-out]', {'uuid': 'port-44-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-45-out]', {'uuid': 'port-45-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-46-out]', {'uuid': 'port-46-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-47-out]', {'uuid': 'port-47-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'}), ('/endpoints/endpoint[port-48-out]', {'uuid': 'port-48-out', 'type': 'MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT'})]
[2024-06-06 23:13:27,237] INFO:ncclient.operations.rpc:[host 172.17.254.22 session-id 19] Requesting 'Get'
int-connection-91
int-connection-92
int-connection-93
int-connection-94
int-connection-95
int-connection-96
int-connection-97
int-connection-98
int-connection-99
port-1-in
port-1-out
port-10-in
port-10-out
port-11-in
port-11-out
port-12-in
port-12-out
port-13-in
port-13-out
port-14-in
port-14-out
port-15-in
port-15-out
port-16-in
port-16-out
port-17-in
port-17-out
port-18-in
port-18-out
port-19-in
port-19-out
port-2-in
port-2-out
port-20-in
port-20-out
port-21-in
port-21-out
port-22-in
port-22-out
port-23-in
port-23-out
port-24-in
port-24-out
port-25-in
port-25-out
port-26-in
port-26-out
port-27-in
port-27-out
port-28-in
port-28-out
port-29-in
port-29-out
port-3-in
port-3-out
port-30-in
port-30-out
port-31-in
port-31-out
port-32-in
port-32-out
port-33-in
port-33-out
port-34-in
port-34-out
port-35-in
port-35-out
port-36-in
port-36-out
port-37-in
port-37-out
port-38-in
port-38-out
port-39-in
port-39-out
port-4-in
port-4-out
port-40-in
port-40-out
port-41-in
port-41-out
port-42-in
port-42-out
port-43-in
port-43-out
port-44-in
port-44-out
port-45-in
port-45-out
port-46-in
port-46-out
port-47-in
port-47-out
port-48-in
port-48-out
port-5-in
port-5-out
port-6-in
port-6-out
port-7-in
port-7-out
port-8-in
port-8-out
port-9-in
port-9-out
component [<Element {http://openconfig.net/yang/platform}component at 0x7fec0055e740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055e9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ea00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ea40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ea80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055eac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055eb00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055eb40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055eb80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ebc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ec00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ec40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ec80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ecc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ed00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ed40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ed80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055edc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ee00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ee40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ee80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055eec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ef00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ef40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055ef80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0055efc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057da00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057da40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057da80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057db00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057db40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057db80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dbc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dc00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dc40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dc80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dcc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dd00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dd40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dd80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ddc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057de00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057de40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057de80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057df00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057df40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057df80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dfc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005810c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005811c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005812c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005813c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005814c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005815c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005816c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005817c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005818c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005819c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00581fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005900c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005901c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005902c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005903c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005904c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005905c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005906c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005907c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005908c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005909c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00590fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005730c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005731c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005732c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005733c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005734c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005735c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005736c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005737c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005738c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005739c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00573fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005620c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005621c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005622c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005623c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005624c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005625c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005626c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005627c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005628c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005629c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00562fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057f9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fa00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fa40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fa80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fb00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fb40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fb80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fbc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fc00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fc40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fc80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fcc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fd00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fd40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fd80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fdc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fe00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fe40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fe80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057fec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ff00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ff40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ff80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ffc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058a9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058aa00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058aa40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058aa80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058aac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ab00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ab40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ab80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058abc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ac00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ac40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ac80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058acc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ad00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ad40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ad80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058adc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ae00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ae40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058ae80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058aec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058af00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058af40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058af80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0058afc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057e9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ea00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ea40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ea80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057eac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057eb00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057eb40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057eb80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ebc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ec00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ec40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ec80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ecc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ed00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ed40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ed80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057edc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ee00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ee40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ee80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057eec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ef00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ef40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ef80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057efc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005940c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005941c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005942c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005943c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005944c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005945c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005946c0>]
WBSS-1
WBSS-10
WBSS-11
WBSS-12
WBSS-13
WBSS-14
WBSS-15
WBSS-16
WBSS-17
WBSS-18
WBSS-19
WBSS-2
WBSS-20
WBSS-21
WBSS-22
WBSS-23
WBSS-24
WBSS-25
WBSS-26
WBSS-27
WBSS-28
WBSS-29
WBSS-3
WBSS-30
WBSS-31
WBSS-32
WBSS-4
WBSS-5
WBSS-6
WBSS-7
WBSS-8
WBSS-9
WSS-1
WSS-10
WSS-11
WSS-12
WSS-2
WSS-3
WSS-4
WSS-5
WSS-6
WSS-7
WSS-8
WSS-9
int-connection-1
int-connection-10
int-connection-100
int-connection-101
int-connection-102
int-connection-103
int-connection-104
int-connection-105
int-connection-106
int-connection-107
int-connection-108
int-connection-109
int-connection-11
int-connection-110
int-connection-111
int-connection-112
int-connection-113
int-connection-114
int-connection-115
int-connection-116
int-connection-117
int-connection-118
int-connection-119
int-connection-12
int-connection-120
int-connection-121
int-connection-122
int-connection-123
int-connection-124
int-connection-125
int-connection-126
int-connection-127
int-connection-128
int-connection-129
int-connection-13
int-connection-130
int-connection-131
int-connection-132
int-connection-133
int-connection-134
int-connection-135
int-connection-136
int-connection-137
int-connection-138
int-connection-139
int-connection-14
int-connection-140
int-connection-141
int-connection-142
int-connection-143
int-connection-144
int-connection-145
int-connection-146
int-connection-147
int-connection-148
int-connection-149
int-connection-15
int-connection-150
int-connection-151
int-connection-152
int-connection-153
int-connection-154
int-connection-155
int-connection-156
int-connection-157
int-connection-158
int-connection-159
int-connection-16
int-connection-160
int-connection-161
int-connection-162
int-connection-163
int-connection-164
int-connection-165
int-connection-166
int-connection-167
int-connection-168
int-connection-169
int-connection-17
int-connection-170
int-connection-171
int-connection-172
int-connection-173
int-connection-174
int-connection-175
int-connection-176
int-connection-177
int-connection-178
int-connection-179
int-connection-18
int-connection-180
int-connection-181
int-connection-182
int-connection-183
int-connection-184
int-connection-185
int-connection-186
int-connection-187
int-connection-188
int-connection-189
int-connection-19
int-connection-190
int-connection-191
int-connection-192
int-connection-193
int-connection-194
int-connection-195
int-connection-196
int-connection-197
int-connection-198
int-connection-199
int-connection-2
int-connection-20
int-connection-200
int-connection-201
int-connection-202
int-connection-203
int-connection-204
int-connection-205
int-connection-206
int-connection-207
int-connection-208
int-connection-209
int-connection-21
int-connection-210
int-connection-211
int-connection-212
int-connection-213
int-connection-214
int-connection-215
int-connection-216
int-connection-217
int-connection-218
int-connection-219
int-connection-22
int-connection-220
int-connection-221
int-connection-222
int-connection-223
int-connection-224
int-connection-225
int-connection-226
int-connection-227
int-connection-228
int-connection-229
int-connection-23
int-connection-230
int-connection-231
int-connection-232
int-connection-233
int-connection-234
int-connection-235
int-connection-236
int-connection-237
int-connection-238
int-connection-239
int-connection-24
int-connection-240
int-connection-241
int-connection-242
int-connection-243
int-connection-244
int-connection-245
int-connection-246
int-connection-247
int-connection-248
int-connection-249
int-connection-25
int-connection-250
int-connection-251
int-connection-252
int-connection-253
int-connection-254
int-connection-255
int-connection-256
int-connection-257
int-connection-258
int-connection-259
int-connection-26
int-connection-260
int-connection-261
int-connection-262
int-connection-263
int-connection-264
int-connection-265
int-connection-266
int-connection-267
int-connection-268
int-connection-269
int-connection-27
int-connection-270
int-connection-271
int-connection-272
int-connection-273
int-connection-274
int-connection-275
int-connection-276
int-connection-277
int-connection-278
int-connection-279
int-connection-28
int-connection-280
int-connection-281
int-connection-282
int-connection-283
int-connection-284
int-connection-285
int-connection-286
int-connection-287
int-connection-288
int-connection-289
int-connection-29
int-connection-290
int-connection-291
int-connection-292
int-connection-293
int-connection-294
int-connection-295
int-connection-296
int-connection-297
int-connection-298
int-connection-299
int-connection-3
int-connection-30
int-connection-300
int-connection-301
int-connection-302
int-connection-303
int-connection-304
int-connection-305
int-connection-306
int-connection-307
int-connection-308
int-connection-309
int-connection-31
int-connection-310
int-connection-311
int-connection-312
int-connection-313
int-connection-314
int-connection-315
int-connection-316
int-connection-317
int-connection-318
int-connection-319
int-connection-32
int-connection-320
int-connection-321
int-connection-322
int-connection-323
int-connection-324
int-connection-325
int-connection-326
int-connection-327
int-connection-328
int-connection-329
int-connection-33
int-connection-330
int-connection-331
int-connection-332
int-connection-333
int-connection-334
int-connection-335
int-connection-336
int-connection-337
int-connection-338
int-connection-339
int-connection-34
int-connection-340
int-connection-341
int-connection-342
int-connection-343
int-connection-344
int-connection-345
int-connection-346
int-connection-347
int-connection-348
int-connection-349
int-connection-35
int-connection-350
int-connection-351
int-connection-352
int-connection-353
int-connection-354
int-connection-355
int-connection-356
int-connection-357
int-connection-358
int-connection-359
int-connection-36
int-connection-360
int-connection-361
int-connection-362
int-connection-363
int-connection-364
int-connection-365
int-connection-366
int-connection-367
int-connection-368
int-connection-369
int-connection-37
int-connection-370
int-connection-371
int-connection-372
int-connection-373
int-connection-374
int-connection-375
int-connection-376
int-connection-377
int-connection-378
int-connection-379
int-connection-38
int-connection-380
int-connection-381
int-connection-382
int-connection-383
int-connection-384
int-connection-385
int-connection-386
int-connection-387
int-connection-388
int-connection-389
int-connection-39
int-connection-390
int-connection-391
int-connection-392
int-connection-393
int-connection-394
int-connection-395
int-connection-396
int-connection-397
int-connection-398
int-connection-399
int-connection-4
int-connection-40
int-connection-400
int-connection-401
int-connection-402
int-connection-403
int-connection-404
int-connection-405
int-connection-406
int-connection-407
int-connection-408
int-connection-409
int-connection-41
int-connection-410
int-connection-411
int-connection-412
int-connection-413
int-connection-414
int-connection-415
int-connection-416
int-connection-417
int-connection-418
int-connection-419
int-connection-42
int-connection-420
int-connection-421
int-connection-422
int-connection-423
int-connection-424
int-connection-425
int-connection-426
int-connection-427
int-connection-428
int-connection-43
int-connection-44
int-connection-45
int-connection-46
int-connection-47
int-connection-48
int-connection-49
int-connection-5
int-connection-50
int-connection-51
int-connection-52
int-connection-53
int-connection-54
int-connection-55
int-connection-56
int-connection-57
int-connection-58
int-connection-59
int-connection-6
int-connection-60
int-connection-61
int-connection-62
int-connection-63
int-connection-64
int-connection-65
int-connection-66
int-connection-67
int-connection-68
int-connection-69
int-connection-7
int-connection-70
int-connection-71
int-connection-72
int-connection-73
int-connection-74
int-connection-75
int-connection-76
int-connection-77
int-connection-78
int-connection-79
int-connection-8
int-connection-80
int-connection-81
int-connection-82
int-connection-83
int-connection-84
int-connection-85
int-connection-86
int-connection-87
int-connection-88
int-connection-89
int-connection-9
int-connection-90
[2024-06-06 23:13:29,982] INFO:root:parameters {}
[2024-06-07 08:55:35,770] INFO:device.service.OpenConfigServicer: config from openconfigservicer {'channels': [], 'transceivers': {'transceiver': []}, 'interfaces': {'interface': ''}, 'channel_namespace': None, 'endpoints': [], 'device_name': 'R1', 'new_config': {'band_type': 'C_BAND', 'low-freq': 192006250, 'up-freq': 192206250, 'frequency': 192106250, 'band': 200000, 'ob_id': 1}, 'is_opticalband': True, 'flow': [['0', '77df46fd-6d6e-5726-9960-ca439c925dea']]}
[2024-06-07 08:55:35,822] INFO:device.service.OpenConfigServicer:device is device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
name: "R1"
device_type: "optical-roadm"
device_operational_status: DEVICEOPERATIONALSTATUS_ENABLED
device_drivers: DEVICEDRIVER_OC
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "02c19f3c-73ac-55b9-b4c2-7def7e7df9fe"
}
}
name: "port-48-in"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "0332be2a-9b4e-52d7-ac7b-3ea58bf00375"
}
}
name: "port-12-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "08da1aa7-9253-5e92-bf2c-6e66ffe7a4ff"
}
}
name: "port-38-in"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "0b1c4d0e-5140-5085-ab66-2def390b650f"
}
}
name: "port-33-in"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "12b4419f-9ae9-5839-ad52-9684b1f30878"
}
}
name: "port-34-out"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "188af412-9ac2-588f-8f00-a956aa6b2ae5"
}
}
name: "port-43-out"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "18a51dcf-905d-5104-9ef1-f24740fd6d78"
}
}
name: "port-12-in"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_INPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "1e02e33d-4b14-502d-9806-988f64cccb5d"
}
}
name: "port-43-in"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "21b8ccaa-9f7b-5bc5-9fc0-6f32025eb8a6"
}
}
name: "port-41-out"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "22d287ab-7935-55cb-b681-944a064726a9"
}
}
name: "port-11-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "28666b3c-4b96-5cb6-8006-eba13ca8ab6e"
}
}
name: "port-9-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "29e8b36f-6989-5651-99fe-b3cb2ee5b4b8"
}
}
name: "port-40-in"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "2b646bf7-3120-5254-a4fb-748294c61a71"
}
}
name: "port-2-in"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_INPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "35aaee89-81a3-56b1-b1ba-33f972d0af49"
}
}
name: "port-36-in"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT"
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {