Skip to content
a 565 KiB
Newer Older
Andrea Sgambelluri's avatar
Andrea Sgambelluri committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
[2024-06-06 23:08:12,470] INFO:__main__:Starting...
[2024-06-06 23:08:12,483] INFO:device.service.DeviceService:Starting Service (tentative endpoint: 0.0.0.0:2020, max_workers: 200)...
[2024-06-06 23:08:12,489] INFO:device.service.DeviceService:Listening on 0.0.0.0:2020...
[2024-06-06 23:08:12,502] INFO:__main__:Pre-loading drivers...
[2024-06-06 23:11:10,686] INFO:device.service.driver_api.DriverInstanceCache:Selecting driver for device(4dbdc2d8-cbde-5e48-a3c0-5161387a58c7) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:10,687] INFO:device.service.driver_api.DriverInstanceCache:Driver(OCDriver) selected for device(4dbdc2d8-cbde-5e48-a3c0-5161387a58c7) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:11,139] INFO:root:settings {'allow_agent': False, 'commit_per_rule': False, 'device_params': {'name': 'default'}, 'endpoints': [], 'force_running': False, 'hostkey_verify': False, 'look_for_keys': False, 'manager_params': {'timeout': 120}, 'password': 'admin', 'type': 'optical-transponder', 'username': 'admin'}
[2024-06-06 23:11:11,140] INFO:ncclient.operations.rpc:[host 172.17.254.41 session-id 29] Requesting 'Get'
[2024-06-06 23:11:11,480] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,482] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:11,482] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,483] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:11,484] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,485] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:11,485] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,487] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:11,487] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,488] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:11,489] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,490] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:11,491] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,492] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:11,492] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,494] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:11,494] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,495] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:11,496] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,497] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:11,497] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,498] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:11,499] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,500] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:11,500] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,501] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:11,502] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,503] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:11,503] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,505] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:11,505] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,506] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:11,508] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:11,548] INFO:device.service.Tools:results_getconfig = [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]
[2024-06-06 23:11:11,549] INFO:ncclient.operations.rpc:[host 172.17.254.41 session-id 29] Requesting 'Get'
[2024-06-06 23:11:11,670] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,671] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:11,671] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,673] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:11,673] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,674] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:11,674] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,675] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:11,676] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,677] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:11,677] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,678] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:11,678] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,679] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:11,680] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,681] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:11,682] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,683] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:11,683] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,684] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:11,684] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,685] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:11,686] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,687] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:11,687] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,688] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:11,688] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,690] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:11,690] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,691] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:11,691] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:11,692] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:11,694] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:20,376] INFO:device.service.driver_api.DriverInstanceCache:Selecting driver for device(27c2ed23-e74a-518f-820d-ae2c8ae23086) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:20,376] INFO:device.service.driver_api.DriverInstanceCache:Driver(OCDriver) selected for device(27c2ed23-e74a-518f-820d-ae2c8ae23086) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:20,571] INFO:root:settings {'allow_agent': False, 'commit_per_rule': False, 'device_params': {'name': 'default'}, 'endpoints': [], 'force_running': False, 'hostkey_verify': False, 'look_for_keys': False, 'manager_params': {'timeout': 120}, 'password': 'admin', 'type': 'optical-transponder', 'username': 'admin'}
[2024-06-06 23:11:20,572] INFO:ncclient.operations.rpc:[host 172.17.254.41 session-id 30] Requesting 'Get'
[2024-06-06 23:11:20,788] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,789] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:20,789] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,790] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:20,790] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,792] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:20,792] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,793] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:20,793] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,794] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:20,794] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,796] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:20,796] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,797] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:20,797] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,799] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:20,799] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,800] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:20,800] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,801] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:20,802] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,803] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:20,803] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,805] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:20,805] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,806] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:20,806] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,807] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:20,808] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,809] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:20,809] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,810] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:20,812] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:20,874] INFO:device.service.Tools:results_getconfig = [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]
[2024-06-06 23:11:20,875] INFO:ncclient.operations.rpc:[host 172.17.254.41 session-id 30] Requesting 'Get'
[2024-06-06 23:11:20,978] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,979] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:20,980] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,981] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:20,981] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,982] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:20,982] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,983] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:20,984] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,985] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:20,985] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,986] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:20,986] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,988] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:20,988] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,989] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:20,989] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,990] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:20,991] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,992] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:20,992] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,993] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:20,993] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,994] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:20,995] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,996] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:20,996] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,997] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:20,997] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:20,999] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:20,999] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:21,000] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:21,002] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:29,845] INFO:device.service.driver_api.DriverInstanceCache:Selecting driver for device(cf618e18-c0a1-58c4-9827-943a2c0523d6) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:29,846] INFO:device.service.driver_api.DriverInstanceCache:Driver(OCDriver) selected for device(cf618e18-c0a1-58c4-9827-943a2c0523d6) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:29,984] INFO:root:settings {'allow_agent': False, 'commit_per_rule': False, 'device_params': {'name': 'default'}, 'endpoints': [], 'force_running': False, 'hostkey_verify': False, 'look_for_keys': False, 'manager_params': {'timeout': 120}, 'password': 'admin', 'type': 'optical-transponder', 'username': 'admin'}
[2024-06-06 23:11:29,985] INFO:ncclient.operations.rpc:[host 172.17.254.41 session-id 31] Requesting 'Get'
[2024-06-06 23:11:30,209] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,211] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:30,211] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,212] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:30,212] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,214] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:30,214] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,215] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:30,215] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,217] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:30,217] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,218] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:30,218] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,219] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:30,220] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,221] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:30,221] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,222] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:30,223] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,224] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:30,224] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,227] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:30,228] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,229] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:30,229] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,231] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:30,231] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,232] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:30,233] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,234] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:30,234] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,235] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:30,237] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:30,291] INFO:device.service.Tools:results_getconfig = [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]
[2024-06-06 23:11:30,292] INFO:ncclient.operations.rpc:[host 172.17.254.41 session-id 31] Requesting 'Get'
[2024-06-06 23:11:30,476] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,478] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:30,478] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,480] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:30,480] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,481] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:30,482] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,484] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:30,485] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,487] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:30,487] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,488] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:30,488] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,490] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:30,490] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,491] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:30,491] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,493] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:30,493] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,494] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:30,495] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,496] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:30,496] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,498] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:30,498] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,499] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:30,500] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,501] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:30,501] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,502] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:30,503] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:30,504] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:30,508] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:47,762] INFO:device.service.driver_api.DriverInstanceCache:Selecting driver for device(012c4e67-0024-5f30-b527-55ec6daf2639) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:47,762] INFO:device.service.driver_api.DriverInstanceCache:Driver(OCDriver) selected for device(012c4e67-0024-5f30-b527-55ec6daf2639) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:47,986] INFO:root:settings {'allow_agent': False, 'commit_per_rule': False, 'device_params': {'name': 'default'}, 'endpoints': [], 'force_running': False, 'hostkey_verify': False, 'look_for_keys': False, 'manager_params': {'timeout': 120}, 'password': 'admin', 'type': 'optical-transponder', 'username': 'admin'}
[2024-06-06 23:11:47,987] INFO:ncclient.operations.rpc:[host 172.17.254.42 session-id 29] Requesting 'Get'
[2024-06-06 23:11:48,272] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,274] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:48,274] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,275] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:48,276] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,277] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:48,277] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,278] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:48,279] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,280] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:48,280] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,282] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:48,282] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,283] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:48,287] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,289] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:48,289] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,290] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:48,290] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,292] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:48,292] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,293] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:48,293] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,295] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:48,295] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,296] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:48,296] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,298] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:48,298] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,299] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:48,300] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,301] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:48,302] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:48,336] INFO:device.service.Tools:results_getconfig = [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]
[2024-06-06 23:11:48,336] INFO:ncclient.operations.rpc:[host 172.17.254.42 session-id 29] Requesting 'Get'
[2024-06-06 23:11:48,478] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,479] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:48,480] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,481] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:48,481] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,482] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:48,482] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,483] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:48,484] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,485] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:48,485] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,486] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:48,486] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,488] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:48,488] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,489] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:48,489] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,491] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:48,491] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,492] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:48,492] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,493] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:48,493] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,495] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:48,495] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,496] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:48,496] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,498] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:48,498] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,499] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:48,499] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:48,500] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:48,502] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:57,693] INFO:device.service.driver_api.DriverInstanceCache:Selecting driver for device(87d74166-65e3-595e-b643-122b4fd0303f) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:57,693] INFO:device.service.driver_api.DriverInstanceCache:Driver(OCDriver) selected for device(87d74166-65e3-595e-b643-122b4fd0303f) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:11:57,844] INFO:root:settings {'allow_agent': False, 'commit_per_rule': False, 'device_params': {'name': 'default'}, 'endpoints': [], 'force_running': False, 'hostkey_verify': False, 'look_for_keys': False, 'manager_params': {'timeout': 120}, 'password': 'admin', 'type': 'optical-transponder', 'username': 'admin'}
[2024-06-06 23:11:57,846] INFO:ncclient.operations.rpc:[host 172.17.254.42 session-id 30] Requesting 'Get'
[2024-06-06 23:11:58,113] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,115] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:58,115] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,116] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:58,116] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,118] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:58,118] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,119] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:58,119] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,121] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:58,121] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,122] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:58,122] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,124] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:58,124] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,125] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:58,125] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,127] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:58,127] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,128] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:58,129] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,130] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:58,130] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,131] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:58,132] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,133] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:58,133] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,135] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:58,135] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,138] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:58,138] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,140] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:58,141] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:11:58,169] INFO:device.service.Tools:results_getconfig = [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]
[2024-06-06 23:11:58,170] INFO:ncclient.operations.rpc:[host 172.17.254.42 session-id 30] Requesting 'Get'
[2024-06-06 23:11:58,305] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,307] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:58,307] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,309] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:58,309] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,310] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:58,311] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,312] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:11:58,312] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,314] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:58,314] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,315] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:58,316] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,317] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:58,317] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,319] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:11:58,319] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,320] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:58,321] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,322] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:58,322] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,324] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:58,324] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,325] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:11:58,326] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,327] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:11:58,327] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,329] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:11:58,329] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,331] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:11:58,331] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:11:58,332] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:11:58,334] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:12:07,905] INFO:device.service.driver_api.DriverInstanceCache:Selecting driver for device(ce0cdfdd-2182-5027-8177-676ca3244f9d) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:12:07,906] INFO:device.service.driver_api.DriverInstanceCache:Driver(OCDriver) selected for device(ce0cdfdd-2182-5027-8177-676ca3244f9d) with filter_fields({'device_type': 'optical-transponder', 'driver': [11]})...
[2024-06-06 23:12:08,048] INFO:root:settings {'allow_agent': False, 'commit_per_rule': False, 'device_params': {'name': 'default'}, 'endpoints': [], 'force_running': False, 'hostkey_verify': False, 'look_for_keys': False, 'manager_params': {'timeout': 120}, 'password': 'admin', 'type': 'optical-transponder', 'username': 'admin'}
[2024-06-06 23:12:08,049] INFO:ncclient.operations.rpc:[host 172.17.254.42 session-id 31] Requesting 'Get'
[2024-06-06 23:12:08,272] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,273] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:12:08,273] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,274] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:12:08,274] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,276] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:12:08,276] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,277] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:12:08,277] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,278] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:12:08,279] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,280] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:12:08,280] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,281] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:12:08,281] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,283] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:12:08,283] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,284] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:12:08,284] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,285] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:12:08,286] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,287] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:12:08,287] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,288] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:12:08,289] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,290] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:12:08,290] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,291] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:12:08,292] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,293] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:12:08,294] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,295] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:12:08,296] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:12:08,323] INFO:device.service.Tools:results_getconfig = [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]
[2024-06-06 23:12:08,324] INFO:ncclient.operations.rpc:[host 172.17.254.42 session-id 31] Requesting 'Get'
[2024-06-06 23:12:08,467] INFO:root:resource_key frequency and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,468] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:12:08,468] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,470] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:12:08,470] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,471] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:12:08,471] INFO:root:resource_key line-port and channgel_name {'index': 'channel-1'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,473] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1'}
[2024-06-06 23:12:08,473] INFO:root:resource_key frequency and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,474] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:12:08,474] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,476] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:12:08,476] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,478] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:12:08,478] INFO:root:resource_key line-port and channgel_name {'index': 'channel-2'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,479] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2'}
[2024-06-06 23:12:08,480] INFO:root:resource_key frequency and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,481] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:12:08,481] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,482] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:12:08,483] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,485] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:12:08,485] INFO:root:resource_key line-port and channgel_name {'index': 'channel-3'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,487] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3'}
[2024-06-06 23:12:08,487] INFO:root:resource_key frequency and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,488] INFO:root:dic {'frequency': '191600000'}
[2024-06-06 23:12:08,489] INFO:root:resource_key target-output-power and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,491] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0'}
[2024-06-06 23:12:08,491] INFO:root:resource_key operational-mode and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,493] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0'}
[2024-06-06 23:12:08,494] INFO:root:resource_key line-port and channgel_name {'index': 'channel-4'} and channel_namespace http://openconfig.net/yang/terminal-device
[2024-06-06 23:12:08,495] INFO:root:dic {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4'}
[2024-06-06 23:12:08,497] INFO:root:parameters {'channels': [{'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-1', 'name': {'index': 'channel-1'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-2', 'name': {'index': 'channel-2'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-3', 'name': {'index': 'channel-3'}}, {'frequency': '191600000', 'target-output-power': '100.0', 'operational-mode': '0', 'line-port': 'transceiver-4', 'name': {'index': 'channel-4'}}], 'transceivers': {'transceiver': ['transceiver-1', 'transceiver-2', 'transceiver-3', 'transceiver-4']}, 'channel_namespace': 'http://openconfig.net/yang/terminal-device', 'endpoints': [{'endpoint_uuid': {'uuid': {'index': 'channel-1'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-2'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-3'}}}, {'endpoint_uuid': {'uuid': {'index': 'channel-4'}}}], 'ports': [('/endpoints/endpoint[1]', {'uuid': '1', 'type': 'port-1'}), ('/endpoints/endpoint[2]', {'uuid': '2', 'type': 'port-2'}), ('/endpoints/endpoint[3]', {'uuid': '3', 'type': 'port-3'}), ('/endpoints/endpoint[4]', {'uuid': '4', 'type': 'port-4'})]}
[2024-06-06 23:12:41,831] INFO:device.service.driver_api.DriverInstanceCache:Selecting driver for device(68741528-2e94-5274-ab3c-fddcd8dc05ef) with filter_fields({'device_type': 'optical-roadm', 'driver': [11]})...
[2024-06-06 23:12:41,831] INFO:device.service.driver_api.DriverInstanceCache:Driver(OCDriver) selected for device(68741528-2e94-5274-ab3c-fddcd8dc05ef) with filter_fields({'device_type': 'optical-roadm', 'driver': [11]})...
[2024-06-06 23:12:41,966] INFO:root:settings {'allow_agent': False, 'commit_per_rule': False, 'device_params': {'name': 'default'}, 'endpoints': [], 'force_running': False, 'hostkey_verify': False, 'look_for_keys': False, 'manager_params': {'timeout': 120}, 'password': 'admin', 'type': 'optical-roadm', 'username': 'admin'}
[2024-06-06 23:12:41,967] INFO:ncclient.operations.rpc:[host 172.17.254.21 session-id 19] Requesting 'Get'
component [<Element {http://openconfig.net/yang/platform}component at 0x7fec00606700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006067c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006068c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f76c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006069c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00606fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dc9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dca00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dca40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dca80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcb00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcb40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcb80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcbc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcc00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcc40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcc80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dccc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcd00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcd40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcd80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcdc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dce00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dce40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dce80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcf00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcf40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcf80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dcfc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e80c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e81c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e82c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e83c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e84c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e85c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e86c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e87c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e88c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e89c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005e8fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaa00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaa40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaa80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eab00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eab40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eab80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eabc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eac00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eac40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eac80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eacc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ead00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ead40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ead80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eadc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eae00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eae40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eae80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaf00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaf40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaf80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eafc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f80c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f81c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f82c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f83c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f84c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f85c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f86c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f87c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f88c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f89c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f90c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f91c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f92c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f93c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f94c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f95c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f96c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f97c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f98c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f99c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f9fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f60c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f61c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f62c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f63c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f64c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f65c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f66c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f67c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f68c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f69c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f6fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ed9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eda00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eda40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eda80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edb00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edb40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edb80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edbc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edc00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edc40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edc80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edcc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edd00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edd40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edd80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eddc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ede00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ede40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ede80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edf00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edf40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edf80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005edfc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006050c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006051c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006052c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006053c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006054c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006055c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006056c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006057c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006058c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006059c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00605fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0060e6c0>]
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:12:44,900] INFO:root:parameters {}
[2024-06-06 23:12:44,920] 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:12:44,922] INFO:ncclient.operations.rpc:[host 172.17.254.21 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