-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtests.fmf
More file actions
9050 lines (9050 loc) · 361 KB
/
tests.fmf
File metadata and controls
9050 lines (9050 loc) · 361 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
test: run/runtest.sh ${TMT_TEST_NAME##*/}
duration: 10m
tty: true
order: 200
component: NetworkManager
link:
- verifies: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-5601
/pass:
tag: ['gate', 'jimtcl', 'libmbim', 'libqmi', 'libqrtr-glib', 'ModemManager', 'usb_modeswitch-data', 'usb_modeswitch', 'mobile-broadband-provider-info', 'libndp', 'hostapd', 'wpa_supplicant', 'libnl3', 'dracut', 'NetworkManager-libreswan']
id: 3cf1b750-dc9a-5833-8db5-386f7172ddfd
order+: 0
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4024
/skip_step_skip:
id: f396f912-dc3c-5121-97e6-76c572fff795
order+: 1
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4025
/skip_step_pass:
id: 7e66a20b-2eaf-51d0-b9e8-9509fb57bd40
order+: 2
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4026
/last_copr_build_check:
id: 2a770a58-2a2e-55c0-94eb-fefb2f6f9e75
order+: 3
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4027
/bond_add_default_bond:
tag: ['gate']
id: aac81afb-310c-5a4d-a3b4-67fcd7a058fe
order+: 1000
duration: 20m
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4028
/bond_config_file:
id: 5939e7fa-99ad-5112-b029-8e931efa7d4e
order+: 1001
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4029
/nmcli_editor_for_new_connection_set_con_id:
id: 3f0e682b-2fac-5225-b6cf-42369ae1b296
order+: 1002
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4030
/bond_disconnect:
id: ec32fa49-086c-575a-a5cd-c86b9a2738a8
order+: 1003
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4031
/bond_remove_active_bond_profile:
id: 25c8b63b-e561-5eea-bb4e-c31d12d1c4d3
order+: 1004
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4032
/bond_add_slaves:
id: a91ec93e-0987-5ebf-ad3e-87359796c0b3
order+: 1005
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4033
/bond_add_slaves_with_queue-id:
id: c3a9f272-a608-5e21-910d-9ad5bff0ef52
order+: 1006
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4034
/bond_port_prio_with_active_backup:
id: e678e8a5-f255-5c16-ae14-bc58624fcc57
order+: 1007
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4035
/add_bond_master_via_uuid:
id: 46d7c5a4-825d-53c3-a60d-f6f4d13ed962
order+: 1008
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4036
/bond_keyfile_master:
id: db8ab2df-b8d6-5c66-aa3c-c582da202f38
order+: 1009
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4037
/nmcli_bond_manual_ipv4:
id: 9ff684aa-b826-5aab-bca9-6b1de40bad46
order+: 1010
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4038
/bond_remove_slave:
id: 1f86f5cd-65c4-5464-aa25-6f2a6a238cb4
order+: 1011
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4039
/bond_slave_type:
id: 2274a387-7758-5d0d-8aa9-9e1c9a9b128f
order+: 1012
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4040
/bond_remove_all_slaves:
tag: ['gate']
id: f4d31c80-0273-5e37-b283-7ac27685cd62
order+: 1013
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4041
/bond_start_by_hand:
id: 57ef846e-744c-5a4f-831a-6e2468ac42ad
order+: 1014
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4042
/bond_start_by_hand_no_slaves:
id: 04d2f4f8-7c66-526c-831f-c7dea275c882
order+: 1015
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4043
/bond_activate:
id: 9495bb9b-e80f-5b36-ab2a-8b903964b2fc
order+: 1016
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4044
/bond_start_on_boot:
id: 3426ca21-b939-527d-8993-0e1dacabaad7
order+: 1017
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4045
/bond_connect_slave_over_ethernet_upon_reboot:
tag: ['customer-scenario']
id: 02a0558a-debe-506c-b0c5-02126178ba0f
order+: 1018
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4046
/bond_default_rhel7_slaves_ordering:
id: e0b334fc-e857-543d-b6a1-06849d4f57e3
order+: 1019
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4047
/bond_slaves_ordering_by_ifindex:
id: 24c5d3d7-357c-5e18-8152-f719be9a6a0f
order+: 1020
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4048
/bond_slaves_ordering_by_ifindex_with_autoconnect_slaves:
id: 816cdf8e-e6c0-5ff0-a289-2d4f90d75640
order+: 1021
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4049
/bond_slaves_ordering_by_name:
id: ad41a2e6-95f7-5717-b904-ae9bc11fe9cb
order+: 1022
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4050
/bond_slaves_ordering_by_name_with_autoconnect_slaves:
id: e8bc08e1-c82d-52e7-bb24-34321e0b02cb
order+: 1023
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4051
/bond_set_miimon_values:
tag: ['gate']
id: 8cac01cf-262b-52d5-88ad-98dc3a24225a
order+: 1024
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4052
/bond_set_zero_miimon_values:
id: b89a684b-987f-598d-8fe5-d170bea92376
order+: 1025
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4053
/bond_options_new_arp_values:
tag: ['gate']
id: c2c8f7b7-3efa-5b38-b9fb-fe45ca48c512
order+: 1026
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4054
/bond_options_arp_vs_miimon_conflict:
id: abe1182f-769f-5eda-bae2-64d811406e59
order+: 1027
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4055
/bond_option_mode_missing:
id: 1c2a6c3e-e38a-51a3-82d2-a81bdece0762
order+: 1028
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4056
/bond_add_option:
id: 6e5e705a-95f1-5048-958c-9a1ed7d7ac26
order+: 1029
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4057
/bond_mode_incorrect_value:
id: 37c06d23-4736-5f30-904f-419995887b36
order+: 1030
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4058
/bond_change_options:
id: d9fb0e1b-141e-58cc-b19e-30424acf46e1
order+: 1031
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4059
/bond_remove_option:
id: 0dd282ac-432b-52ed-92bf-1af60df08e2e
order+: 1032
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4060
/bond_overwrite_options:
id: 755b8b2a-d54b-5d50-b5ce-199b49caf5f8
order+: 1033
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4061
/bond_mode_balance_rr:
id: a370e98a-5f67-5bc8-9638-5ea05759ea21
order+: 1034
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4062
/bond_mode_active_backup:
id: 1bb45470-3acf-58c4-ab3f-1098b292ba63
order+: 1035
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4063
/bond_active-backup_primary_set:
id: 440fecfb-760e-5b67-9264-896f1675422e
order+: 1036
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4064
/bond_mode_balance_xor:
id: 8ccab70c-f526-57cf-9d4b-728c2f4d665a
order+: 1037
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4065
/bond_mode_broadcast:
id: c96b1c96-8cbd-5012-ad0f-bd2731de2530
order+: 1038
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4066
/bond_slaves_start_via_master:
id: 8476544a-b4f6-5df7-ab7a-6a2edbf90eaa
order+: 1039
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4067
/bond_start_on_boot_with_nothing_auto:
id: d11dd317-ef10-52da-8d91-cdd4a5de7024
order+: 1040
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4068
/bond_mac_spoof:
id: d0f3820b-a4c4-5ffa-8d55-90497eeb0e2f
order+: 1041
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4069
/bond_mac_reconnect_preserve:
id: af83ae41-b4a4-52e3-80ae-cdc6effd900f
order+: 1042
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4070
/bond_start_by_hand_with_one_auto_only:
id: 7ffbac49-4a21-5012-8bfc-f78ca3deccc8
order+: 1043
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4071
/bond_start_on_boot_with_one_auto_only:
id: f745928f-11c3-5486-8e8a-7a7d8cbd5119
order+: 1044
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4072
/bond_start_on_boot_with_bond_and_one_slave_auto:
id: 9328cd63-30c8-559a-ba48-d2187dc9d416
order+: 1045
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4073
/bond_mode_8023ad:
id: 15b34957-d193-577d-ae7d-4ef3ec44b62a
order+: 1046
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4074
/bond_8023ad_with_lacp_rate_fast:
id: c71ffc8a-740b-5073-8d06-c8665c9cc166
order+: 1047
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4075
/bond_8023ad_with_lacp_active_on:
id: 009074ea-a256-5aef-ba68-ef1b35f6548f
order+: 1048
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4076
/bond_8023ad_with_lacp_active_off:
id: e0f2652b-8dfc-5309-ab25-79e4a69cb7b1
order+: 1049
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4077
/bond_mode_balance_tlb:
id: 468e837f-58f1-54a8-8156-39c49a010d88
order+: 1050
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4078
/bond_mode_balance_alb:
id: 1750dc19-6f91-5299-8bac-4913ce27d071
order+: 1051
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4079
/bond_set_mtu:
id: 07a98cf3-8efc-5467-933b-666f17bd526d
order+: 1052
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4080
/bond_set_different_mtu_on_slaves:
id: 25085f6a-7daf-537e-9384-0579a340886a
order+: 1053
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4081
/bond_addreses_restart_persistence:
tag: ['gate']
id: 86b46ba0-81d3-5b99-8c7d-ac2273d575cd
order+: 1054
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4082
/bond_describe:
id: 17119671-2a54-5967-9c4c-350b996ded4a
order+: 1055
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4083
/delete_addrgenmode_bond:
id: 60de2be0-9302-5293-a809-099da6811368
order+: 1056
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4084
/nmcli_novice_mode_create_bond_with_mii_monitor_values:
id: 20103670-c8fa-5941-934b-6ac31c4434d0
order+: 1057
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4085
/nmcli_novice_mode_create_bond_with_default_options:
id: ada83ab3-adb8-5309-8082-00e1b05e0592
order+: 1058
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4086
/nmcli_novice_mode_create_bond_with_arp_monitor_values:
id: bbb9861f-7441-5228-b235-cbe2dbaf8b77
order+: 1059
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4087
/nmcli_novice_mode_create_bond-slave_with_default_options:
id: 0b77595c-119c-5dd5-9f3a-a21a521e4f39
order+: 1060
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4088
/bond_reflect_changes_from_outside_of_NM:
id: dddc4081-32ff-5a18-bf56-49f01a278bbe
order+: 1061
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4089
/bond_dbus_creation:
id: af9c4231-fc18-52cd-943f-820d2ede30d7
order+: 1062
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4090
/bond_mode_by_number_in_keyfile:
id: d5f4dac0-a6ea-5a70-b658-c144fa6e64d4
order+: 1063
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4091
/bond_set_active_backup_options:
id: fd6c1033-e7fb-5288-a7f5-4bc98cb92742
order+: 1064
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4092
/bond_set_ad_options:
id: 7c586c44-3f2b-58e0-b9a7-b8708f292fb2
order+: 1065
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4093
/bond_set_arp_all_targets:
id: f5cb90fd-038c-575a-9cac-d05891535e37
order+: 1066
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4094
/bond_set_packets_per_slave_option:
id: b95804a7-ccc0-524c-947a-6da818e5cb01
order+: 1067
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4095
/bond_set_peer_notif_delay_option:
id: 396fdeb6-7c52-5554-a70e-594e923dea3a
order+: 1068
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4096
/bond_set_invalid_peer_notif_delay_option:
id: 92fa4561-348a-5038-a487-26b9d8679b93
order+: 1069
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4097
/bond_set_balance_tlb_options:
id: d398acab-25b7-5d77-a064-b658866b30a5
order+: 1070
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4098
/bond_set_balance_tlb_options_var2:
tag: ['customer-scenario']
id: c7f0d297-9d2f-5873-8100-8dc4d3bb0daa
order+: 1071
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4099
/bond_device_rename:
id: ed9e1b24-f75e-5eab-9ab8-27d5fe68cef5
order+: 1072
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4100
/bond_enslave_to_bridge:
id: 4ff65a6c-ef1b-5720-acb1-f9feedc8dc54
order+: 1073
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4101
/bridge_bond_autoconnect_nested_slaves:
tag: ['gate', 'libnl3']
id: d173d9c1-6cef-5948-a469-ec7684f770dd
order+: 1074
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4102
/bond_in_bridge_mtu:
tag: ['gate']
id: 03cde1b2-40cf-5df1-8fd6-c3ff00b9d596
order+: 1075
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4103
/bond_8023ad_no_error:
id: c95bf15f-1060-5d41-98c6-01b5f9bfc4ca
order+: 1076
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4104
/bond_balance-alb_no_error:
id: 1fdd0343-be02-5f9e-aad9-750f7b9533a6
order+: 1077
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4105
/reapply_unchanged_slave:
id: 1ea80dbf-c6de-59dc-a9b0-f6400bd5a58c
order+: 1078
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4106
/vlan_over_no_L3_bond_restart_persistence:
tag: ['gate']
id: a1a28272-5176-548f-ac95-bbd4acdb235d
order+: 1079
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4107
/vlan_over_bond_reconnect_on_link_revive:
id: 519a840a-5087-57d2-a498-576c6fa68fc6
order+: 1080
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4108
/bond_leave_L2_only_up_when_going_down:
tag: ['gate']
id: 6d8db9f0-0f10-56e1-a1b2-334a2e0dfe08
order+: 1081
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4109
/bond_assume_options_1:
id: eeb9e408-ec96-5bc9-a0b7-14211e38b490
order+: 1082
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4110
/bond_assume_options_2:
id: 86e39574-0892-59b8-aadd-c68a8d9ad4cb
order+: 1083
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4111
/bond_assume_options_3:
id: 82d558d8-4f3c-5e77-8de4-508a82fbc8ec
order+: 1084
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4112
/nmclient_bond_get_state_flags:
id: 9f9df720-7820-5578-b244-17fe17a74de5
order+: 1085
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4113
/bond_set_num_grat_arp_unsol_na:
id: 5e04ccd8-0311-56fa-9409-9e7efa9b82df
order+: 1086
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4114
/bond_send_correct_arp:
id: e100e2e2-b36d-5dc9-99df-791b71270ff0
order+: 1087
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4115
/bond_autoconnect_activation_fails_with_libnm:
id: 8095e432-2190-5776-a48d-ed855d8f60a8
order+: 1088
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4116
/bond_normalize_connection:
id: 7b60c2ab-298c-5fd1-a87c-805fdc985b77
order+: 1089
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4117
/bond_arp_validate:
tag: ['gate']
id: 5a3a9be5-f7ac-5ea6-960c-b28efb9bb5aa
order+: 1090
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4118
/bond_rr_arp_validate:
id: 00f98db7-7435-54d0-8aef-f0db9227b681
order+: 1091
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4119
/bond_reapply_connection_without_wired_settings:
id: f581b02a-a344-5337-b1e1-8ab340fc406d
order+: 1092
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4120
/bond_reconnect_previously_unavailable_device:
id: d0e0b5a0-5e03-5671-ac5f-4f627d36f2fb
order+: 1093
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4121
/bond_add_default_route_if_bond0_exists:
id: 8150267e-0b8c-524c-a4da-a652a4f2f973
order+: 1094
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4122
/bond_reapply:
id: df072490-c28e-5758-865b-3eae34fecc48
order+: 1095
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4123
/bond_change_mode_of_externally_created_bond:
id: 78476b36-9834-51b9-bda6-4216a85787e0
order+: 1096
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4124
/bond_8023ad_with_vlan_srcmac:
id: 117a2ae6-d318-5af6-bd1b-b880166ef4b3
order+: 1097
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4125
/bond_set_MTU_before_DHCP:
tag: ['customer-scenario']
id: 9700673f-2a35-5a0a-a15d-de02abd7ca7b
order+: 1098
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4126
/bond_accept_all_mac_addresses:
id: 79e438ed-0d8f-5727-8325-93a63530051b
order+: 1099
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4127
/bond_accept_all_mac_addresses_external_device:
id: 7ba8d678-5e47-5a45-b150-19b48244bb95
order+: 1100
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4128
/bond_enslave_to_bridge_correct_ARP:
id: e0416f53-c78c-5af5-994a-ca2517d93e3a
order+: 1101
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4129
/bond_controller_port_terminology:
id: f22b633a-3a18-519a-b74a-9f3f744e8b5c
order+: 1102
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4130
/bond_ipv4_dad_timeout_not_used:
id: f41d71a6-c17f-5c83-8fc1-abe3b17ea1c0
order+: 1103
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4131
/bond_modify_bond-opts_with_slaves:
id: 1fa33415-e25a-52ef-950f-a8dc5f8a059e
order+: 1104
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4132
/bond_conflicting_device_names:
id: 5314c2f8-c097-520b-90bf-0a07a0443d15
order+: 1105
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4133
/bond_set_balance_slb_options:
id: 70bdcab6-ef15-5dd1-aeb6-65c3e8a22566
order+: 1106
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4134
/bond_vlan_filtering_unmanaged_bridge:
id: ee098bec-8ef0-5217-87bf-975344001ee8
order+: 1107
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4135
/bond_unattach_ports_on_controller_failure:
id: cf2775e9-6523-53a6-9dbd-d63ed1ed3cbc
order+: 1108
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4136
/bond_set_hostname_even_when_links_do_not_come_up_immediately:
id: 63284760-ada5-51b5-973d-c5a7963b255f
order+: 1109
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4137
/bond_expose_dhcp_client_identifier:
id: 0cae61b0-0e8a-5f87-94c0-3f015bba9139
order+: 1110
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4138
/bond_expose_dhcp6_client_id:
id: 5324a55e-2f95-56dc-97ad-b6cabd6a06da
order+: 1111
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4139
/bond_expose_iaid:
id: 38a8ad31-d60a-594d-9eba-fc8990cb6f9e
order+: 1112
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4140
/bond_stay_up_when_ipv6_flushed:
id: 15a272ac-f8a0-54e0-bfe8-15aff3df75f2
order+: 1113
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4141
/bond_slb_garp:
id: b130b4cb-5614-5636-8619-eb4539d21081
order+: 1114
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4142
/bond_slb_l3_bridge_garp:
id: 33ee50ad-2326-5d1d-9214-0d7cf3c26ccf
order+: 1115
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4143
/bond_slb_l2_bridge_rarp:
id: 9c25f257-3501-52f4-9adf-b951e70cf663
order+: 1116
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4144
/bond_slb_garp_ping:
id: e8f6d4b9-fe7f-5dbb-9c7c-23538afdb23f
order+: 1117
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4145
/update_firewall_zone_upon_reconnect:
id: ad6a0ac7-0612-5298-80eb-40fa54a86fdb
order+: 2000
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4146
/pppoe_and_ethernet_together:
id: 1be61ebc-0f42-54e5-a484-cefe5ce52b9b
order+: 2001
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4147
/connect_to_pppoe_via_pap:
id: 38e8887d-5153-5c68-a01b-820975934cb2
order+: 2002
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4148
/connect_to_pppoe_via_chap:
id: 50a2bfd4-30d2-5d32-9a88-865ceb7c0f2f
order+: 2003
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4149
/disconnect_from_pppoe:
id: 68fcd9d6-9c9b-5657-a5e4-06f1c4821a0d
order+: 2004
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4150
/pppoe_over_vlan:
id: bec8df44-0d65-51e1-8d26-b633d574e823
order+: 2005
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4151
/nmstate_upstream:
id: 8aad8dc8-92ad-5a8c-bb4b-2cb679aeaa57
order+: 3000
duration: 35m
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4152
/nmstate_upstream_git_copr:
id: 571b9ba7-b4e2-532e-bc60-86fd11a5d65b
order+: 3001
duration: 35m
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-9252
/bridge_options:
tag: ['gate']
id: 13c215fc-ba41-505f-8969-effaf15a2b0f
order+: 4000
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4153
/bridge_modify_forward_delay:
id: b85d3533-720a-5cd2-b326-7014da1c0288
order+: 4001
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4154
/bridge_connection_up:
id: eade2ac7-09bc-553b-ad7f-541bdc8eff7c
order+: 4002
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4155
/bridge_connection_down:
id: bd394789-f7b0-5737-879c-209771a9f33a
order+: 4003
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4156
/bridge_disconnect_device:
id: 2e0797e6-c611-5041-a5d7-d71610ec9992
order+: 4004
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4157
/bridge_describe_all:
id: b69d7cfa-395b-5aa6-8d06-c4a4479c2834
order+: 4005
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4158
/bridge_describe_separately:
id: ed88a38c-13e2-54eb-8b78-c33108d06fb7
order+: 4006
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4159
/bridge_delete_connection:
id: 32134e4e-dc96-5bab-a252-da90bc6cac6e
order+: 4007
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4160
/bridge_delete_connection_while_up:
id: bfe9ca1b-d155-5483-9d81-531033360e42
order+: 4008
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4161
/bridge_new_lower_mac_port_unchanged_ip_addresses_v4:
id: 7437dd91-83f7-5ae1-ada5-c0fa6af958a2
order+: 4009
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4162
/bridge_new_lower_mac_port_unchanged_ip_addresses_v6:
id: 06b045fe-5171-5b16-8688-c6383262f072
order+: 4010
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4163
/bridge_add_slave:
id: 74ba02db-dd3c-54fd-8828-6ff06e4dd875
order+: 4011
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4164
/bridge_remove_slave:
tag: ['gate']
id: 64340a82-308b-526f-afac-436f4da09888
order+: 4012
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4165
/bridge_up_with_slaves:
id: ee39856d-4bec-5959-92ee-cd2c41c90c0b
order+: 4013
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4166
/bridge_up_slave:
id: cccc0801-dc30-5bd6-b13c-b78d59251054
order+: 4014
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4167
/bridge_slaves_start_via_master:
id: 9786cae8-3021-5cbf-93f0-933f5f7f27ad
order+: 4015
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4168
/bridge_autoconnect_slaves_when_master_reconnected:
id: b3962842-0232-5adc-bfac-c6acc0950a0b
order+: 4016
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4169
/bridge_dhcp_config_with_ethernet_port:
id: fe5cc582-718e-54e1-80f6-561d3ca7d6d3
order+: 4017
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4170
/bridge_dhcp_config_with_multiple_ethernet_ports:
tag: ['gate']
id: aef6e235-4147-52fe-9ac5-e7c48c52bdd3
order+: 4018
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4171
/bridge_static_config_with_multiple_ethernet_ports:
id: a97dc737-a9be-532f-b79c-6dcebfbeecb7
order+: 4019
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4172
/bridge_autoconnect_slaves_all:
id: 1f1b7058-81fd-5193-83ce-fc2837151e3e
order+: 4020
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4173
/bridge_autoconnect_slaves_all_modified:
id: 47bab259-afdc-5ca6-bf70-546464003594
order+: 4021
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4174
/bridge_server_ingore_carrier_with_dhcp:
id: 8bed939a-f9cf-5f10-b097-ca2ba5489bfb
order+: 4022
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4175
/bridge_reflect_changes_from_outside_of_NM:
id: 4f061ac8-2184-5484-9053-2e483eab629d
order+: 4023
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4176
/bridge_assumed_connection_race:
id: 01625de3-35f3-5bf3-9df5-0c3b33d0f8d7
order+: 4024
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4177
/bridge_assumed_connection_no_firewalld_zone:
id: 7927ea3d-8acd-58b2-a4c0-0c6ac4ae74b4
order+: 4025
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4178
/bridge_manipulation_with_1000_slaves:
id: b0774cab-a240-5833-8f32-5d6e631a885d
order+: 4026
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4179
/bridge_assumed_connection_ip_methods:
id: e1cb088e-3a6a-5ffd-8957-c8273407591d
order+: 4027
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4180
/outer_bridge_restart_persistence:
id: 077d8199-de2a-5e5e-ab78-34a14d7c2098
order+: 4028
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4181
/bridge_set_mac_var1:
id: 03e681df-3921-5a81-b8b9-3651827fe37a
order+: 4029
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4182
/bridge_external_unmanaged:
id: 1aaf47a8-7c6a-5c1d-9bf6-07c8d6b8dafe
order+: 4030
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4183
/bridge_preserve_assumed_connection_ips:
id: 7e883aa1-2f2f-5e81-8c9f-d7a144fbf98b
order+: 4031
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4184
/bridge_slave_to_ethernet_conversion:
id: 0104ba2f-b004-598e-b8cc-5da16c61f7df
order+: 4032
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4185
/bridge_delete_connection_with_device:
tag: ['gate']
id: 7de8b1d3-a46e-5f6f-8939-8c47d2a7717e
order+: 4033
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4186
/bridge_delete_connection_without_device:
id: ad473672-a4cd-539d-9bb1-c1f25e507e9a
order+: 4034
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4187
/bridge_ipv6:
tag: ['gate']
id: 171dd608-33cf-5d68-90df-f6855066fcaf
order+: 4035
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4189
/bridge_detect_initrd_device:
id: b2bf5441-559b-5e77-bf0b-e101a320d16d
order+: 4036
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4190
/bridge_detect_initrd_device_diff_name_for_profile:
id: f3d79d78-f1e2-55fc-95f4-fc26e81e88d2
order+: 4037
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4191
/bridge_vlan_filtering_no_pvid:
id: 17368060-b562-5dde-89e3-2bf899c74a43
order+: 4038
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4192
/bridge_vlan_filtering_default_pvid:
id: c3182392-e883-5c3f-822e-16b09fd1d4e5
order+: 4039
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4193
/bridge_vlan_filtering_non_default_pvid:
id: d9e99048-1c8c-559b-a603-3fc93ea6dd3b
order+: 4040
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4195
/bridge_vlan_filtering_default_pvid_reapply:
id: eaaf997a-5e89-50b4-b84f-f514c814463e
order+: 4041
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4194
/bridge_device_created_unmanaged:
id: f52cc1dd-47b7-5d0b-a0fb-4771ed8dca35
order+: 4042
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4196
/bridge_no_link_till_master:
id: 9e849e66-3ea8-5360-92b0-bd6ea819204c
order+: 4043
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4197
/bridge_down_to_l2_only:
id: 6dc3faa7-87b7-59a2-a577-e003f64d9c20
order+: 4044
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4198
/bridge_remove_slaves_ipv6ll:
id: abf9f026-4b50-5429-a442-55fd0855612a
order+: 4045
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4199
/bridge_v6ll_present_with_stp_and_static_v4:
id: f06fcccb-d874-5cde-ba29-8d5eb2bb9d9b
order+: 4046
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4200
/bridge_set_mtu:
tag: ['gate']
id: 081207fd-6649-5600-9ff5-dee5bcae49f6
order+: 4047
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4201
/bridge_accept_all_mac_addresses:
id: 9db3f7ec-c3d7-5b13-acf0-d0c8ca1166f5
order+: 4048
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4202
/bridge_accept_all_mac_addresses_external_device:
id: edb85650-7f33-584f-aed6-2c1a4dc9a300
order+: 4049
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4203
/bridge_controller_port_terminology:
id: 712f1d96-ec6f-5204-a028-cfa8b7f60424
order+: 4050
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4204
/bridge_keepaddr_unmanaged_device:
id: d097e30e-37cd-5263-8877-74789132413c
order+: 4051
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4205
/bridge_keep_unmanaged_device_on_reapply:
id: 2582d335-3124-53ee-8ebc-46e4281a3bb8
order+: 4052
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4206
/bridge_port_not_unblock_after_connection_update:
id: 7097f542-3458-5e30-bfe4-2386a1893c67
order+: 4053
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4207
/bridge_reapply_modifying_just_managed_ports:
tag: ['gate']
id: bb0e1c14-1e35-5d82-8c15-79b34c45588e
order+: 4054
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4208
/bridge_autoconnect_virtual_port:
id: da3a1344-be62-5cdd-b8c4-4767729179d9
order+: 4055
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4209
/bridge_port_vlan_reapply:
id: d9456682-09e5-582a-ada0-9b12c5f2aea2
order+: 4056
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4210
/add_default_team:
id: 854c0fe3-8b32-5f2b-8fb0-528e9e33893d
order+: 5000
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4211
/add_default_team_after_journal_restart:
id: f7fb40c3-846c-5d33-9af0-1ab9f61eae5b
order+: 5001
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4212
/ifcfg_team_slave_device_type:
id: d636fa55-b39a-59cf-86f8-8979a50fa5fb
order+: 5002
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4213
/nmcli_novice_mode_create_team:
id: 7f97f2fb-5c2b-54ab-89e6-36e3e9004cad
order+: 5003
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4214
/nmcli_novice_mode_create_team_slave_with_default_options:
id: cefd4744-777f-543e-b107-ad788c496033
order+: 5004
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4215
/add_two_slaves_to_team:
id: 38dbb315-f906-50e0-833b-d72b2827e2db
order+: 5005
link:
- implements: https://polarion.example.org/polarion/#/project/RHELNST/workitem?id=RHELNST-4216
/team_default_config_watch:
id: 9b174366-7145-55a1-a2ce-3b16f9c0b31e
order+: 5006
link: