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
|
<pre>Network Working Group M. Wasserman, Ed.
Request for Comments: 3314 Wind River
Category: Informational September 2002
<span class="h1">Recommendations for IPv6 in</span>
<span class="h1">Third Generation Partnership Project (3GPP) Standards</span>
Status of this Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2002). All Rights Reserved.
Abstract
This document contains recommendations from the Internet Engineering
Task Force (IETF) IPv6 Working Group to the Third Generation
Partnership Project (3GPP) community regarding the use of IPv6 in the
3GPP standards. Specifically, this document recommends that the 3GPP
specify that multiple prefixes may be assigned to each primary PDP
context, require that a given prefix must not be assigned to more
than one primary PDP context, and allow 3GPP nodes to use multiple
identifiers within those prefixes, including randomly generated
identifiers.
The IPv6 Working Group supports the use of IPv6 within 3GPP and
offers these recommendations in a spirit of open cooperation between
the IPv6 Working Group and the 3GPP community. Since the original
publication of this document as an Internet-Draft, the 3GPP has
adopted the primary recommendations of this document.
Conventions Used In This Document
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="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>
[<a href="#ref-KEYWORD" title=""Key words for use in RFCs to Indicate Requirement Levels"">KEYWORD</a>].
<span class="grey">Wasserman Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
Table of Contents
<a href="#section-1">1</a> Introduction............................................. <a href="#page-2">2</a>
<a href="#section-1.1">1.1</a> What is the 3GPP?........................................ <a href="#page-3">3</a>
<a href="#section-1.2">1.2</a> What is the IETF?........................................ <a href="#page-4">4</a>
<a href="#section-1.3">1.3</a> Terminology.............................................. <a href="#page-4">4</a>
<a href="#section-1.3.1">1.3.1</a> 3GPP Terminology......................................... <a href="#page-4">4</a>
<a href="#section-1.3.2">1.3.2</a> IETF Terminology......................................... <a href="#page-5">5</a>
<a href="#section-1.4">1.4</a> Overview of the IPv6 Addressing Architecture............. <a href="#page-6">6</a>
<a href="#section-1.5">1.5</a> An IP-Centric View of the 3GPP System.................... <a href="#page-7">7</a>
<a href="#section-1.5.1">1.5.1</a> Overview of the UMTS Architecture........................ <a href="#page-7">7</a>
<a href="#section-1.5.2">1.5.2</a> The PDP Context.......................................... <a href="#page-10">10</a>
<a href="#section-1.5.3">1.5.3</a> IPv6 Address Autoconfiguration in GPRS................... <a href="#page-11">11</a>
<a href="#section-2">2</a> Recommendations to the 3GPP.............................. <a href="#page-13">13</a>
<a href="#section-2.1">2.1</a> Limitations of 3GPP Address Assignment................... <a href="#page-13">13</a>
<a href="#section-2.2">2.2</a> Advertising Multiple Prefixes............................ <a href="#page-14">14</a>
<a href="#section-2.3">2.3</a> Assigning a Prefix to Only One Primary PDP Context....... <a href="#page-14">14</a>
<a href="#section-2.3.1">2.3.1</a> Is a /64 per PDP Context Too Much?....................... <a href="#page-15">15</a>
<a href="#section-2.3.2">2.3.2</a> Prefix Information in the SGSN........................... <a href="#page-16">16</a>
<a href="#section-2.4">2.4</a> Multiple Identifiers per PDP Context..................... <a href="#page-16">16</a>
<a href="#section-3">3</a> Additional IPv6 Work Items............................... <a href="#page-16">16</a>
<a href="#section-4">4</a> Security Considerations.................................. <a href="#page-17">17</a>
<a href="#appendix-A">Appendix A</a>: Analysis of Findings................................ <a href="#page-18">18</a>
Address Assignment Solutions..................................... <a href="#page-18">18</a>
References....................................................... <a href="#page-19">19</a>
Authors and Acknowledgements..................................... <a href="#page-22">22</a>
Editor's Address................................................. <a href="#page-22">22</a>
Full Copyright Statement......................................... <a href="#page-23">23</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
In May 2001, the IPv6 Working Group (WG) held an interim meeting in
Redmond, WA to discuss the use of IPv6 within the 3GPP standards.
The first day of the meeting was a joint discussion with 3GPP, during
which an architectural overview of 3GPP's usage of IPv6 was
presented, and there was much discussion regarding particular aspects
of IPv6 usage within 3GPP. At that meeting, a decision was made to
form a design team to write a document offering advice from the IPv6
WG to the 3GPP community, regarding their use of IPv6. This document
is the result of that effort.
This document offers recommendations to the 3GPP community from the
IETF IPv6 Working Group. It is organized into three main sections:
1. An introduction (this section) that provides background
information regarding the IETF IPv6 WG and the 3GPP and
includes a high-level overview of the technologies discussed in
this document.
<span class="grey">Wasserman Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
2. Recommendations from the IPv6 WG to the 3GPP community. These
can be found in <a href="#section-2">section 2</a>.
3. Further work items that should be considered by the IPv6 WG.
These items are discussed in <a href="#section-3">section 3</a>.
It is the purpose of this document to provide advice from the IPv6
Working Group to the 3GPP community. We have limited the contents of
this document to items that are directly related to the use of IPv6
within 3GPP. This document defines no standards, and it is not a
definitive source of information regarding IPv6 or 3GPP. We have not
chosen to explore 3GPP-related issues with other IETF protocols
(i.e., SIP, IPv4, etc.), as they are outside the scope of the IPv6
Working Group.
The IPv6 Working Group fully supports the use of IPv6 within 3GPP,
and we encourage 3GPP implementers and operators to participate in
the IETF process. We are offering these suggestions in a spirit of
open cooperation between the IPv6 Working Group and the 3GPP
community, and we hope that our ongoing cooperation will help to
strengthen both sets of standards.
The 3GPP address allocation information in this document is based on
the 3GPP document TS 23.060 version 4.1.0 [<a href="#ref-OLD-TS23060" title=""General Packet Radio Service (GPRS); Service description; Stage 2"">OLD-TS23060</a>]. At the 3GPP
plenary meeting TSG #15 in March 2002, the 3GPP adopted the two
primary recommendations contained in this document, allocating a
unique prefix to each primary PDP context when IPv6 stateless address
autoconfiguration is used, and allowing the terminals to use multiple
interface identifiers. These changes were retroactively applied from
3GPP release 99 onwards, in TS23.060 versions 3.11.0, 4.4.0 and 5.1.0
[<a href="#ref-NEW-TS23060">NEW-TS23060</a>].
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a> What is the 3GPP?</span>
The Third Generation Partnership Project (3GPP) is a global
standardization partnership founded in late 1998. Its Organizational
Partners have agreed to co-operate in the production of technical
specifications for a Third Generation Mobile System, based on the
evolved GSM core networks.
The 3GPP Organizational Partners consist of several different
standardization organizations: ETSI from Europe, Standards Committee
T1 Telecommunications (T1) in the USA, China Wireless
Telecommunication Standard Group (CWTS), Korean Telecommunications
Technology Association (TTA), the Association of Radio Industries and
Businesses (ARIB), and the Telecommunication Technology
Committee(TTC) in Japan.
<span class="grey">Wasserman Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
The work is coordinated by a Project Co-ordination Group (PCG), and
structured into Technical Specification Groups (TSGs). There are
five TSGs: Core Network (TSG CN), Radio Access Networks (TSG RAN),
Services and System Aspects (TSG SA), GSM/EDGE Radio Access Network
(GERAN), and the Terminals (TSG T). The TSGs are further divided
into Working Groups (WGs). The technical work is done in the working
groups, and later approved in the TSGs.
3GPP working methods are different from IETF working methods. The
major difference is where the majority of the work is done. In 3GPP,
the work is done in face-to-face meetings, and the mailing list is
used mainly for distributing contributions, and for handling
documents that were not handled in the meeting, due to lack of time.
Decisions are usually made by consensus, though voting does exist.
However, it is rather rare to vote. 3GPP documents are public and
can be accessed via the 3GPP web site [<a href="#ref-3GPP-URL">3GPP-URL</a>].
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a> What is the IETF?</span>
The Internet Engineering Task Force (IETF) is a large, open,
international community of network designers, operators, vendors, and
researchers, concerned with the evolution of the Internet
architecture and the smooth operation of the Internet. The IETF is
also the primary standards body developing Internet protocols and
standards. It is open to any interested individual. More
information about the IETF can be found at the IETF web site [IETF-
URL].
The actual technical work of the IETF is done in working groups,
organized by topic into several areas (e.g., routing, transport,
security, etc.). The IPv6 Working Group is chartered within the
Internet area of the IETF. Much of the work is handled via mailing
lists, and the IETF holds meetings three times per year.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a> Terminology</span>
This section defines the 3GPP and IETF terminology used in this
document. The 3GPP terms and their meanings have been taken from
[<a href="#ref-TR21905" title=""Vocabulary for 3GPP Specifications"">TR21905</a>].
<span class="h4"><a class="selflink" id="section-1.3.1" href="#section-1.3.1">1.3.1</a> 3GPP Terminology</span>
APN Access Point Name. The APN is a logical name referring
to a GGSN and an external network.
CS Circuit Switched
GERAN GSM/EDGE Radio Access Network
<span class="grey">Wasserman Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
GGSN Gateway GPRS Support Node. A router between the GPRS
network and an external network (i.e., the Internet).
GPRS General Packet Radio Services
GTP-U General Tunneling Protocol - User Plane
MT Mobile Termination. For example, a mobile phone
handset.
PDP Packet Data Protocol
PDP Context A PDP connection between the UE and the GGSN.
PS Packet Switched
SGSN Serving GPRS Support Node
TE Terminal Equipment. For example, a laptop attached
through a 3GPP handset.
UE User Equipment (TE + MT + USIM). An example would be
a mobile handset with a USIM card inserted and a
laptop attached.
UMTS Universal Mobile Telecommunications System
USIM Universal Subscriber Identity Module. Typically, a
card that is inserted into a mobile phone handset.
UTRAN Universal Terrestrial Radio Access Network
<span class="h4"><a class="selflink" id="section-1.3.2" href="#section-1.3.2">1.3.2</a> IETF Terminology</span>
IPv6 Internet Protocol version 6 [<a href="./rfc2460">RFC 2460</a>]
NAS Network Access Server
NAT Network Address Translator
NAT-PT Network Address Translation with Protocol Translation.
An IPv6 transition mechanism. [<a href="#ref-NAT-PT" title=""Network Address Translation - Protocol Translation (NAT-PT)"">NAT-PT</a>]
PPP Point-to-Point Protocol [<a href="#ref-PPP" title=""The Point-to-Point Protocol (PPP)"">PPP</a>]
SIIT Stateless IP/ICMP Transition Mechanism [<a href="#ref-SIIT" title=""Stateless IP/ICMP Translation Algorithm"">SIIT</a>]
<span class="grey">Wasserman Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a> Overview of the IPv6 Addressing Architecture</span>
The recommendations in this document are primarily related to IPv6
address assignment. To fully understand the recommended changes, it
is necessary to understand the IPv6 addressing architecture, and
current IPv6 address assignment mechanisms.
The IPv6 addressing architecture represents a significant evolution
from IPv4 addressing [<a href="#ref-ADDRARCH" title=""IP Version 6 Addressing Architecture"">ADDRARCH</a>]. It is required that all IPv6 nodes
be able to assemble their own addresses from interface identifiers
and prefix information. This mechanism is called IPv6 Host
Autoconfiguration [<a href="#ref-AUTOCONF" title=""IPv6 Stateless Address Autoconfiguration"">AUTOCONF</a>], and it allows IPv6 nodes to configure
themselves without the need for stateful configuration servers (i.e.,
DHCPv6) or statically configured addresses.
Interface identifiers can be globally unique, such as modified EUI-64
addresses [<a href="#ref-ADDRARCH" title=""IP Version 6 Addressing Architecture"">ADDRARCH</a>], or non-unique, such as randomly generated
identifiers. Hosts that have a globally unique identifier available
may also choose to use randomly generated addresses for privacy
[<a href="#ref-PRIVADDR" title=""Privacy Extensions for Stateless Address Autoconfiguration in IPv6"">PRIVADDR</a>] or for other reasons. IPv6 hosts are free to generate new
identifiers at any time, and Duplicate Address Detection (DAD) is
used to protect against the use of duplicate identifiers on a single
link [<a href="#ref-IPV6ND" title=""Neighbor Discovery for IP Version 6 (IPv6)"">IPV6ND</a>].
A constant link-local prefix can be combined with any interface
identifier to build an address for communication on a locally
attached link. IPv6 routers may advertise additional prefixes
(site-local and/or global prefixes)[<a href="#ref-IPV6ND" title=""Neighbor Discovery for IP Version 6 (IPv6)"">IPV6ND</a>]. Hosts can combine
advertised prefixes with their own interface identifiers to create
addresses for site-local and global communication.
IPv6 introduces architectural support for scoped unicast addressing
[<a href="#ref-SCOPARCH" title=""IPv6 Scoped Address Architecture"">SCOPARCH</a>]. A single interface will typically have multiple
addresses for communication within different scopes: link-local,
site-local and/or global [<a href="#ref-ADDRARCH" title=""IP Version 6 Addressing Architecture"">ADDRARCH</a>]. Link-local addresses allow for
local communication, even when an IPv6 router is not present. Some
IPv6 protocols (i.e., routing protocols) require the use of link-
local addresses. Site-local addressing allows communication to be
administratively contained within a single site. Link-local or
site-local connections may also survive changes to global prefix
information (e.g., site renumbering).
IPv6 explicitly associates each address with an interface.
Multiple-interface hosts may have interfaces on more than one link or
in more than one site. Links and sites are internally identified
using zone identifiers. Proper routing of non-global traffic and
proper address selection are ensured by the IPv6 scoped addressing
architecture [<a href="#ref-SCOPARCH" title=""IPv6 Scoped Address Architecture"">SCOPARCH</a>].
<span class="grey">Wasserman Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
IPv6 introduces the concept of privacy addresses [<a href="#ref-PRIVADDR" title=""Privacy Extensions for Stateless Address Autoconfiguration in IPv6"">PRIVADDR</a>]. These
addresses are generated from an advertised global prefix and a
randomly generated identifier, and are used for anonymous access to
Internet services. Applications control the generation of privacy
addresses, and new addresses can be generated at any time.
The IPv6 site renumbering specification [<a href="#ref-SITEREN" title=""IPv6 Site Renumbering"">SITEREN</a>] relies upon the
fact that IPv6 nodes will generate new addresses when new prefixes
are advertised on the link, and that they will deprecate addresses
that use deprecated prefixes.
In the future, additional IPv6 specifications may rely upon the
ability of IPv6 nodes to use multiple prefixes and/or multiple
identifiers to dynamically create new addresses.
<span class="h3"><a class="selflink" id="section-1.5" href="#section-1.5">1.5</a> An IP-Centric View of the 3GPP System</span>
The 3GPP specifications define a Third Generation Mobile System. An
overview of the packet switched (PS) domain of the 3GPP Release 99
system is described in the following sections. The authors hope that
this description is sufficient for the reader who is unfamiliar with
the UMTS packet switched service, to understand how the UMTS system
works, and how IPv6 is currently defined to be used within it.
<span class="h4"><a class="selflink" id="section-1.5.1" href="#section-1.5.1">1.5.1</a> Overview of the UMTS Architecture</span>
The UMTS architecture can be divided into two main domains -- the
packet switched (PS) domain, and the circuit switched (CS) domain.
In this document, we will concentrate on the PS domain, or General
Packet Radio Services (GPRS).
------
| TE |
------
|
+R
|
------ Uu ----------- Iu ----------- Gn ----------- Gi
| MT |--+--| UTRAN |--+--| SGSN |--+--| GGSN |--+--
------ ----------- ----------- -----------
(UE)
Figure 1: Simplified GPRS Architecture
<span class="grey">Wasserman Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
------
| |
| App |- - - - - - - - - - - - - - - - - - - - - - - - -(to app peer)
| |
|------| -------------
| IP |- - - - - - - - - - - - - - - - - - - - - - -| IP |->
| v4/6 | | v4/6 |
|------| ------------- ------------- |------ |
| | | \ Relay / | | \ Relay / | | | |
| | | \ / | | \ / | | | |
| | | \ / | | \ / | | | |
| PDCP |- - -| PDCP\ /GTP_U|- - -|GTP_U\ /GTP_U|- - -|GTP_U | |
| | | | | | | | | | |
|------| |------|------| |------|------| |------| |
| | | | UDP |- - -| UDP | UDP |- - -| UDP | |
| | | |------| |------|------| |------| |
| RLC |- - -| RLC | IP |- - -| IP | IP |- - -| IP | |
| | | | v4/6 | | v4/6 | v4/6 | |v4/6 | |
|------| |------|------| |------|------| |------|------|
| MAC | | MAC | AAL5 |- - -| AAL5 | L2 |- - -| L2 | L2 |
|------| |------|------| |------|------| |------|------|
| L1 |- - -| L1 | ATM |- - -| ATM | L1 |- - -| L1 | L1 |
------ ------------- ------------- -------------
UE UTRAN SGSN GGSN
(handset)
Figure 2: GPRS Protocol Stacks
<span class="grey">Wasserman Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
------
| |
| App. |- - - - - - - - - - - - - - - - - - - - - - (to app peer)
| |
|------|
| |
| IP |- - - - - - - - - - - - - - - - - - - - - - (to GGSN)
| v4/6 |
| | | |
|------| |-------------|
| | | \ Relay / |
| | | \ / |
| | | \ / |
| | | \ / PDCP|- - - (to UTRAN)
| | | | |
| PPP |- - -| PPP |------|
| | | | RLC |- - - (to UTRAN)
| | | |------|
| | | | MAC |
|------| |------|------|
| L1a |- - -| L1a | L1b |- - - (to UTRAN)
------ -------------
TE MT
(laptop) (handset)
Figure 3: Laptop Attached to 3GPP Handset
The GPRS core network elements, shown in Figures 1 and 2, are the
User Equipment (UE), Serving GPRS Support Node (SGSN), and Gateway
GPRS Support Node (GGSN). The UTRAN comprises Radio Access Network
Controllers (RNC) and the UTRAN base stations.
GGSN: A specialized router that functions as the gateway between the
GPRS network and the external networks, e.g., Internet. It
also gathers charging information about the connections. In
many ways, the GGSN is similar to a Network Access Server
(NAS).
SGSN: The SGSN's main functions include authentication,
authorization, mobility management, and collection of billing
information. The SGSN is connected to the SS7 network and
through that, to the Home Location Register (HLR), so that it
can perform user profile handling, authentication, and
authorization.
<span class="grey">Wasserman Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
GTP-U: A simple tunnelling protocol running over UDP/IP and used to
route packets between RNC, SGSN and GGSN within the same, or
between different, UMTS backbone(s). A GTP-U tunnel is
identified at each end by a Tunnel Endpoint Identifier (TEID).
Only the most significant elements of the GPRS system are discussed
in this document. More information about the GPRS system can be
found in [<a href="#ref-OLD-TS23060" title=""General Packet Radio Service (GPRS); Service description; Stage 2"">OLD-TS23060</a>].
<span class="h4"><a class="selflink" id="section-1.5.2" href="#section-1.5.2">1.5.2</a> The PDP Context</span>
The most important 3GPP concept in this context is a PDP Context. A
PDP Context is a connection between the UE and the GGSN, over which
the packets are transferred. There are two kinds of PDP Contexts --
primary, and secondary.
The primary PDP Context initially defines the link to the GGSN. For
instance, an IP address is assigned to each primary PDP Context. In
addition, one or more secondary PDP Contexts can be added to a
primary PDP Context, sharing the same IP address. These secondary
PDP Contexts can have different Quality of Service characteristics
than the primary PDP Context.
Together, a primary PDP Context and zero or more secondary PDP
Contexts define, in IETF terms, a link. GPRS links are point-to-
point. Once activated, all PDP contexts have equal status, meaning
that a primary PDP context can be deleted while keeping the link
between the UE and the GGSN, as long as there are other (secondary)
PDP contexts active for the same IP address.
There are currently three PDP Types supported in GPRS -- IPv4, IPv6,
and PPP. This document will only discuss the IPv6 PDP Type.
There are three basic actions that can be performed on a PDP Context:
PDP Context Activation, Modification, and Deactivation. These
actions are described in the following.
Activate PDP Context
Opens a new PDP Context to a GGSN. If a new primary PDP
Context is activated, there is a new link created between a UE
and a GGSN. A UE can open multiple primary PDP Contexts to one
or more GGSNs.
Modify PDP Context
Changes the characteristics of a PDP Context, for example QoS
attributes.
<span class="grey">Wasserman Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
Deactivate PDP Context
Deactivates a PDP Context. If a primary PDP Context and all
secondary PDP contexts associated with it are deactivated, a
link between the UE and the GGSN is removed.
The APN is a name which is logically linked to a GGSN. The APN may
identify a service or an external network. The syntax of the APN
corresponds to a fully qualified domain name. At PDP context
activation, the SGSN performs a DNS query to find out the GGSN(s)
serving the APN requested by the terminal. The DNS response contains
a list of GGSN addresses from which the SGSN selects one (in a
round-robin fashion).
--------- --------
| | | GGSN |
| | LINK 1 | |
| -======== PDP Context A ========- - - -> ISP X
| | | |
| | | |
| | | |
| /======= PDP Context B =======\ |
| - | LINK 2 | - - - -> ISP Y
| \======= PDP Context C =======/ |
| | | |
| MT | --------
|(handset)|
| | --------
-------- | | | GGSN |
| | | | LINK 3 | |
| | | -======== PDP Context D ========- |
| TE | | | | |
|(laptop)| | | | - - -> ISP Z
| | | | LINK 4 | |
| -====PPP====-----======== PDP Context E ========- |
| | | | | |
| | | | | |
-------- --------- --------
Figure 3: Correspondence of PDP Contexts to IPv6 Links
<span class="h4"><a class="selflink" id="section-1.5.3" href="#section-1.5.3">1.5.3</a> IPv6 Address Autoconfiguration in GPRS</span>
GPRS supports static and dynamic address allocation. Two types of
dynamic address allocation are supported -- stateless, and stateful.
Stateful address configuration uses an external protocol to connect
to a server that gives the IP address, e.g., DHCP.
<span class="grey">Wasserman Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
The stateless IPv6 autoconfiguration works differently in GPRS than
in Ethernet networks. GPRS nodes have no unique identifier, whereas
Ethernet nodes can create an identifier from their EUI-48 address.
Because GPRS networks are similar to dialup networks, the stateless
address autoconfiguration in GPRS was based on PPPv6 [PPPV6].
3GPP address autoconfiguration has the following steps:
1. The Activate PDP Context message is sent to the SGSN (PDP
Type=IPv6, PDP Address = 0, etc.).
2. The SGSN sends a Create PDP Context message to the GGSN with
the above parameters.
3. GGSN chooses an interface identifier for the PDP Context and
creates the link-local address. It answers the SGSN with a
Create PDP Context response (PDP Address = link-local address).
4. The SGSN sends an Activate PDP Context accept message to the UE
(PDP Address = link-local address).
5. The UE keeps the link-local address, and extracts the interface
identifier for later use. The UE may send a Router
Solicitation message to the GGSN (first hop router).
6. After the PDP Context Activation, the GGSN sends a Router
Advertisement to the UE.
7. The UE should be configured not to send a Neighbor Solicitation
message. However, if one is sent, the GGSN will silently
discard it.
8. The GGSN updates the SGSN with the whole IPv6 address.
Each connected handset or laptop will create a primary PDP context
for communication on the Internet. A handset may create many primary
and/or secondary PDP contexts throughout the life of its connection
with a GGSN.
Within 3GPP, the GGSN assigns a single 64-bit identifier to each
primary PDP context. The GGSN also advertises a single /64 prefix to
the handset, and these two items are assembled into a single IPv6
address. Later, the GGSN modifies the PDP context entry in the SGSN
to include the whole IPv6 address, so that the SGSN can know the
single address of each 3GPP node (e.g., for billing purposes). This
address is also used in the GGSN to identify the PDP context
associated with each packet. It is assumed that 3GPP nodes will not
<span class="grey">Wasserman Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
generate any addresses, except for the single identifier/prefix
combination assigned by the GGSN. DAD is not performed, as the GGSN
will not assign the same address to multiple nodes.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a> Recommendations to the 3GPP</span>
In the spirit of productive cooperation, the IPv6 Working Group
recommends that the 3GPP consider three changes regarding the use of
IPv6 within GPRS. Specifically, we recommend that the 3GPP:
1. Specify that multiple prefixes may be assigned to each primary
PDP context,
2. Require that a given prefix must not be assigned to more than
one primary PDP context, and
3. Allow 3GPP nodes to use multiple identifiers within those
prefixes, including randomly generated identifiers.
Making these changes would provide several advantages for 3GPP
implementers and users:
Laptops that connect to 3GPP handsets will work without any
software changes. Their implementation of the standard IPv6 over
PPP, address assignment, and autoconfiguration mechanisms will
work without any modification. This will eliminate the need for
vendors and operators to build and test special 3GPP drivers and
related software. As currently specified, the 3GPP standards will
be incompatible with laptop implementations that generate their
own identifiers for privacy or other purposes.
IPv6 software implementations could be used in 3GPP handsets
without any modifications to the IPv6 protocol mechanisms. This
will make it easier to build and test 3GPP handsets.
Applications in 3GPP handsets will be able to take advantage of
different types of IPv6 addresses (e.g., static addresses,
temporary addresses for privacy, site-scoped addresses for site
only communication, etc.)
The GPRS system will be better positioned to take advantage of new
IPv6 features that are built around the current addressing
architecture.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a> Limitations of 3GPP Address Assignment</span>
The current 3GPP address assignment mechanism has the following
limitations:
<span class="grey">Wasserman Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
The GGSN only advertises a single /64 prefix, rather than a set of
prefixes. This will prevent the participation of 3GPP nodes
(e.g., handsets or 3GPP-attached laptops) in IPv6 site
renumbering, or in other mechanisms that expect IPv6 hosts to
create addresses based on multiple advertised prefixes.
A 3GPP node is assigned a single identifier and is not allowed to
generate additional identifiers. This will prevent the use of
privacy addresses by 3GPP nodes. This also makes 3GPP mechanisms
not fully compliant with the expected behavior of IPv6 nodes,
which will result in incompatibility with popular laptop IPv6
stacks. For example, a laptop that uses privacy addresses for web
browser connections could not currently establish a web browser
connection over a 3GPP link.
These limitations could be avoided by enabling the standard IPv6
address allocation mechanisms in 3GPP nodes. The GGSN could
advertise one or more prefixes for the local link in standard IPv6
Router Advertisements, and IPv6 addresses could be assembled, as
needed, by the IPv6 stack on the handset or laptop. An interface
identifier could still be assigned by the GGSN, as is currently
specified in the 3GPP standards. However, the handset or laptop
could generate additional identifiers, as needed for privacy or other
reasons.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a> Advertising Multiple Prefixes</span>
For compliance with current and future IPv6 standards, the IPv6 WG
recommends that the 3GPP allow multiple prefixes to be advertised for
each primary PDP context. This would have several advantages,
including:
3GPP nodes could participate in site renumbering and future IPv6
mechanisms that rely on the use of multiple global prefixes on a
single link.
Site-local prefixes could be advertised on 3GPP links, if desired,
allowing for site-constrained communication that could survive
changes to global prefix information (e.g., site renumbering).
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a> Assigning a Prefix to Only One Primary PDP Context</span>
The IPv6 WG recommends that the 3GPP treat a primary PDP context,
along with its secondary PDP contexts, as a single IPv6 link, and
that the GGSN view each primary PDP context as a single subnet.
Accordingly, a given global (or site-local) prefix should not be
assigned to more than one PDP context.
<span class="grey">Wasserman Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
Because multiple IPv6 hosts may attach through a 3GPP handset, the
IPv6 WG recommends that one or more /64 prefixes should be assigned
to each primary PDP context. This will allow sufficient address
space for a 3GPP-attached node to allocate privacy addresses and/or
route to a multi-link subnet [<a href="#ref-MULTLINK" title=""Multi-link Subnet Support in IPv6"">MULTLINK</a>], and will discourage the use
of NAT within 3GPP-attached devices.
<span class="h4"><a class="selflink" id="section-2.3.1" href="#section-2.3.1">2.3.1</a> Is a /64 per PDP Context Too Much?</span>
If an operator assigns a /64 per PDP context, can we be assured that
there is enough address space for millions of mobile devices? This
question can be answered in the positive using the Host Density (HD)
Ratio for address assignment efficiency [<a href="#ref-HD" title=""The Host-Density Ratio for Address Assignment Efficiency: An update on the H ratio"">HD</a>]. This is a measure of
the number of addresses that can practically and easily be assigned
to hosts, taking into consideration the inefficiencies in usage
resulting from the various address assignment processes. The HD
ratio was empirically derived from actual telephone number and data
network address assignment cases.
We can calculate the number of easily assignable /64's making the
following assumptions:
An HD ratio of 0.8 (representing the efficiency that can be
achieved with no particular difficulty).
Only addresses with the 3-bit prefix 001 (the Aggregatable Global
Unicast Addresses defined by <a href="./rfc2373">RFC 2373</a>) are used, resulting in 61
bits of assignable address space.
Using these assumptions, a total of 490 trillion (490x10^12) /64
prefixes can be assigned. This translates into around 80,000 PDP
Contexts per person on the earth today. Even assuming that a
majority of these IPv6 /64 prefixes will be used by non-3GPP
networks, there is still clearly a sufficient number of /64 prefixes.
Given this, it can be safely concluded that the IPv6 address space
will not be exhausted if /64 prefixes are allocated to primary PDP
contexts.
For more information regarding policies for IPv6 address assignment,
refer to the IAB/IESG recommendations regarding address assignment
[<a href="#ref-IABAA" title=""IAB/IESG Recommendations on IPv6 Address Allocations to Sites"">IABAA</a>], and the APNIC, ARIN and RIPE address allocation policy
[<a href="#ref-AAPOL" title=""IPv6 Address Allocation and Assignment Global Policy"">AAPOL</a>].
<span class="grey">Wasserman Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
<span class="h4"><a class="selflink" id="section-2.3.2" href="#section-2.3.2">2.3.2</a> Prefix Information in the SGSN</span>
Currently, the 3GPP standards allow only one prefix and one
identifier for each PDP context. So, the GGSN can send a single IPv6
address to the SGSN, to be used for billing purposes, etc.
Instead of using the full IPv6 address to identify a PDP context, the
IPv6 WG recommends that the SGSN be informed of each prefix that is
currently assigned to a PDP context. By assigning a prefix to only
one primary PDP context, the SGSN can associate a prefix list with
each PDP context.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a> Multiple Identifiers per PDP Context</span>
The IPv6 WG also recommends that the 3GPP standards be modified to
allow multiple identifiers, including randomly generated identifiers,
to be used within each assigned prefix. This would allow 3GPP nodes
to generate and use privacy addresses, and would be compatible with
future IPv6 standards that may depend on the ability of IPv6 nodes to
generate new interface identifiers for communication.
This is a vital change, necessary to allow standards-compliant IPv6
nodes to connect to the Internet through 3GPP handsets, without
modification. It is expected that most IPv6 nodes, including the
most popular laptop stacks, will generate privacy addresses. The
current 3GPP specifications will not be compatible with those
implementations.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a> Additional IPv6 Work Items</span>
During our work on this document, we have discovered several areas
that could benefit from further informational or standards-track work
within the IPv6 Working Group.
The IPv6 WG should work to define a point-to-point architecture and
specify how the standard IPv6 address assignment mechanisms are
applicable to IPv6 over point-to-point links. We should also review
and clarify the IPv6 over PPP specification [<a href="#ref-PPP" title=""The Point-to-Point Protocol (PPP)"">PPP</a>] to match the
current IPv6 addressing architecture [<a href="#ref-ADDRARCH" title=""IP Version 6 Addressing Architecture"">ADDRARCH</a>].
The IPv6 WG should consider publishing an "IPv6 over PDP Contexts"
(or similar) document. This document would be useful for developers
writing drivers for IPv6 stacks to work over 3GPP PDP Contexts.
The IPv6 working group should undertake an effort to define the
minimal requirements for all IPv6 nodes.
<span class="grey">Wasserman Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a> Security Considerations</span>
This document contains recommendations on the use of the IPv6
protocol in 3GPP standards. It does not specify a protocol, and it
introduces no new security considerations.
<span class="grey">Wasserman Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
Appendix A: Analysis of Findings
This section includes some analysis that may be useful to
understanding why the IPv6 working group is making the above
recommendations. It also includes some other options that were
explored, and the reasons why those options were less suitable than
the recommendations outlined above.
<span class="h3"><a class="selflink" id="appendix-A.1" href="#appendix-A.1">A.1</a> Address Assignment Solutions</span>
In order to allow for the configuration and use of multiple IPv6
addresses per primary PDP Context having different interface
identifiers, some modifications to the current 3GPP specifications
would be required.
The solutions to achieve this were evaluated against the following
factors:
- Scarcity and high cost of wireless spectrum
- Complexity of implementation and state maintenance
- Stability of the relevant IETF standards
- Impact on current 3GPP standards
Two solutions to allow autoconfiguration of multiple addresses on the
same primary PDP Context were considered:
1. Assign one or more entire prefixes (/64s) to a PDP Context upon
PDP Context activation and allow the autoconfiguration of
multiple addresses.
a) The assignment may be performed by having the GGSN advertise
one or more /64 prefixes to the mobile device.
b) The assignment may be performed by building "prefix
delegation" functionality into the PDP Context messages or
by using layer 3 mechanisms such as [<a href="#ref-PREFDEL" title=""Automatic Prefix Delegation Protocol for Internet Protocol Version 6 (IPv6)"">PREFDEL</a>]. In this way,
the prefix is not assigned to the link between the GGSN and
the mobile device (as in 1a), but it is assigned to the
mobile device itself. Note that [<a href="#ref-PREFDEL" title=""Automatic Prefix Delegation Protocol for Internet Protocol Version 6 (IPv6)"">PREFDEL</a>] cannot be
considered stable and has not, at this stage, been adopted
by the IPv6 WG as a WG document.
2. Share the same prefix between multiple PDP Contexts connected
to the same GGSN (and APN). Given that mobile devices may
generate multiple addresses using more than one interface
identifier, this would require DAD for the newly generated
addresses over the air interface, and a proxy DAD, function
which would increase the complexity and the amount of state to
<span class="grey">Wasserman Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
be kept in the GGSN. Also, the GGSN would need to determine
when the temporary addresses are no longer in use, which would
be difficult. One possible solution could be using periodic
unicast neighbor solicitations for the temporary addresses
[<a href="#ref-IPV6ND" title=""Neighbor Discovery for IP Version 6 (IPv6)"">IPV6ND</a>].
Considering all the factors when evaluating the solutions, the
recommendation is to use Solution 1a. This solution requires the
least modification to the current 3GPP standards and maintains all
the advantages of the other solutions.
Effectively, this would mean that each APN in a GGSN would have a
certain number of /64 prefixes that can be handed out at PDP context
Activation, through Router Advertisements. Therefore, instead of
using the full IPv6 address to identify a primary PDP context, the
IPv6 WG recommends that the GGSN use the entire prefix (together with
other 3GPP specific information) and that the SGSN be informed of the
prefixes that are assigned to a PDP context. By assigning a given
prefix to only one primary PDP context, the GGSN and SGSN can
associate a prefix list with each PDP context, as needed.
Note that the recommended solution does not imply or assume that the
mobile device is a router. The MT is expected to use the /64 for
itself and may also use this prefix for devices attached to it.
However, this is not necessary if each device behind the MT is
connected to a separate primary PDP Context and therefore can use a
/64, which is not shared with other devices. The MT is also expected
to handle DAD locally for devices attached to it (e.g., laptops)
without forwarding Neighbor Solicitations over the air to the GGSN.
References
[<a id="ref-OLD-TS23060">OLD-TS23060</a>] TS 23.060, "General Packet Radio Service (GPRS);
Service description; Stage 2", V4.1.0
[<a id="ref-NEW-TS23060">NEW-TS23060</a>] TS 23.060 version 3.11.0 (release 99), 4.4.0 (release
4) and 5.1.0 (release 5).
[<a id="ref-3GPP-URL">3GPP-URL</a>] <a href="http://www.3gpp.org">http://www.3gpp.org</a>
[<a id="ref-IETF-URL">IETF-URL</a>] <a href="http://www.ietf.org">http://www.ietf.org</a>
[<a id="ref-RFC2026">RFC2026</a>] Bradner, S., "The Internet Standards Process --
Revision 3", <a href="https://www.rfc-editor.org/bcp/bcp9">BCP 9</a>, <a href="./rfc2026">RFC 2026</a>, October 1996
[<a id="ref-KEYWORD">KEYWORD</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>, March 1999.
<span class="grey">Wasserman Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
[<a id="ref-TR21905">TR21905</a>] 3GPP TR 21.905, "Vocabulary for 3GPP Specifications",
V5.0.0
[<a id="ref-IPV6">IPV6</a>] Deering, S. and R. Hinden, "Internet Protocol, Version
6 (IPv6) Specification", <a href="./rfc2460">RFC 2460</a>, December 1998.
[<a id="ref-NAT-PT">NAT-PT</a>] Tsirtsis, G. and P. Shrisuresh, "Network Address
Translation - Protocol Translation (NAT-PT)", <a href="./rfc2766">RFC 2766</a>,
February 2000.
[<a id="ref-PPP">PPP</a>] Simpson, W., "The Point-to-Point Protocol (PPP)", STD
51, <a href="./rfc1661">RFC 1661</a>, July 1994.
[<a id="ref-SIIT">SIIT</a>] Nordmark, N., "Stateless IP/ICMP Translation
Algorithm", <a href="./rfc2765">RFC 2765</a>, February 2000.
[<a id="ref-ADDRARCH">ADDRARCH</a>] Hinden, R. and S. Deering, "IP Version 6 Addressing
Architecture", <a href="./rfc2373">RFC 2373</a>, July 1998.
[<a id="ref-IPV6ND">IPV6ND</a>] Narten, T., Nordmark, E. and W. Simpson, "Neighbor
Discovery for IP Version 6 (IPv6)", <a href="./rfc2461">RFC 2461</a>, December
1998.
[<a id="ref-AUTOCONF">AUTOCONF</a>] Thomson, S. and T. Narten, "IPv6 Stateless Address
Autoconfiguration", <a href="./rfc2462">RFC 2462</a>, December 1998
[<a id="ref-PRIVADDR">PRIVADDR</a>] Narten, T. and R. Draves, "Privacy Extensions for
Stateless Address Autoconfiguration in IPv6", <a href="./rfc3041">RFC 3041</a>,
January 2001.
[<a id="ref-IPV6ETH">IPV6ETH</a>] Crawford, M., "Transmission of IPv6 Packets over
Ethernet Networks", <a href="./rfc2464">RFC 2464</a>, December 1998.
[<a id="ref-PPPv6">PPPv6</a>] Haskin, D. and E. Allen, "IP Version 6 over PPP", <a href="./rfc2472">RFC</a>
<a href="./rfc2472">2472</a>, December 1998.
[<a id="ref-MULTLINK">MULTLINK</a>] C. Huitema, D. Thaler, "Multi-link Subnet Support in
IPv6", Work in Progress.
[<a id="ref-SITEREN">SITEREN</a>] C. Huitema, <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22IPv6+Site+Renumbering%22'>"IPv6 Site Renumbering"</a>, Work in Progress.
[<a id="ref-HD">HD</a>] Durand, A. and C. Huitema, "The Host-Density Ratio for
Address Assignment Efficiency: An update on the H
ratio", <a href="./rfc3194">RFC 3194</a>, November 2001.
[<a id="ref-IABAA">IABAA</a>] IAB, IESG, "IAB/IESG Recommendations on IPv6 Address
Allocations to Sites", <a href="./rfc3177">RFC 3177</a>, September 2001.
<span class="grey">Wasserman Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
[<a id="ref-AAPOL">AAPOL</a>] APNIC, ARIN, RIPE-NCC, "IPv6 Address Allocation and
Assignment Global Policy", Work in Progress.
[<a id="ref-SCOPARCH">SCOPARCH</a>] S. Deering, et. al., "IPv6 Scoped Address
Architecture", Work in Progress.
[<a id="ref-CELLREQ">CELLREQ</a>] J. Arkko, et. al., "Minimum IPv6 Functionality for a
Cellular Host", Work in Progress.
[<a id="ref-PREFDEL">PREFDEL</a>] J. Martin, B. Haberman, "Automatic Prefix Delegation
Protocol for Internet Protocol Version 6 (IPv6)", Work
in Progress.
<span class="grey">Wasserman Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
Authors and Acknowledgements
This document was written by the IPv6 3GPP design team:
Steve Deering, Cisco Systems
EMail: deering@cisco.com
Karim El-Malki, Ericsson Radio Systems
EMail: Karim.El-Malki@era.ericsson.se
Paul Francis, Tahoe Networks
EMail: francis@tahoenetworks.com
Bob Hinden, Nokia
EMail: hinden@iprg.nokia.com
Christian Huitema, Microsoft
EMail: huitema@windows.microsoft.com
Niall Richard Murphy, Hutchison 3G
EMail: niallm@enigma.ie
Markku Savela, Technical Research Centre of Finland
Email: Markku.Savela@vtt.fi
Jonne Soininen, Nokia
EMail: Jonne.Soininen@nokia.com
Margaret Wasserman, Wind River
EMail: mrw@windriver.com
Information was incorporated from a presentation co-authored by:
Juan-Antonio Ibanez, Ericsson Eurolab
Editor's Address
Comments or questions regarding this document should be sent to:
Margaret Wasserman
Wind River
10 Tara Blvd., Suite 330
Nashua, NH 03062 USA
Phone: (603) 897-2067
EMail: mrw@windriver.com
<span class="grey">Wasserman Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc3314">RFC 3314</a> Recommendations for IPv6 in 3GPP Standards September 2002</span>
Full Copyright Statement
Copyright (C) The Internet Society (2002). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Wasserman Informational [Page 23]
</pre>
|