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 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677
|
<pre>Internet Engineering Task Force (IETF) C. Contavalli
Request for Comments: 7871 W. van der Gaast
Category: Informational Google
ISSN: 2070-1721 D. Lawrence
Akamai Technologies
W. Kumari
Google
May 2016
<span class="h1">Client Subnet in DNS Queries</span>
Abstract
This document describes an Extension Mechanisms for DNS (EDNS0)
option that is in active use to carry information about the network
that originated a DNS query and the network for which the subsequent
response can be cached. Since it has some known operational and
privacy shortcomings, a revision will be worked through the IETF for
improvement.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Not all documents
approved by the IESG are a candidate for any level of Internet
Standard; see <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7871">http://www.rfc-editor.org/info/rfc7871</a>.
<span class="grey">Contavalli, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
Copyright Notice
Copyright (c) 2016 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Contavalli, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-2">2</a>. Privacy Note ....................................................<a href="#page-5">5</a>
<a href="#section-3">3</a>. Requirements Notation ...........................................<a href="#page-5">5</a>
<a href="#section-4">4</a>. Terminology .....................................................<a href="#page-6">6</a>
<a href="#section-5">5</a>. Overview ........................................................<a href="#page-7">7</a>
<a href="#section-6">6</a>. Option Format ...................................................<a href="#page-8">8</a>
<a href="#section-7">7</a>. Protocol Description ............................................<a href="#page-9">9</a>
<a href="#section-7.1">7.1</a>. Originating the Option .....................................<a href="#page-9">9</a>
<a href="#section-7.1.1">7.1.1</a>. Recursive Resolvers .................................<a href="#page-9">9</a>
<a href="#section-7.1.2">7.1.2</a>. Stub Resolvers .....................................<a href="#page-10">10</a>
<a href="#section-7.1.3">7.1.3</a>. Forwarding Resolvers ...............................<a href="#page-11">11</a>
<a href="#section-7.2">7.2</a>. Generating a Response .....................................<a href="#page-11">11</a>
<a href="#section-7.2.1">7.2.1</a>. Authoritative Nameserver ...........................<a href="#page-11">11</a>
<a href="#section-7.2.2">7.2.2</a>. Intermediate Nameserver ............................<a href="#page-13">13</a>
<a href="#section-7.3">7.3</a>. Handling ECS Responses and Caching ........................<a href="#page-14">14</a>
<a href="#section-7.3.1">7.3.1</a>. Caching the Response ...............................<a href="#page-15">15</a>
<a href="#section-7.3.2">7.3.2</a>. Answering from Cache ...............................<a href="#page-16">16</a>
<a href="#section-7.4">7.4</a>. Delegations and Negative Answers ..........................<a href="#page-17">17</a>
<a href="#section-7.5">7.5</a>. Transitivity ..............................................<a href="#page-18">18</a>
<a href="#section-8">8</a>. IANA Considerations ............................................<a href="#page-18">18</a>
<a href="#section-9">9</a>. DNSSEC Considerations ..........................................<a href="#page-19">19</a>
<a href="#section-10">10</a>. NAT Considerations ............................................<a href="#page-19">19</a>
<a href="#section-11">11</a>. Security Considerations .......................................<a href="#page-20">20</a>
<a href="#section-11.1">11.1</a>. Privacy ..................................................<a href="#page-20">20</a>
<a href="#section-11.2">11.2</a>. Birthday Attacks .........................................<a href="#page-21">21</a>
<a href="#section-11.3">11.3</a>. Cache Pollution ..........................................<a href="#page-22">22</a>
<a href="#section-12">12</a>. Sending the Option ............................................<a href="#page-23">23</a>
<a href="#section-12.1">12.1</a>. Probing ..................................................<a href="#page-23">23</a>
<a href="#section-12.2">12.2</a>. Whitelist ................................................<a href="#page-24">24</a>
<a href="#section-13">13</a>. Example .......................................................<a href="#page-24">24</a>
<a href="#section-14">14</a>. References ....................................................<a href="#page-26">26</a>
<a href="#section-14.1">14.1</a>. Normative References .....................................<a href="#page-26">26</a>
<a href="#section-14.2">14.2</a>. Informative References ...................................<a href="#page-27">27</a>
Acknowledgements ..................................................<a href="#page-28">28</a>
Contributors ......................................................<a href="#page-29">29</a>
Authors' Addresses ................................................<a href="#page-30">30</a>
<span class="grey">Contavalli, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Many Authoritative Nameservers today return different responses based
on the perceived topological location of the user. These servers use
the IP address of the incoming query to identify that location.
Since most queries come from Intermediate Recursive Resolvers, the
source address is that of the Recursive Resolver rather than of the
query originator.
Traditionally, and probably still in the majority of instances,
Recursive Resolvers are reasonably close in the topological sense to
the Stub Resolvers or Forwarding Resolvers that are the source of
queries. For these resolvers, using their own IP address is
sufficient for Authoritative Nameservers that tailor responses based
upon location of the querier.
Increasingly, though, a class of Recursive Resolvers has arisen that
handles query sources that are often not topologically close. The
motivation for having such Centralized Resolvers varies but is
usually because of some enhanced experience, such as greater cache
security or applying policies regarding where users may connect.
(Although political censorship usually comes to mind here, the same
actions may be used by a parent when setting controls on where a
minor may connect.) Similarly, many ISPs and other organizations use
a Centralized Resolver infrastructure that can be distant from the
clients the resolvers serve. These cases all lead to less than
desirable responses from topology-sensitive Authoritative
Nameservers.
This document defines an EDNS0 [<a href="./rfc6891" title=""Extension Mechanisms for DNS (EDNS(0))"">RFC6891</a>] option to convey network
information that is relevant to the DNS message. It will carry
sufficient network information about the originator for the
Authoritative Nameserver to tailor responses. It will also provide
for the Authoritative Nameserver to indicate the scope of network
addresses for which the tailored answer is intended. This EDNS0
option is intended for those Recursive Resolvers and Authoritative
Nameservers that would benefit from the extension and not for general
purpose deployment. This is completely optional and can safely be
ignored by servers that choose not to implement or enable it.
This document also includes guidelines on how best to cache those
results, and it provides recommendations on when this protocol
extension should be used.
At least a dozen different client and server implementations have
been written based on earlier draft versions of this specification.
The protocol is in active production use today. While the
<span class="grey">Contavalli, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
implementations interoperate, there is varying behavior around edge
cases that were poorly specified. Known incompatibilities are
described in this document, and the authors believe that it is better
to describe the system as it is working today, even if not everyone
agrees with the details of the original specification
([<a href="#ref-VANDERGAAST">VANDERGAAST</a>]). The alternative is an undocumented and proprietary
system.
A revised proposal to improve upon the minor flaws in this protocol
will be forthcoming to the IETF.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Privacy Note</span>
If we were just beginning to design this mechanism, and not
documenting existing protocol, it is unlikely that we would have done
things exactly this way.
The IETF is actively working on enhancing DNS privacy
[<a href="#ref-DPRIVE_Working_Group">DPRIVE_Working_Group</a>] and the reinjection of metadata [<a href="#ref-METADATA">METADATA</a>] has
been identified as a problematic design pattern.
As noted above however, this document primarily describes existing
behavior of a deployed method to further the understanding of the
Internet community.
We recommend that the feature be turned off by default in all
nameserver software, and that operators only enable it explicitly in
those circumstances where it provides a clear benefit for their
clients. We also encourage the deployment of means to allow users to
make use of the opt-out provided. Finally, we recommend that others
avoid techniques that may introduce additional metadata in future
work, as it may damage user trust.
Regrettably, support for the opt-out provisions of this specification
are currently limited. Only one stub resolver, getdns, is known to
be able to originate queries with anonymity requested, and as yet no
applications are known to be able to indicate that user preference to
the stub resolver.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Requirements Notation</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="grey">Contavalli, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Terminology</span>
ECS: EDNS Client Subnet.
Client: A Stub Resolver, Forwarding Resolver, or Recursive Resolver.
A client to a Recursive Resolver or a Forwarding Resolver.
Server: A Forwarding Resolver, Recursive Resolver, or Authoritative
Nameserver.
Stub Resolver: A simple DNS protocol implementation on the client
side as described in <a href="./rfc1034#section-5.3.1">[RFC1034], Section 5.3.1</a>. A client to a
Recursive Resolver or a Forwarding Resolver.
Authoritative Nameserver: A nameserver that has authority over one
or more DNS zones. These are normally not contacted by Stub
Resolver or end user clients directly but by Recursive Resolvers.
Described in <a href="./rfc1035#section-6">[RFC1035], Section 6</a>.
Recursive Resolver: A nameserver that is responsible for resolving
domain names for clients by following the domain's delegation
chain. Recursive Resolvers frequently use caches to be able to
respond to client queries quickly. Described in <a href="./rfc1035#section-7">[RFC1035],
Section 7</a>.
Forwarding Resolver: A nameserver that does not do iterative
resolution itself, but instead passes that responsibility to
another Recursive Resolver, called a "Forwarder" in <a href="./rfc2308#section-1">[RFC2308],
Section 1</a>.
Intermediate Nameserver: Any nameserver in between the Stub Resolver
and the Authoritative Nameserver, such as a Recursive Resolver or
a Forwarding Resolver.
Centralized Resolvers: Intermediate Nameservers that serve a
topologically diverse network address space.
Tailored Response: A response from a nameserver that is customized
for the node that sent the query, often based on performance
(i.e., lowest latency, least number of hops, topological distance,
etc.).
Topologically Close: Refers to two hosts being close in terms of the
number of hops or the time it takes for a packet to travel from
one host to the other. The concept of topological distance is
only loosely related to the concept of geographical distance: two
<span class="grey">Contavalli, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
geographically close hosts can still be very distant from a
topological perspective, and two geographically distant hosts can
be quite close on the network.
For a more comprehensive treatment of DNS terms, please see
[<a href="./rfc7719" title=""DNS Terminology"">RFC7719</a>].
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Overview</span>
The general idea of this document is to provide an EDNS0 option to
allow Recursive Resolvers, if they are willing, to forward details
about the origin network from which a query is coming when talking to
other nameservers.
The format of the edns-client-subnet (ECS) EDNS0 option is described
in <a href="#section-6">Section 6</a> and is meant to be added in queries sent by Intermediate
Nameservers in a way that is transparent to Stub Resolvers and end
users, as described in <a href="#section-7.1">Section 7.1</a>. ECS is only defined for the
Internet (IN) DNS class.
As described in <a href="#section-7.2">Section 7.2</a>, an Authoritative Nameserver could use
ECS as a hint to the end user's network location and provide a better
answer. Its response would also contain an ECS option, clearly
indicating that the server made use of this information, and that the
answer is tied to the client's network.
As described in <a href="#section-7.3">Section 7.3</a>, Intermediate Nameservers would use this
information to cache the response.
Some Intermediate Nameservers may also have to be able to forward ECS
queries they receive, as described in <a href="#section-7.5">Section 7.5</a>.
The mechanisms provided by ECS raise various security-related
concerns related to cache growth, the ability to spoof EDNS0 options,
and privacy. <a href="#section-11">Section 11</a> explores various mitigation techniques.
The expectation, however, is that this option will primarily be used
between Recursive Resolvers and Authoritative Nameservers that are
sensitive to network location issues. Most Recursive Resolvers,
Authoritative Nameservers, and Stub Resolvers will never need to know
about this option and will continue working as they had been.
Failure to support this option or its improper handling will, at
worst, cause suboptimal identification of client network location,
which is a common occurrence in current Content Delivery Network
(CDN) setups.
<span class="grey">Contavalli, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
<a href="#section-7.1">Section 7.1</a> also provides a mechanism for Stub Resolvers to signal
Recursive Resolvers that they do not want ECS treatment for specific
queries.
Additionally, operators of Intermediate Nameservers with ECS enabled
are allowed to choose how many bits of the address of received
queries to forward or to reduce the number of bits forwarded for
queries already including an ECS option.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Option Format</span>
This protocol uses an EDNS0 [<a href="./rfc6891" title=""Extension Mechanisms for DNS (EDNS(0))"">RFC6891</a>] option to include client
address information in DNS messages. The option is structured as
follows:
+0 (MSB) +1 (LSB)
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
0: | OPTION-CODE |
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
2: | OPTION-LENGTH |
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
4: | FAMILY |
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
6: | SOURCE PREFIX-LENGTH | SCOPE PREFIX-LENGTH |
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
8: | ADDRESS... /
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
o (Defined in [<a href="./rfc6891" title=""Extension Mechanisms for DNS (EDNS(0))"">RFC6891</a>]) OPTION-CODE, 2 octets, for ECS is 8 (0x00
0x08).
o (Defined in [<a href="./rfc6891" title=""Extension Mechanisms for DNS (EDNS(0))"">RFC6891</a>]) OPTION-LENGTH, 2 octets, contains the
length of the payload (everything after OPTION-LENGTH) in octets.
o FAMILY, 2 octets, indicates the family of the address contained in
the option, using address family codes as assigned by IANA in
Address Family Numbers [<a href="#ref-Address_Family_Numbers">Address_Family_Numbers</a>].
The format of the address part depends on the value of FAMILY. This
document only defines the format for FAMILY 1 (IPv4) and FAMILY 2
(IPv6), which are as follows:
o SOURCE PREFIX-LENGTH, an unsigned octet representing the leftmost
number of significant bits of ADDRESS to be used for the lookup.
In responses, it mirrors the same value as in the queries.
<span class="grey">Contavalli, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
o SCOPE PREFIX-LENGTH, an unsigned octet representing the leftmost
number of significant bits of ADDRESS that the response covers.
In queries, it MUST be set to 0.
o ADDRESS, variable number of octets, contains either an IPv4 or
IPv6 address, depending on FAMILY, which MUST be truncated to the
number of bits indicated by the SOURCE PREFIX-LENGTH field,
padding with 0 bits to pad to the end of the last octet needed.
o A server receiving an ECS option that uses either too few or too
many ADDRESS octets, or that has non-zero ADDRESS bits set beyond
SOURCE PREFIX-LENGTH, SHOULD return FORMERR to reject the packet,
as a signal to the software developer making the request to fix
their implementation.
All fields are in network byte order ("big-endian", per [<a href="./rfc1700" title=""Assigned Numbers"">RFC1700</a>],
Data Notation).
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Protocol Description</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Originating the Option</span>
The ECS option should generally be added by Recursive Resolvers when
querying Authoritative Nameservers, as described in <a href="#section-12">Section 12</a>. The
option can also be initialized by a Stub Resolver or Forwarding
Resolver.
<span class="h4"><a class="selflink" id="section-7.1.1" href="#section-7.1.1">7.1.1</a>. Recursive Resolvers</span>
The setup of the ECS option in a Recursive Resolver depends on the
client query that triggered the resolution process.
In the usual case, where no ECS option was present in the client
query, the Recursive Resolver initializes the option by setting
FAMILY of the client's address. It then uses the value of its
maximum cacheable prefix length to set SOURCE PREFIX-LENGTH. For
privacy reasons, and because the whole IP address is rarely required
to determine a tailored response, this length SHOULD be shorter than
the full address, as described in <a href="#section-11">Section 11</a>.
If the triggering query included an ECS option itself, it MUST be
examined for its SOURCE PREFIX-LENGTH. The Recursive Resolver's
outgoing query MUST then set SOURCE PREFIX-LENGTH to the shorter of
the incoming query's SOURCE PREFIX-LENGTH or the server's maximum
cacheable prefix length.
<span class="grey">Contavalli, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
Finally, in both cases, SCOPE PREFIX-LENGTH is set to 0 and ADDRESS
is then added up to SOURCE PREFIX-LENGTH number of bits, with
trailing 0 bits added, if needed, to fill the final octet. The total
number of octets used MUST only be enough to cover SOURCE PREFIX-
LENGTH bits, rather than the full width that would normally be used
by addresses in FAMILY.
FAMILY and ADDRESS information MAY be used from the ECS option in the
incoming query. Passing the existing address data is supportive of
the Recursive Resolver being used as the target of a Forwarding
Resolver, but could possibly run into policy problems with regard to
usage agreements between the Recursive Resolver and Authoritative
Nameserver. See <a href="#section-12.2">Section 12.2</a> for more discussion on this point. If
the Recursive Resolver will not forward FAMILY and ADDRESS data from
the incoming ECS option, it SHOULD return a REFUSED response.
Subsequent queries to refresh the data MUST, if unrestricted by an
incoming SOURCE PREFIX-LENGTH, specify the longest SOURCE PREFIX-
LENGTH that the Recursive Resolver is willing to cache, even if a
previous response indicated that a shorter prefix length was
sufficient.
<span class="h4"><a class="selflink" id="section-7.1.2" href="#section-7.1.2">7.1.2</a>. Stub Resolvers</span>
A Stub Resolver MAY generate DNS queries with an ECS option that sets
SOURCE PREFIX-LENGTH to limit how network information should be
revealed. An Intermediate Nameserver that receives such a query MUST
NOT make queries that include more bits of client address than in the
originating query.
A SOURCE PREFIX-LENGTH value of 0 means that the Recursive Resolver
MUST NOT add the client's address information to its queries. The
subsequent Recursive Resolver query to the Authoritative Nameserver
will then either not include an ECS option or MAY optionally include
its own address information, which is what the Authoritative
Nameserver will almost certainly use to generate any Tailored
Response in lieu of an option. This allows the answer to be handled
by the same caching mechanism as other queries, with an explicit
indicator of the applicable scope. Subsequent Stub Resolver queries
for /0 can then be answered from this cached response.
A Stub Resolver MUST set SCOPE PREFIX-LENGTH to 0. It MAY include
FAMILY and ADDRESS data, but should be prepared to handle a REFUSED
response if the Intermediate Nameserver that it queries has a policy
that denies forwarding of ADDRESS. If there is no ADDRESS set, i.e.,
SOURCE PREFIX-LENGTH is set to 0, then FAMILY SHOULD be set to the
transport over which the query is sent. This is for
<span class="grey">Contavalli, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
interoperability; at least one major authoritative server will ignore
the option if FAMILY is not 1 or 2, even though it is irrelevant if
there are no ADDRESS bits.
<span class="h4"><a class="selflink" id="section-7.1.3" href="#section-7.1.3">7.1.3</a>. Forwarding Resolvers</span>
Forwarding Resolvers essentially appear to be Stub Resolvers to
whatever Recursive Resolver is ultimately handling the query, but
they look like a Recursive Resolver to their client. A Forwarding
Resolver using this option MUST prepare it as described in
<a href="#section-7.1.1">Section 7.1.1</a>, "Recursive Resolvers". In particular, a Forwarding
Resolver that implements this protocol MUST honor SOURCE PREFIX-
LENGTH restrictions indicated in the incoming query from its client.
See also <a href="#section-7.5">Section 7.5</a>.
Since the Recursive Resolver it contacts will treat the Forwarding
Resolver like a Stub Resolver, the Recursive Resolver's policies
regarding incoming ADDRESS information will apply in the same way.
If the Forwarding Resolver receives a REFUSED response when it sends
a query that includes a non-zero ADDRESS, it MUST retry with no
ADDRESS.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Generating a Response</span>
<span class="h4"><a class="selflink" id="section-7.2.1" href="#section-7.2.1">7.2.1</a>. Authoritative Nameserver</span>
When a query containing an ECS option is received, an Authoritative
Nameserver supporting ECS MAY use the address information specified
in the option to generate a tailored response.
Authoritative Nameservers that have not implemented or enabled
support for the ECS option ought to safely ignore it within incoming
queries, per <a href="./rfc6891#section-6.1.2">[RFC6891], Section 6.1.2</a>. Such a server MUST NOT
include an ECS option within replies to indicate lack of support for
it. Implementers of Intermediate Nameservers should be aware,
however, that some nameservers incorrectly echo back unknown EDNS0
options. In this protocol, that should be mostly harmless, as the
SCOPE PREFIX-LENGTH should come back as 0, thus marking the response
as covering all networks.
A query with a wrongly formatted option (e.g., an unknown FAMILY)
MUST be rejected and a FORMERR response MUST be returned to the
sender, as described in [<a href="./rfc6891" title=""Extension Mechanisms for DNS (EDNS(0))"">RFC6891</a>], "Transport Considerations".
An Authoritative Nameserver that implements this protocol and
receives an ECS option MUST include an ECS option in its response to
indicate that it SHOULD be cached accordingly, regardless of whether
the client information was needed to formulate an answer. (Note that
<span class="grey">Contavalli, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
the requirement in [<a href="./rfc6891" title=""Extension Mechanisms for DNS (EDNS(0))"">RFC6891</a>] to reserve space for the OPT record
could mean that the Answer section of the response will be truncated
and fall back to TCP indicated accordingly.) If an ECS option was
not included in a query, one MUST NOT be included in the response
even if the server is providing a Tailored Response -- presumably
based on the address from which it received the query.
FAMILY, SOURCE PREFIX-LENGTH, and ADDRESS in the response MUST match
those in the query. Echoing back these values helps to mitigate
certain attack vectors, as described in <a href="#section-11">Section 11</a>.
SCOPE PREFIX-LENGTH in the response indicates the network for which
the answer is intended.
A SCOPE PREFIX-LENGTH value longer than SOURCE PREFIX-LENGTH
indicates that the provided prefix length was not specific enough to
select the most appropriate Tailored Response. Future queries for
the name within the specified network SHOULD use the longer SCOPE
PREFIX-LENGTH. Factors affecting whether the Recursive Resolver
would use the longer length include the amount of privacy masking the
operator wants to provide their users, and the additional resource
implications for the cache.
Conversely, a shorter SCOPE PREFIX-LENGTH indicates that more bits
than necessary were provided, and the answer is suitable for a
broader range of addresses. This could be as short as 0, to indicate
that the answer is suitable for all addresses in FAMILY.
As the logical topology of any part of the network with regard to the
tailored response can vary, an Authoritative Nameserver may return
different values of SCOPE PREFIX-LENGTH for different networks.
Since some queries can result in multiple RRsets being added to the
response, there is an unfortunate ambiguity from the original
specification as to how SCOPE PREFIX-LENGTH would apply to each
individual RRset. For example, multiple types in response to an ANY
metaquery could all have different applicable SCOPE PREFIX-LENGTH
values, but this protocol only has the ability to signal one. The
response SHOULD therefore, include the longest relevant PREFIX-LENGTH
of any RRset in the answer, which could have the unfortunate side
effect of redundantly caching some data that could be cached more
broadly. For the specific case of a Canonical Name (CNAME) chain,
the Authoritative Nameserver SHOULD only place the initial CNAME
record in the Answer section, to have it cached unambiguously and
appropriately. Most modern Recursive Resolvers restart the query
with the CNAME, so the remainder of the chain is typically ignored
<span class="grey">Contavalli, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
anyway. For message-focused resolvers, rather than RRset-focused
ones, this will mean caching the entire CNAME chain at the longest
PREFIX-LENGTH of any RRset in the chain.
The specific logic that an Authoritative Nameserver uses to choose a
tailored response is not in the scope of this document. Implementers
are encouraged, however, to carefully consider their selection of
SCOPE PREFIX-LENGTH for the response in the event that the best
tailored response cannot be determined, and what the implications
would be over the life of the TTL.
Authoritative Nameservers might have situations where one Tailored
Response is appropriate for a relatively broad address range, such as
an IPv4 /20, except for some exceptions, such as a few /24 ranges
within that /20. Because it can't be guaranteed that queries for all
longer prefix lengths would arrive before one that would be answered
by the shorter prefix length, an Authoritative Nameserver MUST NOT
overlap prefixes.
When the Authoritative Nameserver has a longer prefix length Tailored
Response within a shorter prefix length Tailored Response, then
implementations can either:
1. Deaggregate the shorter prefix response into multiple longer
prefix responses, or
2. Alert the operator that the order of queries will determine which
answers get cached, and either warn and continue or treat this as
an error and refuse to load the configuration.
This choice should be documented for the operator, for example, in
the user manual.
When deaggregating to correct the overlap, prefix lengths should be
optimized to use the minimum necessary to cover the address space, in
order to reduce the overhead that results from having multiple copies
of the same answer. As a trivial example, if the Tailored Response
for 1.2.0/20 is A but there is one exception of 1.2.3/24 for B, then
the Authoritative Nameserver would need to provide Tailored Responses
for 1.2.0/23, 1.2.2/24, 1.2.4/22, and 1.2.8/21 all pointing to A, and
1.2.3/24 to B.
<span class="h4"><a class="selflink" id="section-7.2.2" href="#section-7.2.2">7.2.2</a>. Intermediate Nameserver</span>
When an Intermediate Nameserver uses ECS, whether it passes an ECS
option in its own response to its client is predicated on whether the
client originally included the option. Because a client that did not
use an ECS option might not be able to understand it, the server MUST
<span class="grey">Contavalli, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
NOT provide one in its response. If the client query did include the
option, the server MUST include one in its response, especially as it
could be talking to a Forwarding Resolver, which would need the
information for its own caching.
If an Intermediate Nameserver receives a response that has a longer
SCOPE PREFIX-LENGTH than SOURCE PREFIX-LENGTH that it provided in its
query, it SHOULD still provide the result as the answer to the
triggering client request even if the client is in a different
address range. The Intermediate Nameserver MAY instead opt to retry
with a longer SOURCE PREFIX-LENGTH to get a better reply before
responding to its client, as long as it does not exceed a SOURCE
PREFIX-LENGTH specified in the query that triggered resolution, but
this obviously has implications for the latency of the overall
lookup.
The logic for using the cache to determine whether the Intermediate
Nameserver already knows the response to provide to its client is
covered in the next section.
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. Handling ECS Responses and Caching</span>
When an Intermediate Nameserver receives a response containing an ECS
option and without the TC bit set, it SHOULD cache the result based
on the data in the option. If the TC bit was set, the Intermediate
Resolver SHOULD retry the query over TCP to get the complete Answer
section for caching.
If FAMILY, SOURCE PREFIX-LENGTH, and SOURCE PREFIX-LENGTH bits of
ADDRESS in the response don't match the non-zero fields in the
corresponding query, the full response MUST be dropped, as described
in <a href="#section-11">Section 11</a>. In a response to a query that specified only SOURCE
PREFIX-LENGTH for privacy masking, the FAMILY and ADDRESS fields MUST
contain the appropriate non-zero information that the Authoritative
Nameserver used to generate the answer, so that it can be cached
accordingly.
If no ECS option is contained in the response, the Intermediate
Nameserver SHOULD treat this as being equivalent to having received a
SCOPE PREFIX-LENGTH of 0, which is an answer suitable for all client
addresses. See further discussion on the security implications of
this in <a href="#section-11">Section 11</a>.
If a REFUSED response is received from an Authoritative Nameserver,
an ECS-aware resolver MUST retry the query without ECS to distinguish
the response from one where the Authoritative Nameserver is not
responsible for the name, which is a common convention for the
REFUSED status. Similarly, a client of a Recursive Resolver SHOULD
<span class="grey">Contavalli, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
retry after receiving a REFUSED response because it is not
sufficiently clear whether the REFUSED response was because of the
ECS option or some other reason.
<span class="h4"><a class="selflink" id="section-7.3.1" href="#section-7.3.1">7.3.1</a>. Caching the Response</span>
In the cache, all resource records in the Answer section MUST be tied
to the network specified in the response. The appropriate prefix
length depends on the relationship between SOURCE PREFIX-LENGTH,
SCOPE PREFIX-LENGTH, and the maximum cacheable prefix length
configured for the cache.
If SCOPE PREFIX-LENGTH is not longer than SOURCE PREFIX-LENGTH, store
SCOPE PREFIX-LENGTH bits of ADDRESS, and then mark the response as
valid for all addresses that fall within that range.
Similarly, if SOURCE PREFIX-LENGTH is the maximum configured for the
cache, store SOURCE PREFIX-LENGTH bits of ADDRESS, and then mark the
response as valid for all addresses that fall within that range.
If SOURCE PREFIX-LENGTH is shorter than the configured maximum and
SCOPE PREFIX-LENGTH is longer than SOURCE PREFIX-LENGTH, store SOURCE
PREFIX-LENGTH bits of ADDRESS, and then mark the response as valid
only to answer client queries that specify exactly the same SOURCE
PREFIX-LENGTH in their own ECS option.
The handling of DNSSEC-related records in the Answer section was
unspecified in the original draft version of this document and is
inconsistently handled in existing implementations. A Resource
Record Signature (RRSIG) must obviously be tied to the RRset that it
signs, but it is RECOMMENDED that all other DNSSEC records be scoped
at /0. See <a href="#section-9">Section 9</a> for more information.
Note that the Additional and Authority sections from a DNS response
message are specifically excluded here. Any records from these
sections MUST NOT be tied to a network. See <a href="#section-7.4">Section 7.4</a> for more
information.
Records that are cached as /0 because of a query's SOURCE PREFIX-
LENGTH of 0 MUST be distinguished from those that are cached as /0
because of a response's SCOPE PREFIX-LENGTH of 0. The former should
only be used for other /0 queries that the Intermediate Resolver
receives, but the latter is suitable as a response for all networks.
<span class="grey">Contavalli, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
Although omitting network-specific caching will significantly
simplify an implementation, the resulting drop in cache hits is very
likely to defeat most latency benefits provided by ECS. Therefore,
implementing full caching support as described in this section is
strongly RECOMMENDED.
Enabling support for ECS in an Intermediate Nameserver will
significantly increase the size of the cache, reduce the number of
results that can be served from cache, and increase the load on the
server. Implementing the mitigation techniques described in
<a href="#section-11">Section 11</a> is strongly recommended. For cache size issues,
implementers should consider data storage formats that allow the same
answer data to be shared among multiple prefixes.
<span class="h4"><a class="selflink" id="section-7.3.2" href="#section-7.3.2">7.3.2</a>. Answering from Cache</span>
Cache lookups are first done as usual for a DNS query, using the
query tuple of <name, type, class>. Then, the appropriate RRset MUST
be chosen based on the longest prefix matching. The client address
to use for comparison will depend on whether the Intermediate
Nameserver received an ECS option in its client query.
o If no ECS option was provided, the client's address is used.
o If there was an ECS option specifying SOURCE PREFIX-LENGTH and
ADDRESS covering the client's address, the client address is used
but SOURCE PREFIX-LENGTH is initially ignored. If no covering
entry is found and SOURCE PREFIX-LENGTH is shorter than the
configured maximum length allowed for the cache, repeat the cache
lookup for an entry that exactly matches SOURCE PREFIX-LENGTH.
These special entries, which do not cover longer prefix lengths,
occur as described in the previous section.
o If there was an ECS option with an ADDRESS, the ADDRESS from it
MAY be used if the local policy allows. The policy can vary
depending on the agreements the operator of the Intermediate
Nameserver has with Authoritative Nameserver operators; see
<a href="#section-12.2">Section 12.2</a>. If the policy does not allow it, a REFUSED response
SHOULD be sent. See <a href="#section-7.5">Section 7.5</a> for more information.
If a matching network is found and the relevant data is unexpired,
the response is generated as per <a href="#section-7.2">Section 7.2</a>.
If no matching network is found, the Intermediate Nameserver MUST
perform resolution as usual. This is necessary to avoid Tailored
Responses in the cache from being returned to the wrong clients, and
<span class="grey">Contavalli, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
to avoid a single query coming from a client on a different network
from polluting the cache with a Tailored Response for all the users
of that resolver.
<span class="h3"><a class="selflink" id="section-7.4" href="#section-7.4">7.4</a>. Delegations and Negative Answers</span>
The prohibition against tying ECS data to records from the Authority
and Additional sections left an unfortunate ambiguity in the original
specification, primarily with regard to negative answers. The
expectation of the original authors was that ECS would only really be
used for address requests and the positive result in the response's
Answer section, which was the use case that was driving the
definition of the protocol.
For negative answers, some independent implementations of both
resolvers and authorities did not see the section restriction as
necessarily meaning that a given name and type must only have either
positive ECS-tagged answers or a negative answer. They support being
able to tell one part of the network that the data does not exist,
while telling another part of the network that it does.
Several other implementations, however, do not support being able to
mix positive and negative answers; thus, interoperability is a
problem. It is RECOMMENDED that no specific behavior regarding
negative answers be relied upon, but that Authoritative Nameservers
should conservatively expect that Intermediate Nameservers will treat
all negative answers as /0; therefore, they SHOULD set SCOPE PREFIX-
LENGTH accordingly.
This issue is expected to be revisited in a future revision of the
protocol, possibly blessing the mixing of positive and negative
answers. There are implications for cache data structures that
developers should consider when writing new ECS code.
The delegations case is a bit easier to tease out. In operational
practice, if an authoritative server is using address information to
provide customized delegations, it is the resolver that will be using
the answer for its next iterative query. Addresses in the Additional
section SHOULD therefore ignore ECS data, and the Authoritative
Nameserver SHOULD return a zero SCOPE PREFIX-LENGTH on delegations.
A Recursive Resolver SHOULD treat a non-zero SCOPE PREFIX LENGTH in a
delegation as though it were zero.
<span class="grey">Contavalli, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
<span class="h3"><a class="selflink" id="section-7.5" href="#section-7.5">7.5</a>. Transitivity</span>
Generally, ECS options will only be present in DNS messages between a
Recursive Resolver and an Authoritative Nameserver, i.e., one hop.
However, in certain configurations, for example, multi-tier
nameserver setups, it may be necessary to implement transitive
behavior on Intermediate Nameservers.
Any Intermediate Nameserver that forwards ECS options received from
its clients MUST fully implement the caching behavior described in
<a href="#section-7.3">Section 7.3</a>.
An Intermediate Nameserver MAY forward ECS options with address
information. This information MAY match the source IP address of the
incoming query, and MAY have more or fewer address bits than the
nameserver would normally include in a locally originated ECS option.
If an Intermediate Nameserver receives a query with SOURCE PREFIX-
LENGTH set to 0, it MUST NOT include client address information in
queries made to resolve that client's request (see <a href="#section-7.1.2">Section 7.1.2</a>).
If, for any reason, the Intermediate Nameserver does not want to use
the information in an ECS option it receives (too little address
information, network address from a range not authorized to use the
server, private/unroutable address space, etc.), it SHOULD drop the
query and return a REFUSED response. Note again that a query MUST
NOT be refused solely because it provides 0 address bits.
Be aware that at least one major existing implementation does not
return REFUSED and instead just processes the query as though the
problematic information were not present. This can lead to anomalous
situations, such as a response from the Intermediate Nameserver that
indicates it is tailored for one network (the one passed in the
original query, since the ADDRESS must match) when actually it is for
another network (the one which contains the address that the
Intermediate Nameserver saw as making the query).
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. IANA Considerations</span>
IANA has assigned option code 8 in the "DNS EDNS0 Option Codes (OPT)"
registry to edns-client-subnet.
IANA has updated the reference to refer to this RFC.
<span class="grey">Contavalli, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. DNSSEC Considerations</span>
The presence or absence of an EDNS0 OPT resource record ([<a href="./rfc6891" title=""Extension Mechanisms for DNS (EDNS(0))"">RFC6891</a>])
containing an ECS option in a DNS query does not change the usage of
the resource records and mechanisms used to provide data origin
authentication and data integrity to the DNS, as described in
[<a href="./rfc4033" title=""DNS Security Introduction and Requirements"">RFC4033</a>], [<a href="./rfc4034" title=""Resource Records for the DNS Security Extensions"">RFC4034</a>], and [<a href="./rfc4035" title=""Protocol Modifications for the DNS Security Extensions"">RFC4035</a>]. OPT records are not signed.
Use of this option, however, does imply increased DNS traffic between
any given Recursive Resolver and Authoritative Nameserver, which
could be another barrier to further DNSSEC adoption in this area.
The initial version of this protocol, against which several
Authoritative and Recursive Nameserver implementations were written,
did not discuss the handling of DNSSEC RRs; thus, it is expected that
there are operational inconsistencies in handling them.
Given the intention of this document to describe how ECS is currently
deployed, specifying new requirements for DNSSEC handling is out of
scope. However, some recommendations can be made as to what is most
likely to result in successful interoperation for a DNSSEC-signed ECS
zone, mainly from the point of view of Authoritative Nameservers.
Most DNSSEC records SHOULD be scoped at /0, except for the RRSIG
records, which MUST be tied to the RRset that they sign in a Tailored
Response. While it is possible to conceive of a way to get other
DNSSEC records working in a network-specific way, it has little
apparent benefit or likelihood of working with deployed validating
resolvers.
One further implication here is that, despite the discussion about
negative answers in <a href="#section-7.4">Section 7.4</a>, scoping NextSECure (NSEC) or NSEC3
records at /0 per the previous paragraph necessarily implies that
DNSSEC-signed negative answers must also be network-invariant.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. NAT Considerations</span>
Special awareness of ECS in devices that perform Network Address
Translation (NAT) as described in [<a href="./rfc2663" title=""IP Network Address Translator (NAT) Terminology and Considerations"">RFC2663</a>] is not required; queries
can be passed through as is. The client's network address SHOULD NOT
be added, and existing ECS options, if present, SHOULD NOT be
modified by NAT devices.
In large-scale global networks behind a NAT device (but, for example
with Centralized Resolver infrastructure), an internal Intermediate
Nameserver might have detailed network layout information, and may
<span class="grey">Contavalli, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
know which external subnets are used for egress traffic by each
internal network. In such cases, the Intermediate Nameserver MAY use
that information when originating ECS options.
In other cases, if a Recursive Resolver knows that it is situated
behind a NAT device, it SHOULD NOT originate ECS options with their
external IP address and instead rely on downstream Intermediate
Nameservers to do so. It MAY, however, choose to include the option
with their internal address for the purposes of signaling its own
limit for SOURCE PREFIX-LENGTH.
Full treatment of special network addresses is beyond the scope of
this document; handling them will likely differ according to the
operational environments of each service provider. As a general
guideline, if an Authoritative Nameserver on the publicly routed
Internet receives a query that specifies an ADDRESS in [<a href="./rfc1918" title=""Address Allocation for Private Internets"">RFC1918</a>] or
[<a href="./rfc4193" title=""Unique Local IPv6 Unicast Addresses"">RFC4193</a>] private address space, it SHOULD ignore ADDRESS and look up
its answer based on the address of the Recursive Resolver. In the
response, it SHOULD set SCOPE PREFIX-LENGTH to cover all of the
relevant private space. For example, a query for ADDRESS 10.1.2.0
with a SOURCE PREFIX-LENGTH of 24 would get a returned SCOPE PREFIX-
LENGTH of 8. The Intermediate Nameserver MAY elect to cache the
answer under one entry for special-purpose addresses [<a href="./rfc6890" title=""Special-Purpose IP Address Registries"">RFC6890</a>]; see
<a href="#section-11.3">Section 11.3</a> of this document.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Security Considerations</span>
<span class="h3"><a class="selflink" id="section-11.1" href="#section-11.1">11.1</a>. Privacy</span>
With the ECS option, the network address of the client that initiated
the resolution becomes visible to all servers involved in the
resolution process. Additionally, it will be visible from any
network traversed by the DNS packets.
To protect users' privacy, Recursive Resolvers are strongly
encouraged to conceal part of the user's IP address by truncating
IPv4 addresses to 24 bits. 56 bits are recommended for IPv6, based on
[<a href="./rfc6177" title=""IPv6 Address Assignment to End Sites"">RFC6177</a>].
ISPs should have more detailed knowledge of their own networks. That
is, they might know that all 24-bit prefixes in a /20 are in the same
area. In those cases, for optimal cache utilization and improved
privacy, the ISP's Recursive Resolver SHOULD truncate IP addresses in
this /20 to just 20 bits, instead of 24 as recommended above.
Users who wish their full IP address to be hidden need to configure
their client software, if possible, to include an ECS option
specifying the wildcard address (i.e., a SOURCE PREFIX-LENGTH of 0).
<span class="grey">Contavalli, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
As described in previous sections, this option will be forwarded
across all the Recursive Resolvers supporting ECS, which MUST NOT
modify it to include the network address of the client.
Note that even without an ECS option, any server queried directly by
the user will be able to see the full client IP address. Recursive
Resolvers or Authoritative Nameservers MAY use the source IP address
of queries to return a cached entry or to generate a Tailored
Response that best matches the query.
<span class="h3"><a class="selflink" id="section-11.2" href="#section-11.2">11.2</a>. Birthday Attacks</span>
ECS adds information to the DNS query tuple (q-tuple). This allows
an attacker to send a caching Intermediate Nameserver multiple
queries with spoofed IP addresses either in the ECS option or as the
source IP. These queries will trigger multiple outgoing queries with
the same name, type, and class, just with different address
information in the ECS option.
With multiple queries for the same name in flight, the attacker has a
higher chance of success to send a matching response with SCOPE
PREFIX-LENGTH set to 0 to get it cached for all hosts.
To counter this, the ECS option in a response packet MUST contain the
full FAMILY, ADDRESS, and SOURCE PREFIX-LENGTH fields from the
corresponding query. Intermediate Nameservers processing a response
MUST verify that these match, and they SHOULD discard the entire
response if they do not.
The requirement to discard is categorized as "SHOULD" instead of
"MUST" because it stands in opposition to the instruction in
<a href="#section-7.3">Section 7.3</a>, which states that a response lacking an ECS option
should be treated as though it had one of SCOPE PREFIX-LENGTH of 0.
If that is always true, then an attacker does not need to worry about
matching the original ECS option data and just needs to flood back
responses that have no ECS option at all.
This type of attack could be detected in ongoing operations by
marking whether the responding nameserver had previously been sending
ECS options and/or by taking note of an incoming flood of bogus
responses and flagging the relevant query for re-resolution. This
type of detection is more complex than existing nameserver responses
to spoof floods, and it would also need to be sensitive to a
nameserver legitimately stopping ECS replies even though it had
previously given them.
<span class="grey">Contavalli, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
<span class="h3"><a class="selflink" id="section-11.3" href="#section-11.3">11.3</a>. Cache Pollution</span>
It is simple for an arbitrary resolver or client to provide false
information in the ECS option, or to send UDP packets with forged
source IP addresses.
This could be used to:
o pollute the cache of Intermediate Resolvers by filling it with
results that will rarely (if ever) be used.
o reverse-engineer the algorithms (or data) used by the
Authoritative Nameserver to calculate Tailored Responses.
o mount a denial-of-service attack against an Intermediate
Nameserver by forcing it to perform many more recursive queries
than it would normally do, due to how caching is handled for
queries containing the ECS option.
Even without malicious intent, Centralized Resolvers providing
answers to clients in multiple networks will need to cache different
responses for different networks, putting more memory pressure on the
cache.
To mitigate those problems:
o Recursive Resolvers implementing ECS should only enable it in
deployments where it is expected to bring clear advantages to the
end users, such as when expecting clients from a variety of
networks or from a wide geographical area. Due to the high cache
pressure introduced by ECS, the feature SHOULD be disabled in all
default configurations.
o Recursive Resolvers SHOULD limit the number of networks and
answers they keep in the cache for any given query.
o Recursive Resolvers SHOULD limit the total number of different
networks that they keep in cache.
o Recursive Resolvers MUST NOT send an ECS option with SOURCE
PREFIX-LENGTH providing more bits in ADDRESS than they are willing
to cache responses for.
o Recursive Resolvers should implement algorithms to improve the
cache hit rate, given the size constraints indicated above.
Recursive Resolvers MAY, for example, decide to discard more-
specific cache entries first.
<span class="grey">Contavalli, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
o Authoritative Nameservers and Recursive Resolvers should discard
ECS options that are either obviously forged or otherwise known to
be wrong. They SHOULD at least treat unroutable addresses, such
as some of the address blocks defined in [<a href="./rfc6890" title=""Special-Purpose IP Address Registries"">RFC6890</a>], as equivalent
to the Recursive Resolver's own identity. They SHOULD ignore and
never forward ECS options specifying other routable addresses that
are known not to be served by the query source.
o The ECS option is just a hint to Authoritative Nameservers for
customizing results. They can decide to ignore the content of the
ECS option based on blacklists or whitelists, rate-limiting
mechanisms, or any other logic implemented in the software.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Sending the Option</span>
When implementing a Recursive Resolver, there are two strategies on
deciding when to include an ECS option in a query. At this stage,
it's not clear which strategy is best.
<span class="h3"><a class="selflink" id="section-12.1" href="#section-12.1">12.1</a>. Probing</span>
A Recursive Resolver can send the ECS option with every outgoing
query. However, it is RECOMMENDED that resolvers remember which
Authoritative Nameservers did not return the option with their
response and omit client address information from subsequent queries
to those nameservers.
Additionally, Recursive Resolvers SHOULD be configured never to send
the option when querying root, top-level, and effective top-level
(i.e., "public suffix" [<a href="#ref-Public_Suffix_List">Public_Suffix_List</a>]) domain servers. These
domains are delegation-centric and are very unlikely to generate
different responses based on the address of the client.
When probing, it is important that several things are probed: support
for ECS, support for EDNS0, support for EDNS0 options, or possibly an
unreachable nameserver. Various implementations are known to drop
DNS packets with OPT RRs (with or without options), thus several
probes are required to discover what is supported.
Probing, if implemented, MUST be repeated periodically, e.g., daily.
If an Authoritative Nameserver indicates ECS support for one zone, it
is to be expected that the nameserver supports ECS for all of its
zones. Likewise, an Authoritative Nameserver that uses ECS
information for one of its zones MUST indicate support for the option
in all of its responses to ECS queries. If the option is supported
but not actually used for generating a response, its SCOPE PREFIX-
LENGTH MUST be set to 0.
<span class="grey">Contavalli, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
<span class="h3"><a class="selflink" id="section-12.2" href="#section-12.2">12.2</a>. Whitelist</span>
As described previously, it is expected that only a few Recursive
Resolvers will need to use ECS, and that it will generally be enabled
only if it offers a clear benefit to the users.
To avoid the complexity of implementing a probing and detection
mechanism (and the possible query loss/delay that may come with it),
an implementation could use a whitelist of Authoritative Nameservers
to send the option to, likely specified by their domain name.
Implementations MAY also allow additional configuring of this based
on other criteria, such as zone or query type. As of the time of
this writing, at least one implementation makes use of a whitelist.
An advantage of using a whitelist is that partial client address
information is only disclosed to nameservers that are known to use
the information, improving privacy.
A drawback is scalability. The operator needs to track which
Authoritative Nameservers support ECS, making it harder for new
Authoritative Nameservers to start using the option.
Similarly, Authoritative Nameservers can also use whitelists to limit
the feature to only certain clients. For example, a CDN that does
not want all of their mapping trivially walked might require a legal
agreement with the Recursive Resolver operator, to clearly describe
the acceptable use of the feature.
The maintenance of access control mechanisms is out of scope for this
protocol definition.
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Example</span>
1. A Stub Resolver, SR, with the IP address
2001:0db8:fd13:4231:2112:8a2e:c37b:7334 tries to resolve
www.example.com by forwarding the query to the Recursive
Resolver, RNS, asking for recursion.
2. RNS, supporting ECS, looks up www.example.com in its cache. An
entry is found neither for www.example.com nor for example.com.
3. RNS builds a query to send to the root and .com servers. The
implementation of RNS provides facilities so that an
administrator can configure it not to forward ECS in certain
cases. In particular, RNS is configured not to include an ECS
option when talking to Top-Level-Domain or root nameservers, as
described in <a href="#section-7.1">Section 7.1</a>. Thus, no ECS option is added, and
resolution is performed as usual.
<span class="grey">Contavalli, et al. Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
4. RNS now knows the next server to query: the Authoritative
Nameserver, ANS, responsible for example.com.
5. RNS prepares a new query for www.example.com, including an ECS
option with:
* OPTION-CODE set to 8.
* OPTION-LENGTH set to 0x00 0x0b for the following fixed 4
octets plus the 7 octets that will be used for ADDRESS.
* FAMILY set to 0x00 0x02, as IP is an IPv6 address.
* SOURCE PREFIX-LENGTH set to 0x38, as RNS is configured to
conceal the last 72 bits of every IPv6 address.
* SCOPE PREFIX-LENGTH set to 0x00, as specified by this
document for all queries.
* ADDRESS set to 0x20 0x01 0x0d 0xb8 0xfd 0x13 0x42, providing
only the first 56 bits of the IPv6 address.
6. The query is sent. ANS understands and uses ECS. It parses the
ECS option, and generates a Tailored Response.
7. Due its internal implementation, ANS finds a response that is
tailored for the whole /16 of the client that performed the
query.
8. ANS adds an ECS option in the response, containing:
* OPTION-CODE set to 8.
* OPTION-LENGTH set to 0x00 0x07.
* FAMILY set to 0x00 0x02.
* SOURCE PREFIX-LENGTH set to 0x38, copied from the query.
* SCOPE PREFIX-LENGTH set to 0x30, indicating a /48 network.
* ADDRESS set to 0x20 0x01 0x0d 0xb8 0xfd 0x13 0x42, copied
from the query.
9. RNS receives the response containing an ECS option. It verifies
that FAMILY, SOURCE PREFIX-LENGTH, and ADDRESS match the query.
If not, the message is discarded.
<span class="grey">Contavalli, et al. Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
10. The response is interpreted as usual. Since the response
contains an ECS option, ADDRESS, SCOPE PREFIX-LENGTH, and FAMILY
in the response are used to cache the entry.
11. RNS sends a response to Stub Resolver, SR, without including an
ECS option.
12. RNS receives another query to resolve www.example.com. This
time, a response is cached. The response, however, is tied to a
particular network. If the client's address matches any network
in the cache, then the response is returned from the cache.
Otherwise, another query is performed. If multiple results
match, the one with the longest SCOPE PREFIX-LENGTH is chosen,
as per common best-network-match algorithms.
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>. References</span>
<span class="h3"><a class="selflink" id="section-14.1" href="#section-14.1">14.1</a>. Normative References</span>
[<a id="ref-RFC1034">RFC1034</a>] Mockapetris, P., "Domain Names - Concepts and Facilities",
STD 13, <a href="./rfc1034">RFC 1034</a>, DOI 10.17487/RFC1034, November 1987,
<<a href="http://www.rfc-editor.org/info/rfc1034">http://www.rfc-editor.org/info/rfc1034</a>>.
[<a id="ref-RFC1035">RFC1035</a>] Mockapetris, P., "Domain Names - Implementation and
Specification", STD 13, <a href="./rfc1035">RFC 1035</a>, DOI 10.17487/RFC1035,
November 1987, <<a href="http://www.rfc-editor.org/info/rfc1035">http://www.rfc-editor.org/info/rfc1035</a>>.
[<a id="ref-RFC1700">RFC1700</a>] Reynolds, J. and J. Postel, "Assigned Numbers", <a href="./rfc1700">RFC 1700</a>,
DOI 10.17487/RFC1700, October 1994,
<<a href="http://www.rfc-editor.org/info/rfc1700">http://www.rfc-editor.org/info/rfc1700</a>>.
[<a id="ref-RFC1918">RFC1918</a>] Rekhter, Y., Moskowitz, B., Karrenberg, D., de Groot, G.,
and E. Lear, "Address Allocation for Private Internets",
<a href="https://www.rfc-editor.org/bcp/bcp5">BCP 5</a>, <a href="./rfc1918">RFC 1918</a>, DOI 10.17487/RFC1918, February 1996,
<<a href="http://www.rfc-editor.org/info/rfc1918">http://www.rfc-editor.org/info/rfc1918</a>>.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC4033">RFC4033</a>] Arends, R., Austein, R., Larson, M., Massey, D., and S.
Rose, "DNS Security Introduction and Requirements",
<a href="./rfc4033">RFC 4033</a>, DOI 10.17487/RFC4033, March 2005,
<<a href="http://www.rfc-editor.org/info/rfc4033">http://www.rfc-editor.org/info/rfc4033</a>>.
<span class="grey">Contavalli, et al. Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
[<a id="ref-RFC4034">RFC4034</a>] Arends, R., Austein, R., Larson, M., Massey, D., and S.
Rose, "Resource Records for the DNS Security Extensions",
<a href="./rfc4034">RFC 4034</a>, DOI 10.17487/RFC4034, March 2005,
<<a href="http://www.rfc-editor.org/info/rfc4034">http://www.rfc-editor.org/info/rfc4034</a>>.
[<a id="ref-RFC4035">RFC4035</a>] Arends, R., Austein, R., Larson, M., Massey, D., and S.
Rose, "Protocol Modifications for the DNS Security
Extensions", <a href="./rfc4035">RFC 4035</a>, DOI 10.17487/RFC4035, March 2005,
<<a href="http://www.rfc-editor.org/info/rfc4035">http://www.rfc-editor.org/info/rfc4035</a>>.
[<a id="ref-RFC4193">RFC4193</a>] Hinden, R. and B. Haberman, "Unique Local IPv6 Unicast
Addresses", <a href="./rfc4193">RFC 4193</a>, DOI 10.17487/RFC4193, October 2005,
<<a href="http://www.rfc-editor.org/info/rfc4193">http://www.rfc-editor.org/info/rfc4193</a>>.
[<a id="ref-RFC6177">RFC6177</a>] Narten, T., Huston, G., and L. Roberts, "IPv6 Address
Assignment to End Sites", <a href="https://www.rfc-editor.org/bcp/bcp157">BCP 157</a>, <a href="./rfc6177">RFC 6177</a>,
DOI 10.17487/RFC6177, March 2011,
<<a href="http://www.rfc-editor.org/info/rfc6177">http://www.rfc-editor.org/info/rfc6177</a>>.
[<a id="ref-RFC6890">RFC6890</a>] Cotton, M., Vegoda, L., Bonica, R., Ed., and B. Haberman,
"Special-Purpose IP Address Registries", <a href="https://www.rfc-editor.org/bcp/bcp153">BCP 153</a>,
<a href="./rfc6890">RFC 6890</a>, DOI 10.17487/RFC6890, April 2013,
<<a href="http://www.rfc-editor.org/info/rfc6890">http://www.rfc-editor.org/info/rfc6890</a>>.
[<a id="ref-RFC6891">RFC6891</a>] Damas, J., Graff, M., and P. Vixie, "Extension Mechanisms
for DNS (EDNS(0))", STD 75, <a href="./rfc6891">RFC 6891</a>,
DOI 10.17487/RFC6891, April 2013,
<<a href="http://www.rfc-editor.org/info/rfc6891">http://www.rfc-editor.org/info/rfc6891</a>>.
<span class="h3"><a class="selflink" id="section-14.2" href="#section-14.2">14.2</a>. Informative References</span>
[<a id="ref-Address_Family_Numbers">Address_Family_Numbers</a>]
IANA, "Address Family Numbers",
<<a href="http://www.iana.org/assignments/address-family-numbers">http://www.iana.org/assignments/address-family-numbers</a>>.
[<a id="ref-DPRIVE_Working_Group">DPRIVE_Working_Group</a>]
IETF, "PNS PRIVate Exchange (dprive) DPRIVE Working
Group", 2015,
<<a href="https://datatracker.ietf.org/wg/dprive/charter/">https://datatracker.ietf.org/wg/dprive/charter/</a>>.
[<a id="ref-METADATA">METADATA</a>]
Hardie, T., Ed., "Design considerations for Metadata
Insertion", Work in Progress, <a href="./draft-hardie-privsec-metadata-insertion-02">draft-hardie-privsec-</a>
<a href="./draft-hardie-privsec-metadata-insertion-02">metadata-insertion-02</a>, March 2016.
[<a id="ref-Public_Suffix_List">Public_Suffix_List</a>]
"Public Suffix List", <<a href="https://publicsuffix.org/">https://publicsuffix.org/</a>>.
<span class="grey">Contavalli, et al. Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
[<a id="ref-RFC2308">RFC2308</a>] Andrews, M., "Negative Caching of DNS Queries (DNS
NCACHE)", <a href="./rfc2308">RFC 2308</a>, DOI 10.17487/RFC2308, March 1998,
<<a href="http://www.rfc-editor.org/info/rfc2308">http://www.rfc-editor.org/info/rfc2308</a>>.
[<a id="ref-RFC2663">RFC2663</a>] Srisuresh, P. and M. Holdrege, "IP Network Address
Translator (NAT) Terminology and Considerations",
<a href="./rfc2663">RFC 2663</a>, DOI 10.17487/RFC2663, August 1999,
<<a href="http://www.rfc-editor.org/info/rfc2663">http://www.rfc-editor.org/info/rfc2663</a>>.
[<a id="ref-RFC7719">RFC7719</a>] Hoffman, P., Sullivan, A., and K. Fujiwara, "DNS
Terminology", <a href="./rfc7719">RFC 7719</a>, DOI 10.17487/RFC7719, December
2015, <<a href="http://www.rfc-editor.org/info/rfc7719">http://www.rfc-editor.org/info/rfc7719</a>>.
[<a id="ref-VANDERGAAST">VANDERGAAST</a>]
Contavalli, C., Gaast, W., Leach, S., and E. Lewis,
"Client Subnet in DNS Requests", Work in Progress,
<a href="./draft-vandergaast-edns-client-subnet-02">draft-vandergaast-edns-client-subnet-02</a>, July 2013.
Acknowledgements
The authors wish to thank Darryl Rodden for his work as a co-author,
and the following people for reviewing this document and for
providing useful feedback: Paul S. R. Chisholm, B. Narendran,
Leonidas Kontothanassis, David Presotto, Philip Rowlands, Chris
Morrow, Kara Moscoe, Alex Nizhner, Warren Kumari, and Richard Rabbat
from Google; Terry Farmer, Mark Teodoro, Edward Lewis, and Eric
Burger from Neustar; David Ulevitch and Matthew Dempsky from OpenDNS;
Patrick W. Gilmore and Steve Hill from Akamai; Colm MacCarthaigh and
Richard Sheehan from Amazon; Tatuya Jinmei from Infoblox; Andrew
Sullivan from Dyn; John Dickinson from Sinodun; Mark Delany from
Apple; Yuri Schaeffer from NLnet Labs; Duane Wessels Verisign;
Antonio Querubin; Daniel Kahn Gillmor from the ACLU; Evan Hunt and
Mukund Sivaraman from the Internet Software Consortium; Russ Housley
from Vigilsec; Stephen Farrell from Trinity College Dublin; Alissa
Cooper from Cisco; Suzanne Woolf; and all of the other people that
replied to our emails on various mailing lists.
<span class="grey">Contavalli, et al. Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
Contributors
The individuals below contributed significantly to this document.
Edward Lewis
ICANN
12025 Waterfront Drive, Suite 300
Los Angeles, CA 90094-2536
United States
Email: edward.lewis@icann.org
Sean Leach
Fastly
P.O. Box 78266
San Francisco, CA 94107
United States
Jason Moreau
Akamai Technologies
150 Broadway
Cambridge, MA 02142-1413
United States
<span class="grey">Contavalli, et al. Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7871">RFC 7871</a> Client Subnet in DNS Queries May 2016</span>
Authors' Addresses
Carlo Contavalli
Google
1600 Amphitheater Parkway
Mountain View, CA 94043
United States
Email: ccontavalli@google.com
Wilmer van der Gaast
Google
Belgrave House, 76 Buckingham Palace Road
London SW1W 9TQ
United Kingdom
Email: wilmer@google.com
David C Lawrence
Akamai Technologies
150 Broadway
Cambridge, MA 02142-1054
United States
Email: tale@akamai.com
Warren Kumari
Google
1600 Amphitheatre Parkway
Mountain View, CA 94043
United States
Email: warren@kumari.net
Contavalli, et al. Informational [Page 30]
</pre>
|