-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrfc5340.html
7652 lines (5194 loc) · 358 KB
/
rfc5340.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 data-bs-theme="auto" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
RFC 5340 - OSPF for IPv6
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://static.ietf.org/fonts/inter/import.css" rel="stylesheet">
<link href="https://static.ietf.org/fonts/noto-sans-mono/import.css" rel="stylesheet">
<link rel="stylesheet" href="https://www.ietf.org/lib/dt/11.11.0/ietf/css/document_html_referenced.css">
<link rel="stylesheet" href="rfc.css">
<script src="https://www.ietf.org/lib/dt/11.11.0/ietf/js/document_html.js"></script>
<script src="https://www.ietf.org/lib/dt/11.11.0/ietf/js/theme.js"></script>
<link rel="alternate" type="application/atom+xml" title="Document changes" href="/feed/document-changes/draft-ietf-ospf-ospfv3-update/">
<meta name="description"
content="OSPF for IPv6 (RFC 5340, July 2008)"
>
<link rel="apple-touch-icon"
sizes="180x180"
href="https://www.ietf.org/lib/dt/11.11.0/ietf/images/ietf-logo-nor-180.png">
<link rel="icon"
sizes="32x32"
href="https://www.ietf.org/lib/dt/11.11.0/ietf/images/ietf-logo-nor-32.png">
<link rel="icon"
sizes="16x16"
href="https://www.ietf.org/lib/dt/11.11.0/ietf/images/ietf-logo-nor-16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon"
href="https://www.ietf.org/lib/dt/11.11.0/ietf/images/ietf-logo-nor-mask.svg"
color="#ffffff">
<meta name="msapplication-TileColor"
content="#ffffff">
<meta name="theme-color"
content="#ffffff">
<meta property="og:title" content="RFC 5340: OSPF for IPv6">
<meta property="og:url" content="https://datatracker.ietf.org/doc/html/rfc5340">
<link rel="canonical" href="https://datatracker.ietf.org/doc/html/rfc5340">
<meta property="og:site_name" content="IETF Datatracker">
<meta property="og:description" content="This document describes the modifications to OSPF to support version 6 of the Internet Protocol (IPv6). The fundamental mechanisms of OSPF (flooding, Designated Router (DR) election, area support, Short Path First (SPF) calculations, etc.) remain unchanged. However, some changes have been necessary, either due to changes in protocol semantics between IPv4 and IPv6, or simply to handle the increased address size of IPv6. These modifications will necessitate incrementing the protocol version from version 2 to version 3. OSPF for IPv6 is also referred to as OSPF version 3 (OSPFv3). Changes between OSPF for IPv4, OSPF Version 2, and OSPF for IPv6 as described herein include the following. Addressing semantics have been removed from OSPF packets and the basic Link State Advertisements (LSAs). New LSAs have been created to carry IPv6 addresses and prefixes. OSPF now runs on a per-link basis rather than on a per-IP-subnet basis. Flooding scope for LSAs has been generalized. Authentication has been removed from the OSPF protocol and instead relies on IPv6's Authentication Header and Encapsulating Security Payload (ESP). Even with larger IPv6 addresses, most packets in OSPF for IPv6 are almost as compact as those in OSPF for IPv4. Most fields and packet- size limitations present in OSPF for IPv4 have been relaxed. In addition, option handling has been made more flexible. All of OSPF for IPv4's optional capabilities, including demand circuit support and Not-So-Stubby Areas (NSSAs), are also supported in OSPF for IPv6. [STANDARDS-TRACK]">
<meta property="og:type" content="article">
<meta property="og:image" content="https://www.ietf.org/lib/dt/11.11.0/ietf/images/ietf-logo-card.png">
<meta property="og:image:alt" content="Logo of the IETF">
<meta property="article:section" content="IETF - Internet Engineering Task Force">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary_large_image">
<meta property="article:author" content="Dennis Ferguson">
<meta property="article:author" content="Acee Lindem">
<meta property="article:author" content="John Moy">
<meta property="article:published_time" content="2008-07-23">
<style>
.diff-form .select2-selection__rendered {
direction: rtl;
text-align: left;
}
</style>
</head>
<body>
<div class="btn-toolbar sidebar-toolbar position-fixed top-0 end-0 m-2 m-lg-3">
<div class="dropdown">
<button class="btn btn-outline-secondary btn-sm me-1 dropdown-toggle d-flex align-items-center"
id="bd-theme" type="button" aria-expanded="false" data-bs-toggle="dropdown"
aria-label="Toggle theme">
<i class="theme-icon-active bi bi-circle-half"></i>
</button>
<ul class="dropdown-menu" aria-labelledby="bd-theme">
<li>
<button type="button" class="dropdown-item d-flex align-items-center"
data-bs-theme-value="light" aria-pressed="false">
<i class="me-2 opacity-50 theme-icon bi bi-sun-fill"></i>
Light<i class="bi bi-check2 ms-auto d-none"></i>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center"
data-bs-theme-value="dark" aria-pressed="false">
<i class="me-2 opacity-50 theme-icon bi bi-moon-stars-fill"></i>
Dark<i class="bi bi-check2 ms-auto d-none"></i>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center active"
data-bs-theme-value="auto" aria-pressed="true">
<i class="me-2 opacity-50 theme-icon bi bi-circle-half"></i>
Auto<i class="bi bi-check2 ms-auto d-none"></i>
</button>
</li>
</ul>
</div>
<button class="btn btn-outline-secondary btn-sm sidebar-toggle"
type="button"
data-bs-toggle="collapse"
data-bs-target="#sidebar"
aria-expanded="true"
aria-controls="sidebar"
aria-label="Toggle metadata sidebar"
title="Toggle metadata sidebar">
<i class="bi bi-layout-sidebar-reverse sidebar-shown"></i>
<i class="bi bi-arrow-bar-up sidebar-collapsed"></i>
</button>
</div>
<nav class="navbar bg-light-subtle px-1 fixed-top d-print-none d-md-none">
<a class="nav-link ps-1"
href="/doc/rfc5340/">
RFC 5340
<br class="d-sm-none">
<span class="ms-sm-3 badge rounded-pill badge-ps">
Proposed Standard
</span>
</a>
<button class="navbar-toggler p-1"
type="button"
data-bs-toggle="collapse"
data-bs-target="#docinfo-collapse"
aria-controls="docinfo-collapse"
aria-expanded="false"
aria-label="Show document information">
<span class="navbar-toggler-icon small"></span>
</button>
<div class="navbar-nav navbar-nav-scroll overscroll-none collapse pt-1" id="docinfo-collapse">
<div class="bg-light-subtle p-0">
<table class="table table-sm table-borderless small">
<tbody class="meta align-top">
<tr>
<th scope="row"></th>
<th scope="row">Title</th>
<td class="edit"></td>
<td>OSPF for IPv6</td>
</tr>
</tbody>
<tbody class="meta align-top ">
<tr>
<th scope="row">Document</th>
<th scope="row">Document type</th>
<td class="edit"></td>
<td>
<span class="text-success">RFC
<span class="badge rounded-pill badge-ps">Proposed Standard</span>
</span>
<br>July 2008
<br>
<a class="btn btn-primary btn-sm my-1"
href="https://www.rfc-editor.org/errata_search.php?rfc=5340" title="Click to view errata." rel="nofollow">
View errata
</a>
<a class="btn btn-sm btn-warning"
title="Click to report an error in the document."
href="https://www.rfc-editor.org/errata.php#reportnew"
target="_blank">
Report errata
</a>
<div>Updated by <a href="/doc/html/rfc6845" title="OSPF Hybrid Broadcast and Point-to-Multipoint Interface Type">RFC 6845</a>, <a href="/doc/html/rfc6860" title="Hiding Transit-Only Networks in OSPF">RFC 6860</a>, <a href="/doc/html/rfc8362" title="OSPFv3 Link State Advertisement (LSA) Extensibility">RFC 8362</a>, <a href="/doc/html/rfc7503" title="OSPFv3 Autoconfiguration">RFC 7503</a>, <a href="/doc/html/rfc9454" title="Update to OSPF Terminology">RFC 9454</a></div>
<div>Obsoletes <a href="/doc/html/rfc2740" title="OSPF for IPv6">RFC 2740</a></div>
<div>
Was
<a href="/doc/draft-ietf-ospf-ospfv3-update/">draft-ietf-ospf-ospfv3-update</a>
(<a href="/wg/ospf/about/">ospf WG</a>)
</div>
</td>
</tr>
<tr>
<td></td>
<th scope="row">Select version</th>
<td class="edit"></td>
<td>
<ul class="revision-list pagination pagination-sm text-center flex-wrap my-0">
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-00"
>
00
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-01"
rel="nofollow">
01
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-02"
rel="nofollow">
02
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-03"
rel="nofollow">
03
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-04"
rel="nofollow">
04
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-05"
rel="nofollow">
05
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-06"
rel="nofollow">
06
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-07"
rel="nofollow">
07
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-08"
rel="nofollow">
08
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-09"
rel="nofollow">
09
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-10"
rel="nofollow">
10
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-11"
rel="nofollow">
11
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-12"
rel="nofollow">
12
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-13"
rel="nofollow">
13
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-14"
rel="nofollow">
14
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-15"
rel="nofollow">
15
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-16"
rel="nofollow">
16
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-17"
rel="nofollow">
17
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-18"
rel="nofollow">
18
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-19"
rel="nofollow">
19
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-20"
rel="nofollow">
20
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-21"
rel="nofollow">
21
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-22"
rel="nofollow">
22
</a>
</li>
<li class="page-item ">
<a class="page-link"
href="/doc/html/draft-ietf-ospf-ospfv3-update-23"
>
23
</a>
</li>
<li class="page-item rfc active">
<a class="page-link"
href="/doc/html/rfc5340">
RFC 5340
</a>
</li>
</ul>
</td>
</tr>
<tr>
<td></td>
<th scope="row">Compare versions</th>
<td class="edit"></td>
<td>
<form class="form-horizontal diff-form"
action="https://author-tools.ietf.org/iddiff"
method="get"
target="_blank">
<select class="form-select form-select-sm mb-1 select2-field"
data-max-entries="1"
data-width="resolve"
data-allow-clear="false"
data-minimum-input-length="0"
aria-label="From revision"
name="url1">
<option value="rfc5340"
>
RFC 5340
</option>
<option value="draft-ietf-ospf-ospfv3-update-23"
>
draft-ietf-ospf-ospfv3-update-23
</option>
<option value="draft-ietf-ospf-ospfv3-update-22"
selected
>
draft-ietf-ospf-ospfv3-update-22
</option>
<option value="draft-ietf-ospf-ospfv3-update-21"
>
draft-ietf-ospf-ospfv3-update-21
</option>
<option value="draft-ietf-ospf-ospfv3-update-20"
>
draft-ietf-ospf-ospfv3-update-20
</option>
<option value="draft-ietf-ospf-ospfv3-update-19"
>
draft-ietf-ospf-ospfv3-update-19
</option>
<option value="draft-ietf-ospf-ospfv3-update-18"
>
draft-ietf-ospf-ospfv3-update-18
</option>
<option value="draft-ietf-ospf-ospfv3-update-17"
>
draft-ietf-ospf-ospfv3-update-17
</option>
<option value="draft-ietf-ospf-ospfv3-update-16"
>
draft-ietf-ospf-ospfv3-update-16
</option>
<option value="draft-ietf-ospf-ospfv3-update-15"
>
draft-ietf-ospf-ospfv3-update-15
</option>
<option value="draft-ietf-ospf-ospfv3-update-14"
>
draft-ietf-ospf-ospfv3-update-14
</option>
<option value="draft-ietf-ospf-ospfv3-update-13"
>
draft-ietf-ospf-ospfv3-update-13
</option>
<option value="draft-ietf-ospf-ospfv3-update-12"
>
draft-ietf-ospf-ospfv3-update-12
</option>
<option value="draft-ietf-ospf-ospfv3-update-11"
>
draft-ietf-ospf-ospfv3-update-11
</option>
<option value="draft-ietf-ospf-ospfv3-update-10"
>
draft-ietf-ospf-ospfv3-update-10
</option>
<option value="draft-ietf-ospf-ospfv3-update-09"
>
draft-ietf-ospf-ospfv3-update-09
</option>
<option value="draft-ietf-ospf-ospfv3-update-08"
>
draft-ietf-ospf-ospfv3-update-08
</option>
<option value="draft-ietf-ospf-ospfv3-update-07"
>
draft-ietf-ospf-ospfv3-update-07
</option>
<option value="draft-ietf-ospf-ospfv3-update-06"
>
draft-ietf-ospf-ospfv3-update-06
</option>
<option value="draft-ietf-ospf-ospfv3-update-05"
>
draft-ietf-ospf-ospfv3-update-05
</option>
<option value="draft-ietf-ospf-ospfv3-update-04"
>
draft-ietf-ospf-ospfv3-update-04
</option>
<option value="draft-ietf-ospf-ospfv3-update-03"
>
draft-ietf-ospf-ospfv3-update-03
</option>
<option value="draft-ietf-ospf-ospfv3-update-02"
>
draft-ietf-ospf-ospfv3-update-02
</option>
<option value="draft-ietf-ospf-ospfv3-update-01"
>
draft-ietf-ospf-ospfv3-update-01
</option>
<option value="draft-ietf-ospf-ospfv3-update-00"
>
draft-ietf-ospf-ospfv3-update-00
</option>
</select>
<select class="form-select form-select-sm mb-1 select2-field"
data-max-entries="1"
data-width="resolve"
data-allow-clear="false"
data-minimum-input-length="0"
aria-label="To revision"
name="url2">
<option value="rfc5340"
selected
>
RFC 5340
</option>
<option value="draft-ietf-ospf-ospfv3-update-23"
>
draft-ietf-ospf-ospfv3-update-23
</option>
<option value="draft-ietf-ospf-ospfv3-update-22"
>
draft-ietf-ospf-ospfv3-update-22
</option>
<option value="draft-ietf-ospf-ospfv3-update-21"
>
draft-ietf-ospf-ospfv3-update-21
</option>
<option value="draft-ietf-ospf-ospfv3-update-20"
>
draft-ietf-ospf-ospfv3-update-20
</option>
<option value="draft-ietf-ospf-ospfv3-update-19"
>
draft-ietf-ospf-ospfv3-update-19
</option>
<option value="draft-ietf-ospf-ospfv3-update-18"
>
draft-ietf-ospf-ospfv3-update-18
</option>
<option value="draft-ietf-ospf-ospfv3-update-17"
>
draft-ietf-ospf-ospfv3-update-17
</option>
<option value="draft-ietf-ospf-ospfv3-update-16"
>
draft-ietf-ospf-ospfv3-update-16
</option>
<option value="draft-ietf-ospf-ospfv3-update-15"
>
draft-ietf-ospf-ospfv3-update-15
</option>
<option value="draft-ietf-ospf-ospfv3-update-14"
>
draft-ietf-ospf-ospfv3-update-14
</option>
<option value="draft-ietf-ospf-ospfv3-update-13"
>
draft-ietf-ospf-ospfv3-update-13
</option>
<option value="draft-ietf-ospf-ospfv3-update-12"
>
draft-ietf-ospf-ospfv3-update-12
</option>
<option value="draft-ietf-ospf-ospfv3-update-11"
>
draft-ietf-ospf-ospfv3-update-11
</option>
<option value="draft-ietf-ospf-ospfv3-update-10"
>
draft-ietf-ospf-ospfv3-update-10
</option>
<option value="draft-ietf-ospf-ospfv3-update-09"
>
draft-ietf-ospf-ospfv3-update-09
</option>
<option value="draft-ietf-ospf-ospfv3-update-08"
>
draft-ietf-ospf-ospfv3-update-08
</option>
<option value="draft-ietf-ospf-ospfv3-update-07"
>
draft-ietf-ospf-ospfv3-update-07
</option>
<option value="draft-ietf-ospf-ospfv3-update-06"
>
draft-ietf-ospf-ospfv3-update-06
</option>
<option value="draft-ietf-ospf-ospfv3-update-05"
>
draft-ietf-ospf-ospfv3-update-05
</option>
<option value="draft-ietf-ospf-ospfv3-update-04"
>
draft-ietf-ospf-ospfv3-update-04
</option>
<option value="draft-ietf-ospf-ospfv3-update-03"
>
draft-ietf-ospf-ospfv3-update-03
</option>
<option value="draft-ietf-ospf-ospfv3-update-02"
>
draft-ietf-ospf-ospfv3-update-02
</option>
<option value="draft-ietf-ospf-ospfv3-update-01"
>
draft-ietf-ospf-ospfv3-update-01
</option>
<option value="draft-ietf-ospf-ospfv3-update-00"
>
draft-ietf-ospf-ospfv3-update-00
</option>
</select>
<button type="submit"
class="btn btn-primary btn-sm"
value="--html"
name="difftype">
Side-by-side
</button>
<button type="submit"
class="btn btn-primary btn-sm"
value="--hwdiff"
name="difftype">
Inline
</button>
</form>
</td>
</tr>
<tr>
<td></td>
<th scope="row">Authors</th>
<td class="edit">
</td>
<td>