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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
|
<html>
<head>
<title>RFC-Editor queue</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859">
</head>
<body bgcolor="#FFFFFF" onLoad="">
<TABLE border=0 cellPadding=0 cellSpacing=0 height=580 width=677 mm:layoutgroup="true">
<TBODY>
<tr>
<TD height=87 valign=top width=677>
<hr>
<img src="header_queue.gif">
</td>
</tr>
<tr>
<TD height=54 vAlign=top width=677>
<hr>
<TABLE border=1 cellSpacing=2 width=677 name="RFC-table">
<TBODY>
<TR bgcolor=#0000ff>
<TD height=24 width=90>
<DIV align=center><A href="index.html">
<FONT color=#ffffff face="Arial, Helvetica, sans-serif" size=2>RFC-ED<br>HOME</FONT></A></DIV></TD>
<TD bgColor=#0000ff height=24 width=76>
<DIV align=center><A href="news.html">
<FONT color=#ffffff face="Arial, Helvetica, sans-serif" size=2>NEWS</FONT></A></DIV></TD>
<TD bgColor=#0000ff height=24 width=108>
<DIV align=center><A href="rfc.html">
<FONT color=#ffffff face="Arial, Helvetica, sans-serif" size=2>RFC<br>DATABASE </FONT></A></DIV></TD>
<TD bgColor=#0000ff height=24 width=86>
<DIV align=center><A href="rfcsearch.html">
<FONT color=#ffffff face="Arial, Helvetica, sans-serif" size=2>RFC<br>SEARCH</FONT></A></DIV></TD>
<TD bgColor=#0000ff height=24 width=90>
<DIV align=center><A href="errata.php">
<FONT color=#ffffff face="Arial, Helvetica, sans-serif" size=2>RFC<br>ERRATA</FONT></A></DIV></TD>
<TD bgColor=#0000ff height=24 width=90>
<DIV align=center><A href="idsearch.html">
<FONT color=#ffffff face="Arial, Helvetica, sans-serif" size=2>I-D<br>SEARCH</FONT></A></DIV></TD>
<TD bgColor=#0000ff height=24 width=91>
<DIV align=center><A href="http://www.ietf.org/">
<FONT color=#ffffff face="Arial, Helvetica, sans-serif" size=2>IETF<br>HOME</FONT></A></DIV></TD></TR>
</TBODY>
</TABLE>
<HR>
<p><b>Last updated: 2012/2/27</b></p>
<p>
<a href="http://www.rfc-editor.org/CurrQstats.txt"><b>Summary Statistics</b></a>
on queue states.</p>
<hr>
<p><h3>Format of Queue Entry:</h3></p>
<P>
<UL>
<LI>
Date Received by RFC Editor (yyyy/mm/dd)     Internet-Draft String
<LI>
State Name
<LI>
REF (list of normative references with status) [if any]
<LI>
Document Author(s)
<LI>
Document Title
<LI>
Document size in Bytes (approximate)
<LI>
Working Group [if any]
</UL></P>
<hr>
<p>STATE NAMES:</p>
<P><UL>
<LI>
AUTH = Awaiting Author Action
<LI>
AUTH48 = Awaiting final author approval
<LI>
EDIT = Approved by the stream manager (e.g., IESG, IAB, IRSG, ISE), awaiting processing and publishing
<LI>
I = Independent Submission
<LI>
IANA = RFC-Editor/IANA Registration Coordination
<LI>
IESG = Holding for IESG Action
<LI>
ISR = Independent Submission Review by the ISE
<LI>
ISR-AUTH = Independent Submission awaiting author update,
or in discussion between author and ISE
<LI>
REF = Holding for normative reference (followed by I-D
string of referenced document)
<LI>
RFC-EDITOR = Awaiting final rfc-editor review before AUTH48
<LI>
TO = Time-out period during which the IESG reviews document for conflict/concurrence with other IETF working group work
(followed by date)
<LI>
MISSREF = Awaiting missing normative reference.
</UL></P>
<p>** For more detailed information on states, please see the
<a href="ftp://ftp.rfc-editor.org/in-notes/rfc-editor/rfc-editor-process.gif"> RFC Editor Process Flow Chart</a>.
<hr>
<pre>
-------------------------------------------------------------------
IAB DOCUMENTS (by date received)
-------------------------------------------------------------------
<a name="draft-iab-ise-model"></a>
2012-01-26 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-iab-ise-model-07.txt">draft-iab-ise-model-07.txt</a>
EDIT
N. Brownlee, Ed., IAB
Independent Submission Editor Model
Bytes: 11573
Working Group: IAB
<a name="draft-iab-smart-object-workshop"></a>
2012-01-27 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-iab-smart-object-workshop-09.txt">draft-iab-smart-object-workshop-09.txt</a>
EDIT
H. Tschofenig, J. Arkko
Report from the 'Interconnecting Smart Objects with the Internet' Workshop, 25th March 2011, Prague
Bytes: 75660
Working Group: IAB
-------------------------------------------------------------------
IESG DOCUMENTS (by date received)
-------------------------------------------------------------------
-------------------------------------------------------------------
WORKING GROUP STANDARDS TRACK (by date received)
-------------------------------------------------------------------
<a name="draft-ietf-mip6-bootstrapping-integrated-dhc"></a>
2008-04-30 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-mip6-bootstrapping-integrated-dhc-06.txt">draft-ietf-mip6-bootstrapping-integrated-dhc-06.txt</a>
EDIT
REF draft-ietf-mip6-hiopt IN-QUEUE
K. Chowdhury, A. Yegin
MIP6-bootstrapping for the Integrated Scenario
Bytes: 30489
Working Group: Mobility for IPv6
<a name="draft-ietf-mip6-hiopt"></a>
2008-05-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-mip6-hiopt-17.txt">draft-ietf-mip6-hiopt-17.txt</a>
IESG
REF draft-ietf-mip6-bootstrapping-integrated-dhc IN-QUEUE
H. Jang, A. Yegin, K. Chowdhury, J. Choi
DHCP Options for Home Information Discovery in MIPv6
Bytes: 42383
Working Group: Mobility for IPv6
<a name="draft-ietf-xcon-event-package"></a>
2009-03-02 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-xcon-event-package-01.txt">draft-ietf-xcon-event-package-01.txt</a>
AUTH48
REF draft-ietf-xcon-common-data-model IN-QUEUE
G. Camarillo, S. Srinivasan, R. Even, J. Urpalainen
Conference Event Package Data Format Extension for Centralized Conferencing (XCON)
Bytes: 28972
Working Group: Centralized Conferencing
<a name="draft-ietf-sipping-policy-package"></a>
2010-03-24 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-sipping-policy-package-08.txt">draft-ietf-sipping-policy-package-08.txt</a>
MISSREF
REF draft-ietf-sip-session-policy-framework IN-QUEUE
draft-ietf-sipping-media-policy-dataset NOT-RECEIVED
V. Hilt, G. Camarillo
A Session Initiation Protocol (SIP) Event Package for Session-Specific Session Policies
Bytes: 43940
Working Group: Session Initiation Proposal Investigation
<a name="draft-ietf-ipfix-export-per-sctp-stream"></a>
2010-07-15 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-ipfix-export-per-sctp-stream-08.txt">draft-ietf-ipfix-export-per-sctp-stream-08.txt</a>
AUTH48
REF draft-ietf-tsvwg-sctp-strrst IN-QUEUE
B. Claise, P. Aitken, A. Johnson, G. Muenz
IPFIX Export per SCTP Stream
Bytes: 58667
Working Group: IP Flow Information Export
<a name="draft-ietf-mip4-generic-notification-message"></a>
2010-10-26 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-mip4-generic-notification-message-16.txt">draft-ietf-mip4-generic-notification-message-16.txt</a>
AUTH48
H. Deng, H. Levkowetz, V. Devarapalli, S. Gundavelli, B. Haley
Generic Notification Message for Mobile IPv4
Bytes: 77966
Working Group: Mobility for IPv4
<a name="draft-ietf-mediactrl-mixer-control-package"></a>
2011-01-11 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-mediactrl-mixer-control-package-14.txt">draft-ietf-mediactrl-mixer-control-package-14.txt</a>
AUTH48
REF draft-ietf-xcon-common-data-model IN-QUEUE
S. McGlashan, T. Melanchuk, C. Boulton
A Mixer Control Package for the Media Control Channel Framework
Bytes: 206373
Working Group: Media Server Control
<a name="draft-ietf-sip-session-policy-framework"></a>
2011-02-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-sip-session-policy-framework-10.txt">draft-ietf-sip-session-policy-framework-10.txt</a>
MISSREF
REF draft-ietf-sipping-media-policy-dataset NOT-RECEIVED
draft-ietf-sipping-policy-package IN-QUEUE
V. Hilt, G. Camarillo, J. Rosenberg
A Framework for Session Initiation Protocol (SIP) Session Policies
Bytes: 95310
Working Group: Session Initiation Protocol
<a name="draft-ietf-roll-routing-metrics"></a>
2011-02-25 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-roll-routing-metrics-18.txt">draft-ietf-roll-routing-metrics-18.txt</a>
RFC-EDITOR
REF draft-ietf-roll-rpl IN-QUEUE
JP. Vasseur, Ed., M. Kim, Ed., K. Pister, N. Dejean, D. Barthel
Routing Metrics used for Path Calculation in Low Power and Lossy Networks
Bytes: 66958
Working Group: Routing Over Low power and Lossy networks
<a name="draft-ietf-roll-rpl"></a>
2011-03-29 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-roll-rpl-19.txt">draft-ietf-roll-rpl-19.txt</a>
RFC-EDITOR
REF draft-ietf-6man-rpl-option IN-QUEUE
draft-ietf-6man-rpl-routing-header IN-QUEUE
draft-ietf-roll-of0 IN-QUEUE
draft-ietf-roll-routing-metrics IN-QUEUE
T. Winter, Ed., P. Thubert, Ed., A. Brandt, J. Hui, R. Kelsey, P. Levis, K. Pister, R. Struik, JP. Vasseur, R. Alexander
RPL: IPv6 Routing Protocol for Low power and Lossy Networks
Bytes: 362482
Working Group: Routing Over Low power and Lossy networks
<a name="draft-ietf-isis-ieee-aq"></a>
2011-04-11 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-isis-ieee-aq-05.txt">draft-ietf-isis-ieee-aq-05.txt</a>
MISSREF
REF IEEE802.1aq NOT-RECEIVED
D. Fedyk, Ed., P. Ashwood-Smith, Ed., D. Allan, A. Bragg, P. Unbehagen
IS-IS Extensions Supporting IEEE 802.1aq Shortest Path Bridging
Bytes: 94525
Working Group: IS-IS for IP Internets
<a name="draft-ietf-isis-genapp"></a>
2011-04-12 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-isis-genapp-04.txt">draft-ietf-isis-genapp-04.txt</a>
MISSREF
REF draft-ietf-isis-mi NOT-RECEIVED
L. Ginsberg, S. Previdi, M. Shand
Advertising Generic Information in IS-IS
Bytes: 23545
Working Group: IS-IS for IP Internets
<a name="draft-ietf-pwe3-fc-encap"></a>
2011-05-05 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-pwe3-fc-encap-16.txt">draft-ietf-pwe3-fc-encap-16.txt</a>
MISSREF
REF ANSI-FC-BB-6 NOT-RECEIVED
D. Black, Ed., L. Dunbar, Ed., M. Roth, R. Solomon
Encapsulation Methods for Transport of Fibre Channel Traffic over MPLS Networks
Bytes: 53003
Working Group: Pseudowire Emulation Edge to Edge
<a name="draft-ietf-dime-capablities-update"></a>
2011-05-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-dime-capablities-update-07.txt">draft-ietf-dime-capablities-update-07.txt</a>
MISSREF
REF draft-ietf-dime-rfc3588bis NOT-RECEIVED
K. Jiao, G. Zorn
The Diameter Capabilities Update Application
Bytes: 13325
Working Group: Diameter Maintanence and Extensions
<a name="draft-ietf-ipfix-configuration-model"></a>
2011-07-18 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-ipfix-configuration-model-10.txt">draft-ietf-ipfix-configuration-model-10.txt</a>
MISSREF
REF draft-ietf-ipfix-psamp-mib NOT-RECEIVED
G. Muenz, B. Claise, P. Aitken
Configuration Data Model for IPFIX and PSAMP
Bytes: 278935
Working Group: IP Flow Information Export
<a name="draft-ietf-dime-local-keytran"></a>
2011-08-30 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-dime-local-keytran-14.txt">draft-ietf-dime-local-keytran-14.txt</a>
MISSREF
REF draft-ietf-dime-rfc3588bis NOT-RECEIVED
G. Zorn, Q. Wu, V. Cakulev
Diameter Attribute-Value Pairs for Cryptographic Key Transport
Bytes: 13653
Working Group: Diameter Maintanence and Extensions
<a name="draft-ietf-xcon-ccmp"></a>
2011-09-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-xcon-ccmp-15.txt">draft-ietf-xcon-ccmp-15.txt</a>
AUTH48
REF draft-ietf-xcon-common-data-model IN-QUEUE
M. Barnes, C. Boulton, S. Romano, H. Schulzrinne
Centralized Conferencing Manipulation Protocol
Bytes: 255769
Working Group: Centralized Conferencing
<a name="draft-ietf-xcon-common-data-model"></a>
2011-09-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-xcon-common-data-model-32.txt">draft-ietf-xcon-common-data-model-32.txt</a>
AUTH48
O. Novo, G. Camarillo, D. Morgan, J. Urpalainen
Conference Information Data Model for Centralized Conferencing (XCON)
Bytes: 180382
Working Group: Centralized Conferencing
<a name="draft-ietf-roll-of0"></a>
2011-09-27 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-roll-of0-20.txt">draft-ietf-roll-of0-20.txt</a>
RFC-EDITOR
REF draft-ietf-roll-rpl IN-QUEUE
P. Thubert, Ed.
RPL Objective Function Zero
Bytes: 30879
Working Group: Routing Over Low power and Lossy networks
<a name="draft-ietf-sieve-notify-sip-message"></a>
2011-10-18 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-sieve-notify-sip-message-08.txt">draft-ietf-sieve-notify-sip-message-08.txt</a>
AUTH48
A. Melnikov, B. Leiba, K. Li
Sieve Notification Mechanism: SIP MESSAGE
Bytes: 21994
Working Group: Sieve Mail Filtering Language
<a name="draft-ietf-pwe3-static-pw-status"></a>
2011-11-17 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-pwe3-static-pw-status-10.txt">draft-ietf-pwe3-static-pw-status-10.txt</a>
AUTH48
L. Martini, G. Swallow, G. Heron, M. Bocci
Pseudowire Status for Static Pseudowires
Bytes: 27829
Working Group: Pseudowire Emulation Edge to Edge
<a name="draft-ietf-mmusic-ice-tcp"></a>
2011-12-01 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-mmusic-ice-tcp-16.txt">draft-ietf-mmusic-ice-tcp-16.txt</a>
AUTH48
J. Rosenberg, A. Keranen, B. Lowekamp, A. Roach
TCP Candidates with Interactive Connectivity Establishment (ICE)
Bytes: 72376
Working Group: Multiparty Multimedia Session Control
<a name="draft-ietf-krb-wg-otp-preauth"></a>
2011-12-02 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-krb-wg-otp-preauth-21.txt">draft-ietf-krb-wg-otp-preauth-21.txt</a>
EDIT
G. Richards
OTP Pre-authentication
Bytes: 97712
Working Group: Kerberos WG
<a name="draft-ietf-sieve-convert"></a>
2011-12-05 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-sieve-convert-06.txt">draft-ietf-sieve-convert-06.txt</a>
IESG
A. Melnikov, Q. Sun, B. Leiba, K. Li
Sieve Extension for Converting Messages Before Delivery
Bytes: 17714
Working Group: Sieve Mail Filtering Language
<a name="draft-ietf-6man-rpl-option"></a>
2011-12-20 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-6man-rpl-option-06.txt">draft-ietf-6man-rpl-option-06.txt</a>
RFC-EDITOR
REF draft-ietf-roll-rpl IN-QUEUE
J. Hui, JP. Vasseur
RPL Option for Carrying RPL Information in Data-Plane Datagrams
Bytes: 20927
Working Group: IPv6 Maintenance
<a name="draft-ietf-6man-rpl-routing-header"></a>
2011-12-20 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-6man-rpl-routing-header-07.txt">draft-ietf-6man-rpl-routing-header-07.txt</a>
RFC-EDITOR
J. Hui, JP. Vasseur, D. Culler, V. Manral
An IPv6 Routing Header for Source Routes with RPL
Bytes: 32642
Working Group: IPv6 Maintenance
<a name="draft-ietf-tsvwg-sctp-strrst"></a>
2011-12-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-tsvwg-sctp-strrst-13.txt">draft-ietf-tsvwg-sctp-strrst-13.txt</a>
AUTH48
R. Stewart, M. Tuexen, P. Lei
Stream Control Transmission Protocol (SCTP) Stream Reconfiguration
Bytes: 73491
Working Group: Transport Area Working Group
<a name="draft-ietf-v6ops-happy-eyeballs"></a>
2012-01-02 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-v6ops-happy-eyeballs-07.txt">draft-ietf-v6ops-happy-eyeballs-07.txt</a>
RFC-EDITOR
D. Wing, A. Yourtchenko
Happy Eyeballs: Success with Dual-Stack Hosts
Bytes: 39176
Working Group: IPv6 Operations
<a name="draft-ietf-dime-ikev2-psk-diameter"></a>
2012-01-04 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-dime-ikev2-psk-diameter-11.txt">draft-ietf-dime-ikev2-psk-diameter-11.txt</a>
EDIT
REF draft-ietf-dime-local-keytran IN-QUEUE
V. Cakulev, A. Lior, S. Mizikovsky
Diameter IKEv2 SK: Shared Key-based Support for IKEv2 Server to Diameter Server Interaction
Bytes: 37595
Working Group: Diameter Maintanence and Extensions
<a name="draft-ietf-krb-wg-gss-cb-hash-agility"></a>
2012-01-06 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-krb-wg-gss-cb-hash-agility-10.txt">draft-ietf-krb-wg-gss-cb-hash-agility-10.txt</a>
AUTH48
S. Emery
Kerberos Version 5 GSS-API Channel Binding Hash Agility
Bytes: 12240
Working Group: Kerberos WG
<a name="draft-ietf-netconf-access-control"></a>
2012-01-11 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-netconf-access-control-07.txt">draft-ietf-netconf-access-control-07.txt</a>
AUTH48
A. Bierman, M. Bjorklund
Network Configuration Protocol (NETCONF) Access Control Model
Bytes: 95461
Working Group: Network Configuration
<a name="draft-ietf-l3vpn-ospfv3-pece"></a>
2012-01-12 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-l3vpn-ospfv3-pece-11.txt">draft-ietf-l3vpn-ospfv3-pece-11.txt</a>
RFC-EDITOR
P. Pillay-Esnault, P. Moyer, J. Doyle, E. Ertekin, M. Lundberg
OSPFv3 as a PE-CE routing protocol
Bytes: 44180
Working Group: Layer 3 Virtual Private Networks
<a name="draft-ietf-intarea-ipv6-required"></a>
2012-01-13 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-intarea-ipv6-required-02.txt">draft-ietf-intarea-ipv6-required-02.txt</a>
AUTH48
W. George, C. Donley, C. Liljenstolpe, L. Howard
IPv6 Support Required for All IP-Capable Nodes
Bytes: 14074
Working Group: Internet Area Working Group
<a name="draft-ietf-behave-v4v6-bih"></a>
2012-01-18 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-behave-v4v6-bih-09.txt">draft-ietf-behave-v4v6-bih-09.txt</a>
AUTH48
B. Huang, H. Deng, T. Savolainen
Dual Stack Hosts Using "Bump-in-the-Host" (BIH)
Bytes: 55332
Working Group: Behavior Engineering for Hindrance Avoidance
<a name="draft-ietf-ippm-loss-episode-metrics"></a>
2012-01-20 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-ippm-loss-episode-metrics-04.txt">draft-ietf-ippm-loss-episode-metrics-04.txt</a>
AUTH48
N. Duffield, A. Morton, J. Sommers
Loss Episode Metrics for IPPM
Bytes: 45730
Working Group: IP Performance Metrics
<a name="draft-ietf-marf-authfailure-report"></a>
2012-01-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-marf-authfailure-report-10.txt">draft-ietf-marf-authfailure-report-10.txt</a>
EDIT
REF draft-ietf-marf-redaction IN-QUEUE
H. Fontana
Authentication Failure Reporting using the Abuse Report Format
Bytes: 33509
Working Group: Messaging Abuse Reporting Format
<a name="draft-ietf-ospf-multi-instance"></a>
2012-01-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-ospf-multi-instance-09.txt">draft-ietf-ospf-multi-instance-09.txt</a>
RFC-EDITOR
A. Lindem, A. Roy, S. Mirtorabi
OSPFv2 Multi-Instance Extensions
Bytes: 17693
Working Group: Open Shortest Path First IGP
<a name="draft-ietf-avtcore-srtp-vbr-audio"></a>
2012-01-24 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-avtcore-srtp-vbr-audio-04.txt">draft-ietf-avtcore-srtp-vbr-audio-04.txt</a>
RFC-EDITOR
C. Perkins, JM. Valin
Guidelines for the use of Variable Bit Rate Audio with Secure RTP
Bytes: 14848
Working Group: Audio/Video Transport Core Maintenance
<a name="draft-ietf-mile-rfc6046-bis"></a>
2012-01-27 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-mile-rfc6046-bis-09.txt">draft-ietf-mile-rfc6046-bis-09.txt</a>
RFC-EDITOR
REF draft-ietf-mile-rfc6045-bis IN-QUEUE
B. Trammell
Transport of Real-time Inter-network Defense (RID) Messages over HTTP/TLS
Bytes: 19047
Working Group: Managed Incident Lightweight Exchange
<a name="draft-ietf-mile-rfc6045-bis"></a>
2012-01-31 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-mile-rfc6045-bis-11.txt">draft-ietf-mile-rfc6045-bis-11.txt</a>
RFC-EDITOR
REF draft-ietf-mile-rfc6046-bis IN-QUEUE
K. Moriarty
Real-time Inter-network Defense (RID)
Bytes: 202151
Working Group: Managed Incident Lightweight Exchange
<a name="draft-ietf-tcpm-rfc3782-bis"></a>
2012-02-02 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-tcpm-rfc3782-bis-05.txt">draft-ietf-tcpm-rfc3782-bis-05.txt</a>
EDIT
T. Henderson, S. Floyd, A. Gurtov, Y. Nishida
The NewReno Modification to TCP's Fast Recovery Algorithm
Bytes: 37389
Working Group: TCP Maintenance and Minor Extensions
<a name="draft-ietf-storm-mpa-peer-connect"></a>
2012-02-03 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-storm-mpa-peer-connect-09.txt">draft-ietf-storm-mpa-peer-connect-09.txt</a>
EDIT
REF draft-ietf-storm-rddp-registries IN-QUEUE
A. Kanevsky, Ed., C. Bestler, Ed., R. Sharp, S. Wise
Enhanced RDMA Connection Establishment
Bytes: 57107
Working Group: STORage Maintenance
<a name="draft-ietf-6man-exthdr"></a>
2012-02-06 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-6man-exthdr-06.txt">draft-ietf-6man-exthdr-06.txt</a>
EDIT
S. Krishnan, J. Woodyatt, E. Kline, J. Hoagland, M. Bhatia
An uniform format for IPv6 extension headers
Bytes: 13614
Working Group: IPv6 Maintenance
<a name="draft-ietf-sidr-rpki-rtr"></a>
2012-02-06 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-sidr-rpki-rtr-26.txt">draft-ietf-sidr-rpki-rtr-26.txt</a>
MISSREF
IANA
REF draft-ietf-sidr-pfx-validate NOT-RECEIVED
R. Bush, R. Austein
The RPKI/Router Protocol
Bytes: 59568
Working Group: Secure Inter-Domain Routing
<a name="draft-ietf-rmt-simple-auth-for-alc-norm"></a>
2012-02-06 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-rmt-simple-auth-for-alc-norm-06.txt">draft-ietf-rmt-simple-auth-for-alc-norm-06.txt</a>
EDIT
V. Roca
Simple Authentication Schemes for the ALC and NORM Protocols
Bytes: 69045
Working Group: Reliable Multicast Transport
<a name="draft-ietf-l2vpn-arp-mediation"></a>
2012-02-07 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-l2vpn-arp-mediation-19.txt">draft-ietf-l2vpn-arp-mediation-19.txt</a>
EDIT
H. Shah, E. Rosen, G. Heron, V. Kompella
ARP Mediation for IP Interworking of Layer 2 VPN
Bytes: 74200
Working Group: Layer 2 Virtual Private Networks
<a name="draft-ietf-storm-rddp-registries"></a>
2012-02-09 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-storm-rddp-registries-02.txt">draft-ietf-storm-rddp-registries-02.txt</a>
EDIT
M. Ko, D. Black
IANA Registries for the RDDP (Remote Direct Data Placement) Protocols
Bytes: 18641
Working Group: STORage Maintenance
<a name="draft-ietf-netext-radius-pmip6"></a>
2012-02-10 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-netext-radius-pmip6-08.txt">draft-ietf-netext-radius-pmip6-08.txt</a>
EDIT
IANA
F. Xia, B. Sarikaya, J. Korhonen, Ed., S. Gundavelli, D. Damic
RADIUS Support for Proxy Mobile IPv6
Bytes: 72390
Working Group: Network-Based Mobility Extensions
<a name="draft-ietf-marf-redaction"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-marf-redaction-08.txt">draft-ietf-marf-redaction-08.txt</a>
EDIT
J. Falk, Ed., M. Kucherawy, Ed.
Redaction of Potentially Sensitive Data from Mail Abuse Reports
Bytes: 16232
Working Group: Messaging Abuse Reporting Format
<a name="draft-ietf-netext-bulk-re-registration"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-netext-bulk-re-registration-12.txt">draft-ietf-netext-bulk-re-registration-12.txt</a>
EDIT
IANA
F. Abinader, Ed., S. Gundavelli, Ed., K. Leung, S. Krishnan, D. Premec
Bulk Binding Update Support for Proxy Mobile IPv6
Bytes: 56194
Working Group: Network-Based Mobility Extensions
<a name="draft-ietf-dhc-pd-exclude"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-dhc-pd-exclude-04.txt">draft-ietf-dhc-pd-exclude-04.txt</a>
EDIT
IANA
J. Korhonen, Ed., T. Savolainen, S. Krishnan, O. Troan
Prefix Exclude Option for DHCPv6-based Prefix Delegation
Bytes: 19279
Working Group: Dynamic Host Configuration
<a name="draft-ietf-kitten-sasl-saml"></a>
2012-02-22 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-kitten-sasl-saml-09.txt">draft-ietf-kitten-sasl-saml-09.txt</a>
EDIT
IANA
K. Wierenga, E. Lear, S. Josefsson
A SASL and GSS-API Mechanism for SAML
Bytes: 51459
Working Group: Common Authentication Technology Next Generation
-------------------------------------------------------------------
NON-WORKING GROUP STANDARDS TRACK (by date received)
-------------------------------------------------------------------
<a name="draft-daboo-srv-caldav"></a>
2010-09-16 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-daboo-srv-caldav-10.txt">draft-daboo-srv-caldav-10.txt</a>
AUTH48
REF draft-cheshire-dnsext-dns-sd IN-QUEUE
C. Daboo
Locating CalDAV and CardDAV services
Bytes: 32444
<a name="draft-ietf-netlmm-pmipv6-mib"></a>
2011-11-22 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-netlmm-pmipv6-mib-08.txt">draft-ietf-netlmm-pmipv6-mib-08.txt</a>
AUTH48
G. Keeni, K. Koide, S. Gundavelli, R. Wakikawa
Proxy Mobile IPv6 Management Information Base
Bytes: 138280
<a name="draft-ietf-vrrp-unified-mib"></a>
2011-12-01 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-vrrp-unified-mib-10.txt">draft-ietf-vrrp-unified-mib-10.txt</a>
AUTH48
K. Tata
Definitions of Managed Objects for VRRPv3
Bytes: 61163
<a name="draft-cheshire-dnsext-dns-sd"></a>
2011-12-12 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-cheshire-dnsext-dns-sd-11.txt">draft-cheshire-dnsext-dns-sd-11.txt</a>
AUTH48
S. Cheshire, M. Krochmal
DNS-Based Service Discovery
Bytes: 121542
<a name="draft-cheshire-dnsext-multicastdns"></a>
2011-12-19 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-cheshire-dnsext-multicastdns-15.txt">draft-cheshire-dnsext-multicastdns-15.txt</a>
MISSREF
IANA
REF draft-cheshire-dnsext-special-names NOT-RECEIVED
S. Cheshire, M. Krochmal
Multicast DNS
Bytes: 182648
<a name="draft-gundavelli-v6ops-pmipv6-address-reservations"></a>
2012-01-04 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-gundavelli-v6ops-pmipv6-address-reservations-06.txt">draft-gundavelli-v6ops-pmipv6-address-reservations-06.txt</a>
AUTH48
S. Gundavelli
Reserved IPv6 Interface Identifier for Proxy Mobile IPv6
Bytes: 10972
<a name="draft-gregorio-uritemplate"></a>
2012-01-26 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-gregorio-uritemplate-08.txt">draft-gregorio-uritemplate-08.txt</a>
RFC-EDITOR
J. Gregorio, R. Fielding, M. Hadley, M. Nottingham, D. Orchard
URI Template
Bytes: 79733
<a name="draft-daboo-webdav-sync"></a>
2012-01-30 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-daboo-webdav-sync-08.txt">draft-daboo-webdav-sync-08.txt</a>
EDIT
C. Daboo, A. Quillaud
Collection Synchronization for WebDAV
Bytes: 61497
<a name="draft-nottingham-http-new-status"></a>
2012-02-06 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-nottingham-http-new-status-04.txt">draft-nottingham-http-new-status-04.txt</a>
EDIT
M. Nottingham, R. Fielding
Additional HTTP Status Codes
Bytes: 17077
<a name="draft-os-ietf-sshfp-ecdsa-sha2"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-os-ietf-sshfp-ecdsa-sha2-07.txt">draft-os-ietf-sshfp-ecdsa-sha2-07.txt</a>
EDIT
IANA
O. Sury
Use of SHA-256 Algorithm with RSA, DSA and ECDSA in SSHFP Resource Records
Bytes: 17578
<a name="draft-kucherawy-authres-spf-erratum"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-kucherawy-authres-spf-erratum-02.txt">draft-kucherawy-authres-spf-erratum-02.txt</a>
EDIT
IANA
M. Kucherawy
Authentication-Results Registration Update for SPF Results
Bytes: 8098
-------------------------------------------------------------------
WORKING GROUP INFORMATIONAL/EXPERIMENTAL/BCP (by date received)
-------------------------------------------------------------------
<a name="draft-ietf-fecframe-dvb-al-fec"></a>
2010-01-11 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-fecframe-dvb-al-fec-04.txt">draft-ietf-fecframe-dvb-al-fec-04.txt</a>
MISSREF
REF draft-ietf-fecframe-raptor NOT-RECEIVED
draft-ietf-fecframe-rtp-raptor NOT-RECEIVED
A. Begen, T. Stockhammer
Guidelines for Implementing DVB-IPTV Application-Layer Hybrid FEC Protection
Bytes: 24282
Working Group: FEC Framework
<a name="draft-ietf-radext-tcp-transport"></a>
2010-11-29 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-radext-tcp-transport-09.txt">draft-ietf-radext-tcp-transport-09.txt</a>
MISSREF
REF draft-ietf-radext-radsec NOT-RECEIVED
A. DeKok
RADIUS Over TCP
Bytes: 37502
Working Group: RADIUS EXTensions
<a name="draft-ietf-emu-eaptunnel-req"></a>
2011-01-11 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-emu-eaptunnel-req-09.txt">draft-ietf-emu-eaptunnel-req-09.txt</a>
MISSREF
REF draft-ietf-emu-chbind NOT-RECEIVED
K. Hoeper, S. Hanna, H. Zhou, J. Salowey, Ed.
Requirements for a Tunnel Based EAP Method
Bytes: 56460
Working Group: EAP Method Update
<a name="draft-ietf-ecrit-phonebcp"></a>
2011-09-12 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-ecrit-phonebcp-20.txt">draft-ietf-ecrit-phonebcp-20.txt</a>
MISSREF
REF draft-ietf-mmusic-media-loopback NOT-RECEIVED
B. Rosen, J. Polk
Best Current Practice for Communications Services in support of Emergency Calling
Bytes: 60638
Working Group: Emergency Context Resolution with Internet Technologies
<a name="draft-ietf-lisp-lig"></a>
2011-09-16 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-lisp-lig-06.txt">draft-ietf-lisp-lig-06.txt</a>
MISSREF
REF draft-ietf-lisp-interworking NOT-RECEIVED
draft-ietf-lisp IN-QUEUE
draft-ietf-lisp-ms NOT-RECEIVED
D. Farinacci, D. Meyer
LISP Internet Groper (LIG)
Bytes: 28279
Working Group: Locator/ID Separation Protocol
<a name="draft-ietf-xcon-examples"></a>
2011-09-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-xcon-examples-10.txt">draft-ietf-xcon-examples-10.txt</a>
AUTH48
REF draft-ietf-xcon-ccmp IN-QUEUE
draft-ietf-xcon-event-package IN-QUEUE
draft-ietf-xcon-common-data-model IN-QUEUE
M. Barnes, L. Miniero, R. Presta, S. Romano
Centralized Conferencing Manipulation Protocol (CCMP) Call Flow Examples
Bytes: 186543
Working Group: Centralized Conferencing
<a name="draft-irtf-hip-experiment"></a>
2011-12-20 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-irtf-hip-experiment-15.txt">draft-irtf-hip-experiment-15.txt</a>
AUTH48
T. Henderson, A. Gurtov
HIP Experiment Report
Bytes: 91172
Working Group: IRTF
<a name="draft-irtf-hiprg-dht"></a>
2011-12-20 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-irtf-hiprg-dht-05.txt">draft-irtf-hiprg-dht-05.txt</a>
AUTH48
J. Ahrenholz
Host Identity Protocol Distributed Hash Table Interface
Bytes: 55183
Working Group: IRTF
<a name="draft-ietf-mip4-nemo-haaro"></a>
2011-12-20 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-mip4-nemo-haaro-07.txt">draft-ietf-mip4-nemo-haaro-07.txt</a>
AUTH48
A. Makela, J. Korhonen
Home Agent assisted Route Optimization between Mobile IPv4 Networks
Bytes: 125726
Working Group: Mobility for IPv4
<a name="draft-ietf-ccamp-wson-impairments"></a>
2012-01-05 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-ccamp-wson-impairments-10.txt">draft-ietf-ccamp-wson-impairments-10.txt</a>
RFC-EDITOR
Y. Lee, Ed., G. Bernstein, Ed., D. Li, G. Martinelli
A Framework for the Control of Wavelength Switched Optical Networks (WSON) with Impairments
Bytes: 71189
Working Group: Common Control and Measurement Plane
<a name="draft-ietf-pim-port"></a>
2012-01-11 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-pim-port-09.txt">draft-ietf-pim-port-09.txt</a>
RFC-EDITOR
D. Farinacci, IJ. Wijnands, S. Venaas, M. Napierala
A Reliable Transport Mechanism for PIM
Bytes: 70870
Working Group: Protocol Independent Multicast
<a name="draft-ietf-lisp-alt"></a>
2012-01-12 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-lisp-alt-10.txt">draft-ietf-lisp-alt-10.txt</a>
MISSREF
REF draft-ietf-lisp IN-QUEUE
draft-ietf-lisp-ms NOT-RECEIVED
V. Fuller, D. Farinacci, D. Meyer, D. Lewis
LISP Alternative Topology (LISP+ALT)
Bytes: 62793
Working Group: Locator/ID Separation Protocol
<a name="draft-ietf-hokey-arch-design"></a>
2012-01-13 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-hokey-arch-design-11.txt">draft-ietf-hokey-arch-design-11.txt</a>
MISSREF
REF draft-ietf-hokey-rfc5296bis NOT-RECEIVED
G. Zorn, Ed., Q. Wu, T. Taylor, Y. Nir, K. Hoeper, S. Decugis
Handover Keying (HOKEY) Architecture Design
Bytes: 47101
Working Group: Handover Keying
<a name="draft-ietf-codec-guidelines"></a>
2012-01-13 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-codec-guidelines-08.txt">draft-ietf-codec-guidelines-08.txt</a>
RFC-EDITOR
JM. Valin, S. Borilin, K. Vos, C. Montgomery, R. Chen
Guidelines for Development of an Audio Codec Within the IETF
Bytes: 34579
Working Group: Internet Wideband Audio Codec
<a name="draft-ietf-cuss-sip-uui-reqs"></a>
2012-01-17 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-cuss-sip-uui-reqs-09.txt">draft-ietf-cuss-sip-uui-reqs-09.txt</a>
EDIT
A. Johnston, L. Liess
Problem Statement and Requirements for Transporting User to User Call Control Information in SIP
Bytes: 25953
Working Group: Call Control UUI Service for SIP
<a name="draft-ietf-rtgwg-lfa-applicability"></a>
2012-01-18 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-rtgwg-lfa-applicability-06.txt">draft-ietf-rtgwg-lfa-applicability-06.txt</a>
EDIT
C. Filsfils, P. Francois
LFA applicability in SP networks
Bytes: 69665
Working Group: Routing Area Working Group
<a name="draft-ietf-ippm-metrictest"></a>
2012-01-20 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-ippm-metrictest-05.txt">draft-ietf-ippm-metrictest-05.txt</a>
EDIT
R. Geib, Ed., A. Morton, R. Fardid, A. Steinmitz
IPPM standard advancement testing
Bytes: 84805
Working Group: IP Performance Metrics
<a name="draft-ietf-6lowpan-usecases"></a>
2012-01-24 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-6lowpan-usecases-10.txt">draft-ietf-6lowpan-usecases-10.txt</a>
EDIT
E. Kim, D. Kaspar, N. Chevrollier, JP. Vasseur
Design and Application Spaces for 6LoWPANs
Bytes: 65797
Working Group: IPv6 over Low power WPAN
<a name="draft-ietf-6man-3627-historic"></a>
2012-02-06 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-6man-3627-historic-01.txt">draft-ietf-6man-3627-historic-01.txt</a>
EDIT
W. George
RFC3627 to Historic status
Bytes: 5581
Working Group: IPv6 Maintenance
<a name="draft-ietf-lisp-multicast"></a>
2012-02-09 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-lisp-multicast-14.txt">draft-ietf-lisp-multicast-14.txt</a>
MISSREF
REF draft-ietf-lisp-interworking NOT-RECEIVED
draft-ietf-lisp IN-QUEUE
D. Farinacci, D. Meyer, J. Zwiebel, S. Venaas
LISP for Multicast Environments
Bytes: 78958
Working Group: Locator/ID Separation Protocol
<a name="draft-ietf-lisp"></a>
2012-02-13 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-lisp-22.txt">draft-ietf-lisp-22.txt</a>
MISSREF
IANA
REF draft-ietf-lisp-alt IN-QUEUE
draft-ietf-lisp-ms NOT-RECEIVED
draft-eubanks-chimento-6man NOT-RECEIVED
draft-ietf-6man-udpzero NOT-RECEIVED
draft-ietf-lisp-map-versioning NOT-RECEIVED
D. Farinacci, V. Fuller, D. Meyer, D. Lewis
Locator/ID Separation Protocol (LISP)
Bytes: 217432
Working Group: Locator/ID Separation Protocol
<a name="draft-ietf-pcn-signaling-requirements"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-pcn-signaling-requirements-08.txt">draft-ietf-pcn-signaling-requirements-08.txt</a>
MISSREF
REF draft-ietf-pcn-cl-edge-behaviour NOT-RECEIVED
draft-ietf-pcn-sm-edge-behaviour NOT-RECEIVED
G. Karagiannis, T. Taylor, K. Chan, M. Menth, P. Eardley
Requirements for Signaling of (Pre-) Congestion Information in a DiffServ Domain
Bytes: 16526
Working Group: Congestion and Pre-Congestion Notification
<a name="draft-ietf-v6ops-ipv6-multihoming-without-ipv6nat"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-v6ops-ipv6-multihoming-without-ipv6nat-04.txt">draft-ietf-v6ops-ipv6-multihoming-without-ipv6nat-04.txt</a>
MISSREF
REF draft-ietf-6man-addr-select-considerations NOT-RECEIVED
draft-ietf-6man-addr-select-opt NOT-RECEIVED
draft-ietf-mif-dhcpv6-route-option NOT-RECEIVED
draft-ietf-mif-dns-server-selection NOT-RECEIVED
O. Troan, Ed., D. Miles, S. Matsushima, T. Okimoto, D. Wing
IPv6 Multihoming without Network Address Translation
Bytes: 50586
Working Group: IPv6 Operations
<a name="draft-ietf-savi-framework"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-savi-framework-06.txt">draft-ietf-savi-framework-06.txt</a>
MISSREF
REF draft-ietf-savi-threat-scope NOT-RECEIVED
draft-ietf-savi-dhcp NOT-RECEIVED
draft-ietf-savi-fcfs NOT-RECEIVED
J. Wu, J. Bi, M. Bagnulo, F. Baker, C. Vogt, Ed.
Source Address Validation Improvement Framework
Bytes: 31068
Working Group: Source Address Validation Improvements
-------------------------------------------------------------------
NON-WORKING GROUP INFORMATIONAL/EXPERIMENTAL/BCP (by date received)
-------------------------------------------------------------------
<a name="draft-lear-lisp-nerd"></a>
2009-12-17-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-lear-lisp-nerd-08.txt">draft-lear-lisp-nerd-08.txt</a>
TO (expires 2011-11-18)
E. Lear
NERD: A Not-so-novel EID to RLOC Database
Bytes: 72749
<a name="draft-ietf-netlmm-mip-interactions"></a>
2010-12-07 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-netlmm-mip-interactions-07.txt">draft-ietf-netlmm-mip-interactions-07.txt</a>
EDIT
REF draft-ietf-mip6-bootstrapping-integrated-dhc IN-QUEUE
G. Giaretta, Ed.
Interactions between PMIPv6 and MIPv6: scenarios and related issues
Bytes: 42044
<a name="draft-cheshire-dnsext-nbp"></a>
2010-12-20 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-cheshire-dnsext-nbp-10.txt">draft-cheshire-dnsext-nbp-10.txt</a>
MISSREF
REF draft-cheshire-dnsext-dns-sd IN-QUEUE
draft-cheshire-dnsext-multicastdns IN-QUEUE
draft-cheshire-dnsext-special-names NOT-RECEIVED
S. Cheshire, M. Krochmal
Requirements for a Protocol to Replace AppleTalk NBP
Bytes: 38087
<a name="draft-lear-iana-timezone-database"></a>
2011-05-19 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-lear-iana-timezone-database-05.txt">draft-lear-iana-timezone-database-05.txt</a>
RFC-EDITOR
E. Lear, P. Eggert
IANA Procedures for Maintaining the Timezone Database
Bytes: 15939
<a name="draft-sarikaya-v6ops-prefix-delegation-10.txt"></a>
2011-08-15-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-sarikaya-v6ops-prefix-delegation-10.txt.txt">draft-sarikaya-v6ops-prefix-delegation-10.txt.txt</a>
TO (expires 2012-03-02)
Behcet Sarikaya, Frank Xia, Ted Lemon
DHCPv6 Prefix Delegation as IPv6 Migration Tool in Mobile Networks
Bytes: 27886
<a name="draft-baker-bmwg-testing-eyeball-happiness"></a>
2011-10-12 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-baker-bmwg-testing-eyeball-happiness-05.txt">draft-baker-bmwg-testing-eyeball-happiness-05.txt</a>
RFC-EDITOR
REF draft-ietf-v6ops-happy-eyeballs IN-QUEUE
F. Baker
Testing Eyeball Happiness
Bytes: 24895
<a name="draft-stone-mgcp-vbd"></a>
2011-12-07 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-stone-mgcp-vbd-10.txt">draft-stone-mgcp-vbd-10.txt</a>
AUTH48
J. Stone, R. Kumar, F. Andreasen
Media Gateway Control Protocol (MGCP) Voiceband Data Package (VBD) and General Purpose Media Descriptor Parameter Package
Bytes: 94865
<a name="draft-cakulev-ibake"></a>
2012-01-05-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-cakulev-ibake-06.txt">draft-cakulev-ibake-06.txt</a>
RFC-EDITOR
V. Cakulev, G. Sundaram, I. Broustis
IBAKE: Identity-Based Authenticated Key Exchange
Bytes: 25873
<a name="draft-kucherawy-dkim-atps"></a>
2012-01-09 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-kucherawy-dkim-atps-16.txt">draft-kucherawy-dkim-atps-16.txt</a>
AUTH48
M. Kucherawy
DomainKeys Identified Mail (DKIM) Authorized Third-Party Signers
Bytes: 31211
<a name="draft-mckenzie-arpanet-host-host-protocol"></a>
2012-01-11-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-mckenzie-arpanet-host-host-protocol-01.txt">draft-mckenzie-arpanet-host-host-protocol-01.txt</a>
AUTH48
A. McKenzie, S. Crocker
Host/Host Protocol for the ARPA Network
Bytes: 66867
<a name="draft-oreirdan-mody-bot-remediation"></a>
2012-01-12 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-oreirdan-mody-bot-remediation-20.txt">draft-oreirdan-mody-bot-remediation-20.txt</a>
RFC-EDITOR
J. Livingood, N. Mody, M. O'Reirdan
Recommendations for the Remediation of Bots in ISP Networks
Bytes: 79671
<a name="draft-jiang-a6-to-historic"></a>
2012-01-23 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-jiang-a6-to-historic-00.txt">draft-jiang-a6-to-historic-00.txt</a>
RFC-EDITOR
S. Jiang, D. Conrad, B. Carpenter
Moving A6 to Historic Status
Bytes: 17072
<a name="draft-amundsen-item-and-collection-link-relations"></a>
2012-02-06 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-amundsen-item-and-collection-link-relations-05.txt">draft-amundsen-item-and-collection-link-relations-05.txt</a>
EDIT
M. Amundsen
The Item and Collection Link Relations
Bytes: 7867
<a name="draft-arkko-ipv6-only-experience"></a>
2012-02-07 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-arkko-ipv6-only-experience-05.txt">draft-arkko-ipv6-only-experience-05.txt</a>
EDIT
J. Arkko, A. Keranen
Experiences from an IPv6-Only Network
Bytes: 51724
<a name="draft-yevstifeyev-disclosure-relation"></a>
2012-02-09 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-yevstifeyev-disclosure-relation-02.txt">draft-yevstifeyev-disclosure-relation-02.txt</a>
EDIT
M. Yevstifeyev
The 'disclosure' Link Relation Type
Bytes: 7666
<a name="draft-ishikawa-yrpunl-ucode-urn"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ishikawa-yrpunl-ucode-urn-03.txt">draft-ishikawa-yrpunl-ucode-urn-03.txt</a>
EDIT
IANA
C. Ishikawa
A URN Namespace For The ucode
Bytes: 14313
<a name="draft-gerhards-syslog-plain-tcp"></a>
2012-02-21 <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-gerhards-syslog-plain-tcp-14.txt">draft-gerhards-syslog-plain-tcp-14.txt</a>
EDIT
R. Gerhards, C. Lonvick
Transmission of Syslog Messages over TCP
Bytes: 23763
-------------------------------------------------------------------
INDEPENDENT SUBMISSIONS UNDER RFC EDITOR REVIEW (by date received)
-------------------------------------------------------------------
<a name="draft-manning-opcode-discover"></a>
2004-07-07-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-manning-opcode-discover-02.txt">draft-manning-opcode-discover-02.txt</a>
ISR-AUTH
B. Manning, P. Vixie
Supporting unicast replies to multicast queries in the DNS or DISCOVER opcode defined
Bytes: 13863
<a name="draft-tyson-lgsp"></a>
2008-01-03-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-tyson-lgsp-01.txt">draft-tyson-lgsp-01.txt</a>
ISR-AUTH
M. Tyson, C. Kopp
The Lightweight Global Navigation Satellite System (GNSS) Support Protocol (LGSP)
Bytes: 129068
<a name="draft-forte-ecrit-service-classification"></a>
2009-07-06-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-forte-ecrit-service-classification-03.txt">draft-forte-ecrit-service-classification-03.txt</a>
ISR-AUTH
A. Forte, H. Schulzrinne
Labels for Common Location-Based Services
Bytes: 15129
<a name="draft-cavuto-dtcp"></a>
2009-11-17-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-cavuto-dtcp-03.txt">draft-cavuto-dtcp-03.txt</a>
ISR
D. Cavuto, M. Apte, S. Jain, M. Murthy
DTCP: Dynamic Tasking Control Protocol
Bytes: 109199
<a name="draft-haluska-sipping-directory-assistance"></a>
2010-02-23-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-haluska-sipping-directory-assistance-11.txt">draft-haluska-sipping-directory-assistance-11.txt</a>
ISR-AUTH
J. Haluska, R. Ahern, P. Lum Lung, C. Blackwell
Considerations for Information Services and Operator Services Using SIP
Bytes: 252011
<a name="draft-mertl-psi"></a>
2010-05-23-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-mertl-psi-01.txt">draft-mertl-psi-01.txt</a>
ISR
M. Ertl
Protocol for Stage Illumination, for use over IP networks
Bytes: 166581
<a name="draft-mcroberts-uri-dvb"></a>
2010-08-31-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-mcroberts-uri-dvb-05.txt">draft-mcroberts-uri-dvb-05.txt</a>
ISR
M. McRoberts
Uniform Resource Identifiers for Digital Video Broadcasting (DVB)
Bytes: 17325
<a name="draft-morand-http-digest-2g-aka"></a>
2010-09-10-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-morand-http-digest-2g-aka-01.txt">draft-morand-http-digest-2g-aka-01.txt</a>
ISR-AUTH
L. Morand
Hypertext Transfer Protocol (HTTP) Digest Authentication Using GSM 2G Authentication and Key Agreement (AKA)
Bytes: 30813
<a name="draft-hoehrmann-cp-collation"></a>
2010-09-15-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-hoehrmann-cp-collation-01.txt">draft-hoehrmann-cp-collation-01.txt</a>
ISR-AUTH
B. Hoehrmann
The i;codepoint collation
Bytes: 4473
<a name="draft-edwards-telnet-xon-xoff-state-control"></a>
2010-09-15-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-edwards-telnet-xon-xoff-state-control-00.txt">draft-edwards-telnet-xon-xoff-state-control-00.txt</a>
ISR-AUTH
G. Edwards
Xon/Xoff State Control for Telnet Com Port Control Option
Bytes: 11607
<a name="draft-hartmann-default-port-for-irc-via-tls-ssl"></a>
2010-10-18-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-hartmann-default-port-for-irc-via-tls-ssl-06.txt">draft-hartmann-default-port-for-irc-via-tls-ssl-06.txt</a>
ISR-AUTH
R. Hartmann
Default Port for IRC via TLS/SSL
Bytes: 7860
<a name="draft-vandesompel-memento"></a>
2010-12-06-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-vandesompel-memento-00.txt">draft-vandesompel-memento-00.txt</a>
ISR
H. VandeSompel, M. Nelson, R. Sanderson
HTTP framework for time-based access to resource states -- Memento
Bytes: 77345
<a name="draft-fastenrath-ethics-search-protocol"></a>
2010-12-12-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-fastenrath-ethics-search-protocol-00.txt">draft-fastenrath-ethics-search-protocol-00.txt</a>
ISR
B. Fastenrath
Ethics Search Protocol (ESP) for Internet Search Engines
Bytes: 120435
<a name="draft-hamarsheh-behave-biav2"></a>
2010-12-22-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-hamarsheh-behave-biav2-05.txt">draft-hamarsheh-behave-biav2-05.txt</a>
ISR-AUTH
A. Hamarsheh, M. Goossens
Hosts with Any Network Connectivity Using "Bump-in-the-API"(BIA)
Bytes: 70436
<a name="draft-slevinski-iswa-2010"></a>
2011-01-09-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-slevinski-iswa-2010-00.txt">draft-slevinski-iswa-2010-00.txt</a>
ISR-AUTH
V. Sutton, S. Slevinski Jr
Encoding the graphemes of the SignWriting Script with the x-ISWA-2010
Bytes: 324394
<a name="draft-accilent-at-sign"></a>
2011-01-17-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-accilent-at-sign-00.txt">draft-accilent-at-sign-00.txt</a>
ISR-AUTH
R. Simpson
Clarification of Proper Use of "@" (at sign) in URI-style Components
Bytes: 11687
<a name="draft-tripathi-roll-rpl-simulation"></a>
2011-02-15-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-tripathi-roll-rpl-simulation-07.txt">draft-tripathi-roll-rpl-simulation-07.txt</a>
ISR-AUTH
J. Tripathi, J. de Oliveira, JP. Vasseur
Performance Evaluation of Routing Protocol for Low Power and Lossy Networks (RPL)
Bytes: 44209
<a name="draft-pornin-deterministic-dsa"></a>
2011-03-28-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-pornin-deterministic-dsa.txt">draft-pornin-deterministic-dsa.txt</a>
ISR
Thomas Pornin
Deterministic Usage of DSA and ECDSA Digital Signature Algorithms
Bytes: 121300
<a name="draft-schaad-smime-aed-rant"></a>
2011-04-07-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-schaad-smime-aed-rant-02.txt">draft-schaad-smime-aed-rant-02.txt</a>
ISR-AUTH
J. Schaad
Commentary on the Design of the Authenticated-Enveloped-Data Content Type
Bytes: 50736
<a name="draft-hotz-kx509-02.txt"></a>
2011-04-16-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-hotz-kx509-02.txt.txt">draft-hotz-kx509-02.txt.txt</a>
ISR
Henry B. Hotz
KX509 Kerberized Certificate Issuance Protocol
Bytes: 24161
<a name="draft-moscaritolo-openpgp-literal"></a>
2011-04-16-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-moscaritolo-openpgp-literal-01.txt">draft-moscaritolo-openpgp-literal-01.txt</a>
ISR
Vinnie Moscaritolo
Media type literal packet in OpenPGP
Bytes: 10725
<a name="draft-kaplan-dnsext-enum-sip-source-ref-opt-code"></a>
2011-04-26-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-kaplan-dnsext-enum-sip-source-ref-opt-code-02.txt">draft-kaplan-dnsext-enum-sip-source-ref-opt-code-02.txt</a>
ISR-AUTH
Hadriel Kaplan, Robert H. Walter, Pierce Gorman, Manjul Maharishi
EDNS Option Code for SIP and PSTN Source Reference Info
Bytes: 9923
<a name="draft-brashear-afs3-pts-extended-names"></a>
2011-06-01-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-brashear-afs3-pts-extended-names-09.txt">draft-brashear-afs3-pts-extended-names-09.txt</a>
ISR-AUTH
Derrick J. Brashear
Authentication Name Mapping extension for AFS-3 Protection Service
Bytes: 26233
<a name="draft-shah-extreme-rfc3619bis"></a>
2011-06-05-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-shah-extreme-rfc3619bis-02.txt">draft-shah-extreme-rfc3619bis-02.txt</a>
ISR
Arnel Lim, Steven Blake, Sunil Shah
Extreme Networks' Ethernet Automatic Protection Switching (EAPS), Version 1.3
Bytes: 34248
<a name="draft-hotz-kx509-03.txt"></a>
2011-06-14-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-hotz-kx509-03.txt.txt">draft-hotz-kx509-03.txt.txt</a>
ISR-AUTH
draft-hotz-kx509-03.txt
KX509 Kerberized Certificate Issuance Protocol
Bytes: 25677
<a name="draft-kiyomoto-kcipher2"></a>
2011-06-29-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-kiyomoto-kcipher2-05.txt">draft-kiyomoto-kcipher2-05.txt</a>
ISR
Shinsaku Kiyomoto, Wook Shin
A Description of KCipher-2 Encryption Algorithm
Bytes: 68807
<a name="draft-despres-6a44"></a>
2011-07-13-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-despres-6a44-00.txt">draft-despres-6a44-00.txt</a>
ISR-AUTH
Remi Despres, Brian Carpenter, Dan Wing
Native IPv6 Behind NAT44 CPEs (6a44)
Bytes: 71353
<a name="draft-bakht-maoddp"></a>
2011-08-07-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-bakht-maoddp-01.txt">draft-bakht-maoddp-01.txt</a>
ISR
Humayun Bakht
Mobile Ad-hoc On-Demand Data Delivery Protocol (MAODDP)
Bytes: 21267
<a name="draft-yevstifeyev-xri-uri-rsrv"></a>
2011-08-15-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-yevstifeyev-xri-uri-rsrv-02.txt">draft-yevstifeyev-xri-uri-rsrv-02.txt</a>
ISR
Mykyta Yevstifeyev
The 'xri' URI Scheme
Bytes: 7645
<a name="draft-tsou-softwire-gwinit-6rd"></a>
2011-08-29-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-tsou-softwire-gwinit-6rd-04.txt">draft-tsou-softwire-gwinit-6rd-04.txt</a>
ISR-AUTH
Tina Tsou, Cathy Zhou, Tom Taylor, Ole Troan, Qi Chen
"Gateway-Initiated" 6rd
Bytes: 17042
<a name="draft-mme-trill-fcoe"></a>
2011-10-16-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-mme-trill-fcoe-01.txt">draft-mme-trill-fcoe-01.txt</a>
ISR
David Melman, Tal Mizrahi, Donald Eastlake 3rd
FCoE over TRILL
Bytes: 20856
<a name="draft-lewis-dns-undocumented-types"></a>
2011-10-18-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-lewis-dns-undocumented-types-01.txt">draft-lewis-dns-undocumented-types-01.txt</a>
ISR-AUTH
Edward Lewis
IANA Allocated DNS RRtype Codes Without Documentation
Bytes: 10309
<a name="draft-kutylowski-mrsa-algorithm"></a>
2011-10-18-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-kutylowski-mrsa-algorithm-00.txt">draft-kutylowski-mrsa-algorithm-00.txt</a>
ISR
Miroslaw Kutylowski, Przemyslaw Kubiak, Michal Tabor, Daniel Wachnik
Mediated RSA cryptography specification for additive private key splitting (mRSAA)
Bytes: 118721
<a name="draft-templin-intarea-seal"></a>
2011-11-30-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-templin-intarea-seal-41.txt">draft-templin-intarea-seal-41.txt</a>
ISR
Fred L. Templin
The Subnetwork Encapsulation and Adaptation Layer (SEAL)
Bytes: 93812
<a name="draft-templin-intarea-vet"></a>
2011-11-30-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-templin-intarea-vet-32.txt">draft-templin-intarea-vet-32.txt</a>
ISR
Fred L. Templin
Virtual Enterprise Traversal (VET)
Bytes: 115063
<a name="draft-templin-ironbis-09.txt"></a>
2011-11-30-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-templin-ironbis-09.txt.txt">draft-templin-ironbis-09.txt.txt</a>
ISR
Fred L. Templin
The Internet Routing Overlay Network (IRON)
Bytes: 101794
<a name="draft-secure-cookie-session-protocol"></a>
2012-01-04-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-secure-cookie-session-protocol-03.txt">draft-secure-cookie-session-protocol-03.txt</a>
ISR
Stefano Barbato, Steven Dorigotti, Thomas Fossati
SCS: Secure Cookie Sessions for HTTP
Bytes: 39606
<a name="draft-karcz-uuas-00.txt"></a>
2012-02-01-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-karcz-uuas-00.txt.txt">draft-karcz-uuas-00.txt.txt</a>
ISR
Mateusz Karcz
Unified User-Agent String (UUAS)
Bytes: 11758
<a name="draft-cisco-sla-protocol"></a>
2012-02-07-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-cisco-sla-protocol-00.txt">draft-cisco-sla-protocol-00.txt</a>
ISR
Murtaza S. Chiba, Alexander Clemm, Steven Medley, Joseph Salowey, Sudhir Thombare, Eshwar Yedavalli
Cisco Service Level Assurance Protocol
Bytes: 63913
<a name="draft-yegin-pana-unspecified-addr"></a>
2012-02-14-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-yegin-pana-unspecified-addr-06.txt">draft-yegin-pana-unspecified-addr-06.txt</a>
ISR
Alper Yegin, Yoshihiro Ohba, Lionel Morand, John Kaippallimalil
Protocol for Carrying Authentication for Network Access (PANA) with IPv4 Unspecified Address
Bytes: 18914
<a name="draft-keranen-ipv6day-measurements"></a>
2012-02-23-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-keranen-ipv6day-measurements-02.txt">draft-keranen-ipv6day-measurements-02.txt</a>
ISR
Ari Keranen, Jari Arkko
Some Measurements on World IPv6 Day from End-User Perspective
Bytes: 25452
<a name="draft-haresh-sushrut-mib-classification"></a>
2012-02-26-I <a href="ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-haresh-sushrut-mib-classification-00.txt">draft-haresh-sushrut-mib-classification-00.txt</a>
ISR
Haresh Khandelwal, Sushrut Deshpande
MIB Classification based use of SNMP cache or shared database
Bytes: 7166
</pre>
Please send <A HREF="mailto:rfc-editor@rfc-editor.org">mail</A> about any problems with or comments on this page. <BR> </P>
<p>Funding for the RFC Editor function is currently provided by
the Internet Society.</P>
</P>
</TD></TR></TBODY></TABLE>
</body>
</html>
|