-
Notifications
You must be signed in to change notification settings - Fork 1
/
MoM.html
1381 lines (1363 loc) · 95.8 KB
/
MoM.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SONiC | Home</title>
<!-- Favicon -->
<link rel="shortcut icon" href="assets/img/logo_on_tab.png" type="image/x-icon">
<!-- Font awesome -->
<link href="assets/css/font-awesome.css" rel="stylesheet">
<!-- Bootstrap -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Slick slider -->
<link rel="stylesheet" type="text/css" href="assets/css/slick.css">
<!-- Fancybox slider -->
<link rel="stylesheet" href="assets/css/jquery.fancybox.css" type="text/css" media="screen" />
<!-- Theme color -->
<link id="switcher" href="assets/css/theme-color/default-theme.css" rel="stylesheet">
<!-- Main style sheet -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,400italic,300,300italic,500,700' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
table,
th,
td {
border: 2px solid blue;
text-align: center;
}
th,
td {
padding: 10px;
background-color: none;
}
</style>
</head>
<body>
<!--START SCROLL TOP BUTTON -->
<a class="scrollToTop" href="#">
<i class="fa fa-angle-up"></i>
</a>
<!-- END SCROLL TOP BUTTON -->
<!-- Start menu -->
<section id="mu-menu">
</section>
<!-- End menu -->
<!-- Start search box -->
<div id="mu-search">
<div class="mu-search-area">
<button class="mu-search-close"><span class="fa fa-close"></span></button>
<div class="container">
<div class="row">
<div class="col-md-12">
<form class="mu-search-form">
<input type="search" placeholder="Type Your Keyword(s) & Hit Enter">
</form>
</div>
</div>
</div>
</div>
</div>
<!-- End search box -->
<!-- Page breadcrumb -->
<section id="mu-page-breadcrumb">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-page-breadcrumb-area">
<h2>SONiC community meeting minutes </h2>
</div>
</div>
</div>
</div>
</section>
<!-- End breadcrumb -->
<!-- Start MoM Table -->
<section id="mu-about-us">
<div class="container">
<br>
<br>
<table border="2" align="center">
<tr>
<th style="text-align: center; ">Date</th>
<th style=" text-align: center; ">Links To Meeting Agenda</th>
<th style=" text-align: center; ">Links To Minutes Of The meeting</th>
</tr>
<tr>
<td style=""> Feb 20 2024 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1587">Aggregate VOQ counters HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/622">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 13 2024 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/issues/1520">Fault Management Analysis and Handling</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/612">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 06 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1572">Add SONiC Debian Upgrade Cadence HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/595">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 30 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1570">Express Reboot HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/592">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 23 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1580">SONiC ACL based Metering HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/585">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 16 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1471">TACACS+ Passkey Encryption</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/577">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 09 2024 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1577">SONiC long reset button press</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/575">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 02 2024 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/566">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/566">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 26 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/549">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/549">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 19 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/548">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/563">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 12 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1533">Handle ASIC/SDK Health event</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/560">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 05 2023 </td>
<td style="text-align: left; "><a href="https://github.com/orgs/sonic-net/projects/17">202405 Release planning</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/552">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 28 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/540">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/540">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 21 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/536">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/538">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 14 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/522">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/537">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 07 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1508">Wake-on-VLAN HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/517">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 31 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1470">DHCPv4 - Specify Gateway explicit</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/510">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 24 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1470">DHCPv4 - Specify Gateway explicit</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/508">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 17 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/483">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/483">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 10 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/481">SONiC PAC Support HLD & Local authentication HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/482">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 03 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1487">LDAP HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/474">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 26 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1282">IPv4 Port-based DHCP server</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/466">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 19 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/454">SRv6 path tracing midpoint HLD & SRv6 Sid L3Adj HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/461">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 12 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/446">SONiC Container hardening HLD & SONiC SNMP changes to support IPv6 HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/451">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 05 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/431">SI Configuration Per Speed & Tx Signal HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/432">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 29 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1451">Create_Secureboot_uefi_key_management HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/430">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 22 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1446">VRRP Adaptation HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/409">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 15 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1416/">Auto-FEC HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/407">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 08 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/397">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/397">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 01 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/396">hld_fpmsyncd & hld_Netconf Server</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/396">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 25 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/master/doc/sfp-cmis/Interface-Link-bring-up-sequence.md">SONiC Interface link brinup sequence on sff modules support</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/383">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 18 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/44c46e62e22fe77cabc14fddb525c7102492705a/doc/pmon/pmon-sensormon.md">SONiC PMON sensor monitoring support</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/378">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 11 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/07c9f56d3e8207fcaf0f8770dd9e7c3edad2fdc6/doc/stp/MSTP_HLD.md">MSTP HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/374">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 04 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/341">No Meeting</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/341">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 27 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1361">SONiC Banner feature and Banner CLI</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/358">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 20 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/master/doc/system_health_monitoring/system-ready-HLD.md">System-ready HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/345">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 13 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/f25eed5f8fce135590ba767a31d6ec3655a17488/doc/TWAMP/SONiC-TWAMP-Ligth-HLD.md">TWAMP (Two Way Active measurement protocol) support HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/339">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 06 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/3230fb7ae9894942f7733bada76507402f38e67e/doc/sfp-cmis/CMIS-custom-SI-settings.md">Customer CMIS-SI-Settings HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/328">MoM</a></td>
</tr>
<tr>
<td style=""> May 30 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/cf22c1374a0fec550b60ab6113ff109ff59fefb4/doc/cli_wrapper/shd-cli_wrapper_hld.md">CLI wrapper</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/319">MoM</a></td>
</tr>
<tr>
<td style=""> May 23 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/abaf8f01ab250d2b21ad6253740b197c018c4d89/doc/pac/Port%20Access%20Control.md">Port Access Control HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/309">MoM</a></td>
</tr>
<tr>
<td style=""> May 16 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/298">HLD Save on SET & gNMI master arbitration</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/302">MoM</a></td>
</tr>
<tr>
<td style=""> May 09 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/e8caba982b1047281958b426a0b8125585bed5bb/doc/sonic-application-extension/tpcm_app_ext.md">SONiC TPCM Support</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/293">MoM</a></td>
</tr>
<tr>
<td style=""> May 02 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/32b44ea89431658fd6ed3a919ed9a3855c3f49f3/doc/platform/brcm_pdk_pddf.md">S3IP SysFS Support HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/275">MoM</a></td>
</tr>
<tr>
<td style=""> Apr 25 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/cd1b14ea00a5de1cd2127f3ec446fa6861a04c8e/doc/isis/frr-isis-sonic-config-support-hld.md">FRR ISIS HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/271">MoM</a></td>
</tr>
<tr>
<td style=""> Apr 17 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1258">CIMS & C-CIMS ZR optics support HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/265">MoM</a></td>
</tr>
<tr>
<td style=""> Apr 11 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1292">Port based Network Access Control HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/256">MoM</a></td>
</tr>
<tr>
<td style=""> Apr 04 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/02feff03963d3a23d41b01ee87d4b329fe2e312d/doc/static-route/SONiC_static_route_bfd_hld.md">Static Route BFD support</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/244">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 28 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/e35fedaed60cfe60f61340346777515803d897c0/doc/mgmt/gnmi/gNMI_Subscription_for_YangData.md">Supporting Yang model subscriptions for gNMI</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/228">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 21 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/issues/1254">NTP Additional config Knobs and NTP server provisioning</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/202">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 14 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1071">Link event Dampening</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/195">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 07 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/e150543a0ab200dd98c97796a63ccd139f878765/doc/lag/Increasing%20LACP%20PDU%20timeout%20during%20warm-reboot.md">Increasing LACP PDU timeout during Warm reboot HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/189">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 28 2023 </td>
<td style="text-align: left; "><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/183">Sflow HLD enhancements & ECN and WRED statistics support for SONiC </a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/183">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 21 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/b94b023dd55006f650b8f020365cf3cea28945c6/doc/acl/Extend-L3V6ACLs.md">Support Ipv4 ACL rules in Ipv6 ACL tables in optimized platforms</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/181">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 14 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1252">SRv6 VPN HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/1pA1yuWpmUU/m/YHNx1lZHAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 07 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/912/files">SwitchPort mode CLI and VLAN CLI management</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/lTRwEUjPzes/m/0QVlb8B6AAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 31 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1243">Resource Monitoring for Generic SAI Extensions</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/2_iCiiUspLA/m/vTjhavoRAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 24 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1231">Reset Factory HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/2_iCiiUspLA/m/dTWaclNmEAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 17 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/54dd6e6c2b1db14460dbee44f635a5a5daebcf59/doc/Clock%20commands/clock_managment_hld.md">Clock management HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/2_iCiiUspLA/m/ty3kXiXlAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 10 2023 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1203">Config Reload Enhancement HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/116">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 02 2023 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/svzeJA13qLQ/m/JqVyp_YRAwAJ">No Meeting</a></td>
<td style="text-align: left; "><a ></a></td>
</tr>
<tr>
<td style=""> Dec 27 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/svzeJA13qLQ/m/JqVyp_YRAwAJ">No Meeting</a></td>
<td style="text-align: left; "><a ></a></td>
</tr>
<tr>
<td style=""> Dec 20 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/svzeJA13qLQ/m/JqVyp_YRAwAJ">No Meeting</a></td>
<td style="text-align: left; "><a ></a></td>
</tr>
<tr>
<td style=""> Dec 13 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1048">User Management HLD</a></td>
<td style=""><a href="https://lists.sonicfoundation.dev/g/sonic-dev/message/81">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 06 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/1235e84d925308eaf80b926fc802c832e7fb688b/doc/hash/hash-design.md">Generic Hash HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/2JQWvOXFsMg/m/AdXGEc0pAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 29 2022 </td>
<td style="text-align: left; "><a >No Meeting</a></td>
<td style="text-align: left; "><a ></a></td>
</tr>
<tr>
<td style=""> Nov 22 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/bb09d8b6d3ae491b3bf81a8bd178e4093fe3c551/doc/BGP/BGP-supress-fib-pending.md">FIB Suppression Announcements of routes not installed Hardware</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/5kcATbivQwc/m/GK3Py2Q_CwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 15 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/bG85bUuZwc8/m/dl3MXP9mAwAJ">No Meeting</a></td>
</tr>
<tr>
<td style=""> Nov 08 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1012">Design doc for portable console switch for multiple vendors</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/bG85bUuZwc8/m/dl3MXP9mAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 01 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1078">Add time-based ACL HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/t2EQl4xPVfw/m/ITwiZYeSAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 25 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1101">Generic Hash HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/6wh-1ocujlA/m/d0VoS9huCQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 18 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1071">Link event damping HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/6tVFSPO8bC0/m/1X63ZrcxBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 11 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1095">teamd warm-restart in fast mode hld</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/TsmsMI_E0YQ/m/EdVd2-8wBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 04 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1060">Support PSU power threshold checking</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/iptvPaVV4XA/m/Bh3m52PxAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 27 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1088">PINS SONiC HLD for Generic SAI Extensions</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/iptvPaVV4XA/m/d1gETXeqAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 20 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1084">Port Profile Init HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/_kwKfZCh-vQ/m/RUSm6z2UAAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 13 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/WwYIMDyrLCc/m/vfiejmW7AQAJ">No Meeting</a></td>
</tr>
<tr>
<td style=""> Sep 06 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1077">Add California Law HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/0UHmGYG8JSs/m/a1XO46YaAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 30 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1073">HLD for changing teamd expiry timer </a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/0UHmGYG8JSs/m/CawKkdhaCAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 23 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1068">S3IP sysfs specification & framework HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/ucuacWOFL-U/m/2ZPCIQBIBwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 16 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1049">Syslog rate limit design</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/ucuacWOFL-U/m/23cP4SPRBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 09 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1041">Persistent loglevel HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/JytoK4xeGuQ/m/1DsNmxQMBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 02 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/HX6Bw4rik64/m/FUUEGXe2AAAJ">OpenPoE</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/HX6Bw4rik64/m/FUUEGXe2AAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 26 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/pnjagsy_qQs/m/GGfaoj2BAQAJ">Secure Boot & Secure upgrade</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/HX6Bw4rik64/m/cGjgwmu5AQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 19 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/1034">SRv6_uSID</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/lBLOkJFJQUA/m/t5wUixWwAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 12 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/VvxlEjdsbUo/m/Y2E8xa71AQAJ">No Meeting</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/lBLOkJFJQUA/m/wnld3xmuAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 05 2022 </td>
<td style="text-align: left; "><a href="https://github.com/Junchao-Mellanox/SONiC/blob/e55d24126d046eb003fedae5f439cf82eea9f239/doc/bulk_counter/bulk_counter.md">SONiC Bulk Counter Design</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/lBLOkJFJQUA/m/0DxlB8lEBwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 28 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/996/files#diff-32984e8e053ae4121b728f8d0c5b034daf4c4bf82a49d0c4a83d513d4dec2618">SONiC gNMI server interface design</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/fVimxR0rFj4/m/eGDp6HEZAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 21 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/978">Packet_I/O Update</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/M-nI368bWls/m/9bL8IU2qAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 14 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/0sdWwfcq0RM/m/UGI8593mBAAJ">SONiC 202205 release update</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/M-nI368bWls/m/dE9iuylZBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 07 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/xCbA9nCrbUg/m/fNBMql8oAQAJ">PIT & Yang schema based event stream via gNMI</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/M-nI368bWls/m/dJhLN9YUBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 31 2022 </td>
<td style="text-align: left; "><a href="https://github.com/clarklee-guizhao/SONiC/blob/pit/doc/pit/Platform_Integration_Test_high_level_design.md">Platform_Integration_Testing</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/CZa5G7B-Q0c/m/luCm7xM4AQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 24 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/Y9EJ3abWM6I/m/wUBdyRaQDQAJ">Active-Active dual ToR</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/arXPyJc68yA/m/QZmv6BWRDQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 17 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/DjHubxeS2jk/m/WjsAPqQUCAAJ">Systemd bootchart Integration & Syslog Source IP config </a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/arXPyJc68yA/m/3tf21uoxAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 10 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/ocYx50Jh2-w/m/8qaAGvpGBQAJ">202205 Release Status</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Hb6jgFns264/m/ibWnQugxAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 03 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/dETXXsCEC8Y/m/hDN9dTXuAgAJ">No Meeting</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Hb6jgFns264/m/GTzOsOExAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Apr 26 2022 </td>
<td style="text-align: left; "><a href="https://github.com/reshmaintel/DASH/blob/main/doc_SAI-Proposal-SAI-PTF.md">SAI PTF</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Hb6jgFns264/m/JRoBik8LAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Apr 19 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/980">Fast-reboot Flow enhancements</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Hb6jgFns264/m/6LpWmY-eAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Apr 12 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/6gL2l9Y9TTE/m/HKWWLALXHwAJ">No Meeting</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Hb6jgFns264/m/gVwS-nKeAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Apr 05 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/s-kLlSYmXxU/m/p07kv7b3AgAJ">No Meeting</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Hb6jgFns264/m/qfewxWmeAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 29 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/950">DSCP/TC Remapping for Tunnel traffic HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Hb6jgFns264/m/OjMoztUkFAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 22 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/rT9kuxISMDY/m/HnsXjo3PAwAJ">SONiC OpenSSL FIPS & CONFIG RELOAD ENHANCEMENT</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Hb6jgFns264/m/NtpUsSVfBAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 15 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/5a5922499b388acafa85dd3c9a64520514e01946/doc/pins/batch_requests_api_hld.md">Batch Requests API HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/wHTTzubzT_g/m/b1-Xs1B7BAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 08 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/8IhgzemkL7o/m/dyZcdNRYAgAJ">House Cleaning</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/wHTTzubzT_g/m/0K698gqNAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Mar 01 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/9bc83902da0ae1a5db01713a5d0a0611fe876897/doc/sonic-build-system/build-enhancements.md">Build-Enhancements</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/wHTTzubzT_g/m/Vi8pLsMYBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 22 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/939 ">auto-techsupport</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/1AwQj0pvAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 15 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/82uKv3NLhK8/m/iCuxSOMqAwAJ">No Meeting</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/nI83itttAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 08 2022 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/bGI6TVQu14s/m/WvBYIFFgAQAJ">Auto Ng & Link training</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/bGI6TVQu14s/m/WvBYIFFgAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Feb 01 2022 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/918">Counter delay via config_db</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/N7d-2DIs0uM/m/RSNbJKSACQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 25 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/915">Add VLAN Stacking</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/7fPaXv6ZBs4/m/xtvkZbYtCAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 18 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/916">Deterministic approach in SONiC for Interface Link bring-up sequence</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/1AwQj0pvAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 11 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/jpNAF8gDBsY/m/ltwqZEkCBQAJ">Password Hardening</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/msRRtXY1BQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jan 04 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/Mn7CWAQnK-E/m/NQ3l22WQDwAJ">No Meeting</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Mn7CWAQnK-E/m/NQ3l22WQDwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 28 2021 </td>
<td style="text-align: left; "><a href="QAJ">No Meeting</a></td>
<td style=""><a href="QAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 21 2021 </td>
<td style="text-align: left; "><a href="QAJ">No Meeting</a></td>
<td style=""><a href="BQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 14 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/IvG0eHbgz0g/m/jNdfNRnsBQAJ">Route Flow Counter</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/5ZOLQny9BQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Dec 07 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/YxpggFhgceQ/m/nrgZlnNMBgAJ">202205 Release Roadmap Discussion</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/YxpggFhgceQ/m/s7zbqz6cBgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 30 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/wiki/Release-Progress-Tracking-202111">202111 Release Tracking</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/FU7R1MIgBwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 23 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/NRwO8IIf-wY/m/ENycp-RXAwAJ">No Meeting</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/NRwO8IIf-wY/m/ENycp-RXAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 16 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/VRG84iUGdks/m/Dk21XXTeAQAJ">Release Discussion</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/VRG84iUGdks/m/M35MjOzhAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 09 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/7OxHUh81Cn8/m/9bwxgiX_BgAJ">Sorted Next Hop List HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/gQMBaRhvAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Nov 02 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/TiEJA0VZ7Gk/m/QfpGWiOIAQAJ">The SONiC-Based Framework for SAI Testing and Integration</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/5ZOLQny9BQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 26 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/P93_-iH5rYw/m/f9RJFtFABQAJ">202111 Release Tracking</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/P93_-iH5rYw/m/f9RJFtFABQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 19 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/0o8gLL4FsFE/m/y2rK_kTKBAAJ">202111 Release Tracking</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/0o8gLL4FsFE/m/DMnN5N8PBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 12 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/iRPEOQUShBo/m/ayJWmkSmDwAJ">NVGRE & Dynamic Policy Based Hashing</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/iRPEOQUShBo/m/vYXC06bODwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Oct 05 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/0o8gLL4FsFE/m/3_OxYGG8AwAJ">CMIS Diagnostics & System Ready Enhancements</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/0o8gLL4FsFE/m/gDce_v3pAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 28 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/xh-AVOv_43o/m/P1KTX3HzBwAJ">Host Interface counters & Guidelines for reference proprietary code</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/u0VX2-72BwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 21 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/DRQvfJumvBU/m/zZFrdrCwAgAJ">SONiC TACACS per command authorization and accounting & MPLS EXP to TC maps</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/M8e-0oUAAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 14 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/861">ECMP Overlay BFD support</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/RE8urq5qTps/m/5rB_nG6YAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Sep 07 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/4iTkG4p9JLk/m/Gi6ElHlfBAAJ">Handle port config change on fly in xcvrd & Reclaim reserved buffer for unused ports </a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/4iTkG4p9JLk/m/Qwg7hC8CAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 31 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/838">Show Running Command Enhancement</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Vckry-Zpmb8/m/fdiad4kFAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 24 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/837">SAG - Static Anycast Gateway</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Vckry-Zpmb8/m/D94UVqWCAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 17 2021 </td>
<td style="text-align: left; "><a href="https://github.com/pins/SONiC/blob/pins-hld/doc/pins/pins_hld.md">PINS HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Vckry-Zpmb8/m/VKf8yVpzAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 10 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/bf657839e521fb71e407df18e566a3e09c7e6958/doc/sfp-refactor/sfp-refactor.md">SONiC_SFP_refactoring HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Vckry-Zpmb8/m/VKf8yVpzAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Aug 03 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/796">Class Based Forwarding HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/Vckry-Zpmb8/m/ZzgxSTtxBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 27 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/oyZdbxPWfm4/m/35arscM1AgAJ">SONiC 202111 feature Discussion</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/Gg9ChA4pBAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 20 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/787">DHCPv6 Relay agent</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/M8iuhAmPBAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 13 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/eU84cgxmUto/m/sS1RAr5xBAAJ">SONiC 202111 Roadmap Discussion</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/M8iuhAmPBAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jul 06 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/W1uyLCxWGh0/m/zPV3n4AbAgAJ">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> Jun 29 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/CXLYy8PEsGU/m/gKqMwSvxAgAJ">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> Jun 22 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/wiki/Release-Progress-Tracking-202106">202106 release updates</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/xOvcHsaJAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 15 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/769">C-CMIS Support in SONiC</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/PP0CLolGBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Jun 08 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/WMZYdyCjNOU/m/VZKCM2XWBwAJ">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> Jun 01 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/blob/312e885c3c19f3e9506cfd10fcc86dbb8eac0309/doc/SAI_failure_handling/SAI_failure_handling.md">SAI Failure Handling</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/nsXfIZnLAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 25 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/vZ13WV8daF4/m/EqgO7nOsAwAJ">SRv6 HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/o2uSq7dYAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 18 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/789">Debug dump utility HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/o2uSq7dYAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 11 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/YbyfeYG7zKA/m/tbEj3JOoAwAJ">SRv6 HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/o2uSq7dYAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 04 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/cd0WwXjCES8">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> April 27 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/699">Generalizing config.bcm support for BRCM silicons</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/gAAtoQhhBgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> April 20 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/761">Event & Alarm Framework HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/kZv3BsplBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> April 13 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/773">Policy Based Hashing HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/iUp0OSy2CgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> April 06 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/-ZOrVten0Zk/m/9_hTQ4p5AQAJ">SONiC BUM control support & SONiC Management Framework "show tech-support" command</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/4ZglXiicAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 30 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/XexKtN2GX4g/m/2cfsuqHSBwAJ">DHCP relay for IPv6 & Recycle port HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/I9DYDUwDCAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 23 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/736">SONiC Generic Update and Rollback HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/n_Ca-hihBwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 16 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/638">Inband Mgmt via mgmt VRF</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/BoFOUc7jAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 09 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/706">MPLS HLD initial revision</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/xeai8vThgRg/m/R99p32TjAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 02 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/738">Weighted ECMP HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/TE4wvbZPdQU/m/Ve6zffYGDAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Febuary 23 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/748">SONiC Yang Model and related libraries</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/TE4wvbZPdQU/m/RZ9EFxAUBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Febuary 16 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/743">cpu queue stats</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/TE4wvbZPdQU/m/j4E5I-zWEwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Febuary 09 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/Gn1wrp68KaY/m/GDJl45Z9EQAJ">Fabric Port Support SONiC/BGP Setup</td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/TE4wvbZPdQU/m/KF5otZevEQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> Febuary 02 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/712">Next hop group split HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/TE4wvbZPdQU/m/eBOM5DxBEQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> January 26 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/5u94fkEyOCc/m/V_apKt10DQAJ">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> January 19 2021 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/732">Port auto negotiation HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/TDHDEiY6CtQ/m/LA-Dk6rsDgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> January 12 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/1RCmOnrmWcs/m/iuF4JqHCDAAJ">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> January 05 2021 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/quu9_w4Slhs/m/-LMzE7zwDQAJ">202012 release update & 202106 Plan</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/dQWJ0WXmt4w/m/35X-sANIDgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> December 29 2020 </td>
<td style="text-align: left; "><a href="">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> December 22 2020 </td>
<td style="text-align: left; "><a href="">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> December 15 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/8JihdTmVjJs/m/DFSmdIgpAwAJ">Status Sync for 202012 Release</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/dQWJ0WXmt4w/m/AkcunqhjAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> December 08 2020 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/646">PMON enhancements for Chassis HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/dQWJ0WXmt4w/m/lk6P0JfLAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> December 01 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/w-DXhTJexIw/m/R2snFG5pCQAJ">No-Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> November 24 2020 </td>
<td style="text-align: left; "><a href="https://github.com/sonic-net/SONiC/pull/682">SONiC Application Extension HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/dQWJ0WXmt4w">MoM</a></td>
</tr>
<tr>
<td style=""> November 17 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/WCiz2P57Kfc/m/74MAwDCNAwAJ">Reboot-cause Telemetry/PCIe monitor service</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/YIO2gma5rrA/m/oSiZJmKwAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> November 10 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/ccepcgn1l98/m/DfbeHX5HAgAJ">No-Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> November 03 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/Jbimrn9-rNU/m/K7pxwAjSCAAJ">SONiC application extension</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/YIO2gma5rrA">MoM</a></td>
</tr>
<tr>
<td style=""> October 27 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/j7Si0vjl_2k/m/HO9YR9SbBgAJ">MACSEC Design</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/LFOkK0TF3j8">MoM</a></td>
</tr>
<tr>
<td style=""> October 20 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/lhtuGbdXy80/m/1BbtP0O5AwAJ">Release 202012 Tracking</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/1dqztyNBjYo/m/QAdDFtfZAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> October 13 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/ud2vfPFVLoA/m/2kS2EErNAAAJ">SONiC Reproducible Build design</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/1dqztyNBjYo/m/D2pOUn39AAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> October 06 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/86PUXADtCGw/m/BRgqhTUfBwAJ">SONiC TPID Configuration Support</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/1dqztyNBjYo/m/A1sqnkthBwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> September 29 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/SEez6qPZCZ8/m/Hig8ZjAPCgAJ">SONiC FW Utility</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/1dqztyNBjYo/m/tYptuLw0CgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> September 22 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/dA7qluOdKLk/m/BmuNQEOMCAAJ">Kuberenetes-support</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/1dqztyNBjYo/m/QAdDFtfZAwAJ">MoM</a></td>
</tr>
<tr>