forked from sonic-net/SONiC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MoM.html
executable file
·738 lines (720 loc) · 49.6 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
<!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=""> Aug 31 2021 </td>
<td style="text-align: left; "><a href="https://github.com/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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/Azure/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>
<td style=""> September 15 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/9lNPeUm9g-A/m/pD5vUeYhBAAJ">No-Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> September 08 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/QjcZdQRzUwE/m/Ho35WE8VAgAJ">Distributed VOQ HLD</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/u4cyM7Xbmbk/m/PkLNUVs0AgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> September 01 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/9GjmaBnpJJw/m/X4294Q5HBgAJ">SONiC Console Switch</a></td>
<td style=""><a href="https://groups.google.com/g/sonicproject/c/u4cyM7Xbmbk">MoM</a></td>
</tr>
<tr>
<td style=""> August 25 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/8B7uaOK_pqg/5JA5IyR_CgAJ">Code refactoring to improve service container warm resart</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/hLnYKp8ep6s/rYJVrmsHCwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> August 18 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/XvU8pgeOHic/2aoClSL6AgAJ">Distributed forwarding in a VOQ architecture HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/tttx_2seijI/quXvaJBoAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> August 11 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/HSK3NDFV4Bk/XjR7wUuEBQAJ">SONiC Entity MIB Extension HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/tttx_2seijI/EIRQVyq-AQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> August 04 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/lJOzUrTjsd4/gbkm4vBDAQAJ">202012 Release Planning</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/tttx_2seijI/EIRQVyq-AQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> July 28 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/vEkyPsSq3Y8/4BdxirxzDgAJ">Code Coverage Rate HLD </a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/tttx_2seijI/r6LmjFSnDgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> July 21 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/ZE_LIX8vWgY/4pDEsmzVAAAJ">Multi-ASIC HLD </a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/tttx_2seijI/dV4vfSAHAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> July 14 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/_Jaed_rzGio/ASwSAEt7BQAJ">202006 CLI & Configuration guide updates</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/tttx_2seijI/bR_Vtn3YBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> July 07 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/ZhC0DJelLNc/ceCYlAVYAwAJ">202006 Release and Plan for 202012 Release</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/fygnXbnJIg0/1H7g_bugAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> June 30 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/zZ8AD0T3Q_A/ZspGoZtUBAAJ">No Meeting</a></td>
<td style=""><a href=""></a></td>
</tr>
<tr>
<td style=""> June 23 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/y687lheQK90/AJsYLLIcCgAJ"> 202006 Release Progress</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/tdWB7aHNvS8/ndEJTYw_BAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> June 16 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/7vzisk0-aV0/XFVp9lrSBwAJ">Enhancement to Optical transceiver model - Dell</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/qHRvjg4enEs/ZHo3U44QCAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> June 09 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/CCPbv2D5xY4/m/Uv3GmSigAwAJ">PDDF v2.0</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/qHRvjg4enEs/ZHo3U44QCAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> June 02 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/g/sonicproject/c/p_qFJzF1GXo/m/RMNjkaaRAgAJ">BGP Unnumbered & SONiC system health monitoring HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/ZY-NKRbVIB8/6aw28pMzAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 26 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/kie73opucVM/00jQ7ZMTAQAJ">EVPN VXLAN HLD - BRCM</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/mugeCjoTG6M/914dW3ybAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 19 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/ETQE4QV_Pek/LRAMh3u0AgAJ">Dynamic buffer calculation HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/qoIx6euSKMM/MDGknJUWBwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 12 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/bJFGDuMSgWE/kWPm6MVbAwAJ">SONiC Configuration Replace HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/ZIJSQxGaHtc/DeXNjZPYAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> May 05 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/0p70tTGBkqU/SHOL_fNaAQAJ">MLAG & FirmWare utils</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/ZeWjM4KkhaA/tLJ252vIAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> April 28 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/7Ms7s6MTK7Y/cQ8WjjQ5BQAJ">Fine grained ECMP & L3 kernel programming enhancement</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/HJJjyX6HiFE/akPKkzKJBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> April 21 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/bgTMom0H7B8/DiWgQzAOAwAJ">Management Framework HLD - Phase II - BRCM</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/G45tKann434/tEyUGsNqAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> April 14 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/zLJEh38udpg/67yxvJ5DAQAJ">D-Bus Host to Container Communications HLD - Dell</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/8mAzRI5kAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> April 07 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/g1WgvqWTYqk/prPkGflQAQAJ">AAA HLD - Dell</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/BCyK0kcLAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 31 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/l8UtGXpHeEw/8tDZScGCBwAJ">System Health and System LED Monitoring - MLNX</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/Fj4QZ1d6BwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 24 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/-VtU0ELxVI0/pNB48bEeBgAJ">SONiC Port mirroring HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/xgHx8yJbBgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 17 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/aUrRh5iXL8I/3Y2pNGvjAwAJ">Add QoS Scheduler and Shaper</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/ILxH0MQ0BAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> March 10 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/AEYBv351PBk/QB27q0zhAQAJ">Monitoring and Auto-Mitigating Unhealthy Containers in SONiC</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/UMUMu80OAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> FEBRUARY 25 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/wMLMPDdTQxY/3UzcfYPQBQAJ">Testbed v2 - MSFT & Community Tests -Aviz</a></td>
<td style=""><a href="https://groups.google.com/forum/#!msg/sonicproject/vu3ubpwXohg/vDF2gOgiBgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> FEBRUARY 11 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/YotaaE9J8z4/1-4MN8dLAgAJ">SONiC Line card Hot Swap - Inspur</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/22HHv8W2AgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> FEBRUARY 04 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/WmpLoRypYxI/n7ONGQxHAwAJ">Debian 10 buster kernel upgrade 202006 release</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/axAEHnB1AwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JANUARY 28 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/WgWmYmN12yY/doyvvfZ3AQAJ">Update on Pre-OCP summit workshop and hackathon schedule</a></td>
<td style=""><a href=""> </a></td>
</tr>
<tr>
<td style=""> JANUARY 14 2020 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/voWhj2un4KM/PLT2NWisCwAJ">Hackathon & New Workgroups</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/iULp6jLGCwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> DECEMBER 17 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/3A538YMAKxg/Z6NKjTjlAQAJ">PCI-e diag design</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/o0jA89kHAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> DECEMBER 10 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/jIIExDRxhhU/OVipd-eyAgAJ">201911 Release Tracking status & OCP planning</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/4TuJlLbeAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> DECEMBER 03 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/4q12-8TG6YI/K3B8o4eQAAAJ">201911 Release Tracking status</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/pTMrR1eAAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> NOVEMBER 26 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/4ZDMk9hCyXM/T0n4OXdFCAAJ"> 201911 Release Tracking status</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/V_vxX0VmCAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> NOVEMBER 19 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/2Uc3hbEEzB0/Dpg7-p5sBAAJ">Thermal control design</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/DRgj9ckzAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> NOVEMBER 12 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/46l6qeAxZFs/aKpBw5NPBQAJ">DPKG Caching Framework</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/vu3ubpwXohg/vk0gAOw4BAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> NOVEMBER 05 2019 </td>
<td style="text-align: left; "><a href="">Ingress Discards Verification & DPKG Caching Framework </a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/gWZnvDRa0bI/rBaXKchABAAJ">MoM</a></td>
</tr>
<tr>
<td style="">OCTOBER 29 2019</td>
<td style=" text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/kYhv22WnvxU/JRugzziRAwAJ">RADIUS HLD & DPKG local caching</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/gWZnvDRa0bI/utAq2wC2AwAJ">MoM</a></td>
</tr>
<tr>
<td style="">OCTOBER 22 2019</td>
<td style=" text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/9K8GJzf5OSY/tBP_toAzDAAJ">VRRP HLD & Release progress</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/gWZnvDRa0bI/N77TFQR3DAAJ">MoM</a></td>
</tr>
<tr>
<td style="">OCTOBER 15 2019</td>
<td style=" text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/9r6f05_mKJ4/4EY4DlPJDQAJ">Tech support data export and core file manager HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/gWZnvDRa0bI/i6RKWL1YDgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> OCTOBER 08 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/IUZofefxMM4/SCBf3q_7CgAJ">Review of 201910 release status</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/kST4pB3k-Hw/3awNfhoxCwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> SEPTEMBER 24 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/jznL7kDtfUM/RiQnZ-BsAwAJ">Dynamic Port BreakOut - LKND </a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/kST4pB3k-Hw/c-cL03PhAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> SEPTEMBER 17 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/eYQfzDEHoX8/_YlNF8UuAgAJ">Firmware Utils</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/kST4pB3k-Hw/0oBIxRdhAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> SEPTEMBER 10 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/GHNSPXLzQPg/UQa58x6pAQAJ">Drop Counters HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/kST4pB3k-Hw/1fV9xmnzAQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> SEPTEMBER 03 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/3SS_yKW5x6w/84GHcW2DAAAJ">BGP Error handling</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/kST4pB3k-Hw/k4W0-emUAAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> AUGUST 27 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/5hxbFR49XcU/FOXtUdJMBQAJ">Dynamic Port BreakOut HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/kST4pB3k-Hw/Og30tXkLBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> AUGUST 20 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/IAiI9xiI1tg/r7Gub2plDgAJ">MC-LAG HLD - Nephos</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/zjiFd1Ucq4M/5CP9tTv6BAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> AUGUST 13 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/qFg3JLx3GNs/tqewTFyUEgAJ">Mgmt Framework</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/lbrPQVlwIUE/nySgwfDbEgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> AUGUST 06 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/OoyQAmOWZeY/VODiE2xbFwAJ">Sub port interface high level design</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/0tLp3Bj9cwY/n_ImBRosEQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JULY 30 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/9f89yER06QI/XueGtd6BEwAJ">TAM features</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/0tLp3Bj9cwY/it_ijeWXFQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JULY 23 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/6nNSn0p4hrc/-gR3Q27qDgAJ">Debug Framework </a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/0tLp3Bj9cwY/fo0Ot8lhEwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JULY 16 2019 </td>
<td style="text-align: left; "><a href="">Egress Mirror support and ACL </a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/4PiktewuBAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JULY 09 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/JRjW44QmWt4/5HTUWIMvAgAJ">PDE (Platform Development Environment) /PDDF (Platform Driver Development Framework)</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/cGuejU4IAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JULY 02 2019 </td>
<td style="text-align: left; "><a href="">L3 Performance enhancements - BRCM</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/9odLb9xLCwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JUNE 25 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/ME9pU7LqWmw/icbSZMzGAgAJ">VRF design discussion - Nephos</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/4A1q37YyBAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JUNE 18 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/bH9RTgtLfN8/Y5KViL4pBwAJ">Error Handling - BRCM </a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/XQMYyzUzAgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JUNE 11 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/6aYXplYtHWU/uiePa3dNBQAJ"> sFlow HLD </a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/2KDCMovRBQAJ">MoM</a></td>
</tr>
<tr>
<td style=""> JUNE 04 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/Z2uWPnCLh98/e7QWwMHeCAAJ">STP/PVST and NAT HLD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/fOzxshCgCgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> MAY 28 2019 </td>
<td style="text-align: left; "><a href="">MLAG Design</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/qIALvG-cBgAJ">MoM</a></td>
</tr>
<tr>
<td style=""> MAY 21 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/GVUGCJI0Edw/FBoggAAEAwAJ"> L2 Forwarding Enhancements & BFD</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/HrnH74luAwAJ">MoM</a></td>
</tr>
<tr>
<td style=""> MAY 07 2019 </td>
<td style="text-align: left; "><a href="">SONiC 201908 release Planning</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/n0fkpf1OeYs/9W8XagCFAAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> APRIL 23 2019 </td>
<td style="text-align: left; "><a href="https://groups.google.com/d/msg/sonicproject/9CLjwobEsIA/q9_HgfjiCQAJ"> Platform Support Tests and SSD Diagnostic tool by MLNX</a></td>
<td style=""><a href="">MoM</a></td>
</tr>
<tr>
<td style=""> APRIL 16 2019 </td>
<td style="text-align: left; "><a href=""> ZTP Feature Proposal</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/Hfcb_5OpRqU/CNMsjxYTCAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> APRIL 09 2019 </td>
<td style="text-align: left; "><a href="">SONiC test frame work enhancemen</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/tUWPTNjovlc/zj-02jcTCAAJ">MoM</a></td>
</tr>
<tr>
<td style=""> MARCH 26 2019 </td>
<td style="text-align: left; "><a href=""> KVM to run SONiC image</a></td>
<td style=""><a href="https://groups.google.com/d/msg/sonicproject/yWgXv3tZ7EM/XABmnYl5BAAJ">MoM</a></td>
</tr>
</table>
</div>
</section>
<!-- End MoM Table -->
<!-- Start footer -->
<footer id="mu-footer">
<!-- start footer bottom -->
<div class="mu-footer-bottom">
<div class="container">
<div class="mu-footer-bottom-area">
</div>
</div>
</div>
<!-- end footer bottom -->
</footer>
<!-- End footer -->
<!-- jQuery library -->
<script src="assets/js/jquery.min.js"></script>
<script type="text/javascript">
$("#mu-menu").load("menu.html");
</script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="assets/js/bootstrap.js"></script>
<!-- Slick slider -->
<script type="text/javascript" src="assets/js/slick.js"></script>
<!-- Counter -->
<script type="text/javascript" src="assets/js/waypoints.js"></script>
<script type="text/javascript" src="assets/js/jquery.counterup.js"></script>
<!-- Mixit slider -->
<script type="text/javascript" src="assets/js/jquery.mixitup.js"></script>
<!-- Add fancyBox -->
<script type="text/javascript" src="assets/js/jquery.fancybox.pack.js"></script>
<!-- Custom js -->
<script src="assets/js/custom.js"></script>
</body>
</html>