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 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901
|
<pre>Internet Engineering Task Force (IETF) J. Korhonen, Ed.
Request for Comments: 5778 H. Tschofenig
Category: Standards Track Nokia Siemens Networks
ISSN: 2070-1721 J. Bournelle
Orange Labs
G. Giaretta
Qualcomm
M. Nakhjiri
Motorola
February 2010
<span class="h1">Diameter Mobile IPv6:</span>
<span class="h1">Support for Home Agent to Diameter Server Interaction</span>
Abstract
Mobile IPv6 deployments may want to bootstrap their operations
dynamically based on an interaction between the home agent and the
Diameter server of the Mobile Service Provider. This document
specifies the interaction between a Mobile IP home agent and a
Diameter server.
This document defines the home agent to the Diameter server
communication when the mobile node authenticates using the Internet
Key Exchange v2 protocol with the Extensible Authentication Protocol
or using the Mobile IPv6 Authentication Protocol. In addition to
authentication and authorization, the configuration of Mobile IPv6-
specific parameters and accounting is specified in this document.
Status of This Memo
This is an Internet Standards Track document.
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). Further information on
Internet Standards is available in <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/rfc5778">http://www.rfc-editor.org/info/rfc5778</a>.
<span class="grey">Korhonen, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Copyright Notice
Copyright (c) 2010 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.
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-2">2</a>. Terminology .....................................................<a href="#page-6">6</a>
<a href="#section-3">3</a>. Application Identifiers .........................................<a href="#page-6">6</a>
<a href="#section-4">4</a>. Protocol Description ............................................<a href="#page-7">7</a>
<a href="#section-4.1">4.1</a>. Support for Mobile IPv6 with IKEv2 and EAP .................<a href="#page-7">7</a>
<a href="#section-4.2">4.2</a>. Support for the Mobile IPv6 Authentication Protocol .......<a href="#page-10">10</a>
<a href="#section-4.3">4.3</a>. Mobile IPv6 Session Management ............................<a href="#page-11">11</a>
<a href="#section-4.3.1">4.3.1</a>. Session-Termination-Request ........................<a href="#page-11">11</a>
<a href="#section-4.3.2">4.3.2</a>. Session-Termination-Answer .........................<a href="#page-11">11</a>
<a href="#section-4.3.3">4.3.3</a>. Abort-Session-Request ..............................<a href="#page-12">12</a>
<a href="#section-4.3.4">4.3.4</a>. Abort-Session-Answer ...............................<a href="#page-12">12</a>
<a href="#section-4.4">4.4</a>. Accounting for Mobile IPv6 Services .......................<a href="#page-12">12</a>
<a href="#section-4.4.1">4.4.1</a>. Accounting-Request .................................<a href="#page-13">13</a>
<a href="#section-4.4.2">4.4.2</a>. Accounting-Answer ..................................<a href="#page-13">13</a>
<a href="#section-5">5</a>. Command Codes ..................................................<a href="#page-13">13</a>
<a href="#section-5.1">5.1</a>. Command Code for Mobile IPv6 with IKEv2 and EAP ...........<a href="#page-13">13</a>
<a href="#section-5.1.1">5.1.1</a>. Diameter-EAP-Request ...............................<a href="#page-13">13</a>
<a href="#section-5.1.2">5.1.2</a>. Diameter-EAP-Answer ................................<a href="#page-14">14</a>
5.2. Command Codes for Mobile IPv6 Authentication
Protocol Support ..........................................<a href="#page-15">15</a>
<a href="#section-5.2.1">5.2.1</a>. MIP6-Request .......................................<a href="#page-16">16</a>
<a href="#section-5.2.2">5.2.2</a>. MIP6-Answer ........................................<a href="#page-17">17</a>
<a href="#section-6">6</a>. AVPs ...........................................................<a href="#page-18">18</a>
<a href="#section-6.1">6.1</a>. User-Name AVP .............................................<a href="#page-21">21</a>
<a href="#section-6.2">6.2</a>. Service-Selection AVP .....................................<a href="#page-21">21</a>
<a href="#section-6.3">6.3</a>. MIP-MN-AAA-SPI AVP ........................................<a href="#page-21">21</a>
<a href="#section-6.4">6.4</a>. MIP-MN-HA-SPI AVP .........................................<a href="#page-22">22</a>
<a href="#section-6.5">6.5</a>. MIP-Mobile-Node-Address AVP ...............................<a href="#page-22">22</a>
<a href="#section-6.6">6.6</a>. MIP6-Agent-Info AVP .......................................<a href="#page-22">22</a>
<a href="#section-6.7">6.7</a>. MIP-Careof-Address AVP ....................................<a href="#page-23">23</a>
<a href="#section-6.8">6.8</a>. MIP-Authenticator AVP .....................................<a href="#page-23">23</a>
<span class="grey">Korhonen, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<a href="#section-6.9">6.9</a>. MIP-MAC-Mobility-Data AVP .................................<a href="#page-23">23</a>
<a href="#section-6.10">6.10</a>. MIP-Session-Key AVP ......................................<a href="#page-23">23</a>
<a href="#section-6.11">6.11</a>. MIP-MSA-Lifetime AVP .....................................<a href="#page-23">23</a>
<a href="#section-6.12">6.12</a>. MIP-MN-HA-MSA AVP ........................................<a href="#page-24">24</a>
<a href="#section-6.13">6.13</a>. MIP-Algorithm-Type AVP ...................................<a href="#page-24">24</a>
<a href="#section-6.14">6.14</a>. MIP-Replay-Mode AVP ......................................<a href="#page-24">24</a>
<a href="#section-6.15">6.15</a>. MIP6-Feature-Vector AVP ..................................<a href="#page-25">25</a>
<a href="#section-6.16">6.16</a>. MIP-Timestamp AVP ........................................<a href="#page-25">25</a>
<a href="#section-6.17">6.17</a>. QoS-Capability AVP .......................................<a href="#page-25">25</a>
<a href="#section-6.18">6.18</a>. QoS-Resources AVP ........................................<a href="#page-25">25</a>
<a href="#section-6.19">6.19</a>. Chargeable-User-Identity AVP .............................<a href="#page-25">25</a>
<a href="#section-6.20">6.20</a>. MIP6-Auth-Mode AVP .......................................<a href="#page-25">25</a>
<a href="#section-6.21">6.21</a>. Accounting AVPs ..........................................<a href="#page-26">26</a>
<a href="#section-7">7</a>. Result-Code AVP Values .........................................<a href="#page-27">27</a>
<a href="#section-7.1">7.1</a>. Success ...................................................<a href="#page-27">27</a>
<a href="#section-7.2">7.2</a>. Permanent Failures ........................................<a href="#page-27">27</a>
<a href="#section-8">8</a>. AVP Occurrence Tables ..........................................<a href="#page-27">27</a>
<a href="#section-8.1">8.1</a>. DER, DEA, MIR, and MIA AVP/Command-Code Table .............<a href="#page-28">28</a>
<a href="#section-8.2">8.2</a>. Coupled Accounting Model AVP Table ........................<a href="#page-28">28</a>
<a href="#section-9">9</a>. IANA Considerations ............................................<a href="#page-29">29</a>
<a href="#section-9.1">9.1</a>. Command Codes .............................................<a href="#page-29">29</a>
<a href="#section-9.2">9.2</a>. AVP Codes .................................................<a href="#page-29">29</a>
<a href="#section-9.3">9.3</a>. Result-Code AVP Values ....................................<a href="#page-30">30</a>
<a href="#section-9.4">9.4</a>. Application Identifier ....................................<a href="#page-30">30</a>
<a href="#section-9.5">9.5</a>. Namespaces ................................................<a href="#page-30">30</a>
<a href="#section-10">10</a>. Security Considerations .......................................<a href="#page-31">31</a>
<a href="#section-11">11</a>. Acknowledgements ..............................................<a href="#page-31">31</a>
<a href="#section-12">12</a>. References ....................................................<a href="#page-32">32</a>
<a href="#section-12.1">12.1</a>. Normative References .....................................<a href="#page-32">32</a>
<a href="#section-12.2">12.2</a>. Informative References ...................................<a href="#page-33">33</a>
<span class="grey">Korhonen, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Performing the Mobile IPv6 protocol [<a href="./rfc3775" title=""Mobility Support in IPv6"">RFC3775</a>] requires the mobile
node (MN) to own a home address and to have an assigned home agent
(HA) to the MN. The MN needs to register with the HA in order to
enable its reachability and mobility, when away from its home link.
The registration process itself may require an establishment of IPsec
security associations (SAs) and cryptographic material between the MN
and the HA. Alternatively, the registration process may be secured
using a mobility message authentication option, which enables IPv6
mobility in an MN without having to establish an IPsec SA with its
HA. Providing the collection of home address, HA address, and keying
material is generally referred to as the Mobile IPv6 bootstrapping
problem [<a href="./rfc4640" title=""Problem Statement for bootstrapping Mobile IPv6 (MIPv6)"">RFC4640</a>]. The purpose of this specification is to provide
Diameter support for the interaction between the HA and the
Authentication, Authorization, and Accounting (AAA) server. This
specification satisfies the requirements defined in [<a href="./rfc5637" title=""Authentication, Authorization, and Accounting (AAA) Goals for Mobile IPv6"">RFC5637</a>] for the
bootstrapping problem in the split scenario [<a href="./rfc5026" title=""Mobile IPv6 Bootstrapping in Split Scenario"">RFC5026</a>] and also
specifies Diameter support for the Authentication Protocol for Mobile
IPv6 [<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>]. The Diameter support defined in this specification
also applies to Dual Stack Mobile IPv6 [<a href="./rfc5555" title=""Mobile IPv6 Support for Dual Stack Hosts and Routers"">RFC5555</a>].
From a Mobility Service Provider (MSP) perspective, it is important
to verify that the MN is authenticated and authorized to utilize
Mobile IPv6 service, and is accounted for those. Only when the MN is
authenticated and authorized does the MSP allow the bootstrapping of
Mobile IPv6 parameters. Thus, prior to processing the Mobile IPv6
registrations, the HA participates in the authentication of the MN to
verify the MN's identity. The HA also participates in the Mobile
IPv6 authorization process involving the Diameter infrastructure.
The HA, due to its role in traffic forwarding, may also perform
accounting for the Mobile IPv6 service provided to the MN.
This document enables the following functionality:
Authentication: The MN's identity needs to be verified. As a
Diameter client supporting the new Diameter Mobile IPv6
application, the HA may need to support more than one
authentication type depending on the environment. Although the
authentication is performed by the AAA server, there is an impact
for the HA as different sets of command codes are needed for the
respective authentication procedures.
Authorization: The HA must verify that the user is authorized to the
Mobile IPv6 service using the assistance of the MSP Diameter
servers. This is accomplished through the use of new Diameter
applications specifically designed for performing Mobile IPv6
<span class="grey">Korhonen, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
authorization decisions. This document defines required AAA
procedures and requires the HA to support them and to participate
in this authorization signaling.
Accounting: For accounting purposes and capacity planning, it is
required that the HA provides accounting reports to the Diameter
infrastructure and thus supports the related Diameter accounting
procedures.
Session Management: The management of the mobility services may
require the Diameter server or the HA to terminate the Mobile IPv6
service before the binding expires. This document defines
procedures for the AAA-based session management.
Figure 1 depicts the reference architecture for this document.
+--------+
|Diameter|
|Server |
+--------+
^
Back-End | Diameter Mobile IPv6
Protocol | HA<->AAA Server
Support | Interaction
| (this document)
v
+---------+ +---------------+
| Mobile | Front-End Protocol |Home Agent / |
| Node |<-------------------->|Diameter Client|
+---------+ IKEv2 or <a href="./rfc4285">RFC 4285</a> +---------------+
Figure 1: Architecture Overview
Mobile IPv6 signaling between the MN and the HA can be protected
using two different mechanisms, namely, using IPsec or the
Authentication Protocol for Mobile IPv6 [<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>]. For these two
approaches, several different authentication and key exchange
solutions are available. When IPsec is used to protect Mobile IPv6
signaling messages, Internet Key Exchange v2 (IKEv2) is used
[<a href="./rfc4877" title=""Mobile IPv6 Operation with IKEv2 and the Revised IPsec Architecture"">RFC4877</a>] for the setup of the IPsec SAs. IKEv2 supports EAP-based
(Extensible Authentication Protocol) initiator authentication,
certificates, and pre-shared secrets. Alternatively, the
Authentication Protocol for Mobile IPv6 uses a mechanism that is very
similar to the one used for protecting Mobile IPv4 signaling
messages.
<span class="grey">Korhonen, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
The ability to use different credentials and methods to authenticate
the MN has an impact on the AAA interactions between the HA (acting
as a Diameter client) and the Diameter server. This specification is
only limited to the following MN authentication methods:
o IKEv2 usage with EAP
o Mobile IPv6 Authentication Protocol
New authentication mechanisms may be added later by separate
specifications.
For accounting of Mobile IPv6 services provided to the MN, this
specification uses the Diameter base protocol accounting defined in
[<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>].
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</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>].
The Mobile IPv6 bootstrapping terminology is taken from [<a href="./rfc4640" title=""Problem Statement for bootstrapping Mobile IPv6 (MIPv6)"">RFC4640</a>].
Additional terminology is defined below:
Authentication, Authorization, and Accounting (AAA):
AAA protocol based on Diameter [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>] with required EAP support
[<a href="./rfc4072" title=""Diameter Extensible Authentication Protocol (EAP) Application"">RFC4072</a>].
Home AAA (AAAH):
An authentication, authorization, and accounting server located in
the user's home network, i.e., in the home realm.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Application Identifiers</span>
This specification defines two new Diameter applications and their
respective Application Identifiers:
Diameter Mobile IPv6 IKE (MIP6I) 7
Diameter Mobile IPv6 Auth (MIP6A) 8
The MIP6I Application Identifier is used when the MN is authenticated
and authorized using IKEv2. The MIP6A Application Identifier is used
when the MN is authenticated and authorized using the Mobile IPv6
Authentication Protocol.
<span class="grey">Korhonen, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Mobile IPv6-related accounting information generated by the HA uses
either the MIP6I or the MIP6A Application Identifier in the case of
the coupled accounting model. The Diameter Base Accounting
Application Identifier (value of 3) is used in the case of the split
accounting model. Refer to <a href="#section-4.4">Section 4.4</a> for more information
regarding the accounting models.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Protocol Description</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Support for Mobile IPv6 with IKEv2 and EAP</span>
The use of IKEv2 with EAP between the MN and the HA allows the AAA to
authenticate the MN. When EAP is used with IKEv2, the Diameter EAP
application logic and procedures, as defined in [<a href="./rfc4072" title=""Diameter Extensible Authentication Protocol (EAP) Application"">RFC4072</a>], are re-
used. EAP methods that do not establish a shared key SHOULD NOT be
used, as they are subject to a number of man-in-the-middle attacks as
stated in <a href="#section-2.16">Section 2.16</a> and <a href="./rfc4306#section-5">Section 5 of [RFC4306]</a>. Attribute-value
pairs (AVPs) specific to Mobile IPv6 bootstrapping are added to the
EAP application commands.
Figure 2 shows the message flow involved during the authentication
phase when EAP is used. The communication between the mobile node
and the home agent uses the conventions defined in [<a href="./rfc4306" title=""Internet Key Exchange (IKEv2) Protocol"">RFC4306</a>].
Similarly, the communication between the home agent and the Diameter
server uses the conventions defined in [<a href="./rfc4072" title=""Diameter Extensible Authentication Protocol (EAP) Application"">RFC4072</a>].
<span class="grey">Korhonen, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Mobile Home Diameter
Node Agent Server
| | |
| HDR, SAi1, KEi, Ni (1) | |
|-------------------------------->| |
| | |
| HDR, SAr1, KEr, Nr, [CERTREQ](2)| |
|<--------------------------------| |
| | |
| HDR, SK{IDi,[CERTREQ,] [IDr,] | |
| [CP(CFG_REQUEST),] | |
| SAi2, TSi, TSr} (3) | DER (EAP-Response) (4) + |
|-------------------------------->| MIP6 Bootstrapping AVPs |
| |------------------------->|
| | |
| | DEA (EAP-Request) (5) |
| HDR, SK{IDr, [CERT,] AUTH, EAP} |<-------------------------|
|<------------------------------- | |
| | |
| HDR, SK{EAP} | |
|-------------------------------->| DER (EAP-Response) |
| |------------------------->|
| | |
| | DEA (EAP-Request) |
| HDR, SK{EAP-Request} |<-------------------------|
|<--------------------------------| |
| | |
| HDR, SK{EAP-Response} | |
|-------------------------------->| DER (EAP-Response) |
| |------------------------->|
: ... : ... :
| | |
| | DEA (EAP-Success) + |
| | MIP6 Bootstrapping AVPs |
| HDR, SK{EAP-Success} |<-------------------------|
|<--------------------------------| |
| | |
| HDR, SK{AUTH} | |
|-------------------------------->| |
| | |
| HDR, SK{AUTH, [CP(CFG_REPLY,] | |
| SAr2, TSi, TSr} | |
|<--------------------------------| |
| | |
Figure 2: Mobile IPv6 Bootstrapping Using IKEv2 and EAP
The MN and the HA start the interaction with an IKE_SA_INIT exchange.
<span class="grey">Korhonen, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
In this phase, cryptographic algorithms are negotiated, and nonces
and Diffie-Hellman parameters are exchanged. Message (3) starts the
IKE_AUTH phase. This second phase authenticates the previous
messages, exchanges identities and certificates, and establishes the
first CHILD_SA. It is used to mutually authenticate the MN (acting
as an IKEv2 initiator) and the HA (acting as an IKEv2 responder).
The identity of the user/MN is provided in the IDi field. The MN
indicates its willingness to be authenticated via EAP by omitting the
AUTH field in message (3) (see <a href="./rfc4306#section-2.16">Section 2.16 of [RFC4306]</a>).
As part of the authentication process, the MN MAY request a home
address or a home prefix or suggest one (see [<a href="./rfc4877" title=""Mobile IPv6 Operation with IKEv2 and the Revised IPsec Architecture"">RFC4877</a>]), using a
CFG_REQUEST payload in the message (3).
The HA extracts the IDi field from the message (3) and sends a
Diameter-EAP-Request (DER) message (4) towards the authenticating
Diameter server. The EAP-Payload AVP contains a EAP-Response/
Identity with the identity extracted from the IDi field.
This message is routed to the MN's Diameter server/EAP server. The
Diameter server selects the EAP method and replies with the Diameter-
EAP-Answer (DEA) message. Depending on the type of EAP method
chosen, a number of DER and DEA messages carry the method-specific
exchanges between the MN and the Diameter server/EAP server.
At the end of the EAP authentication phase, the Diameter server
indicates the result of the authentication in the Result-Code AVP and
provides the corresponding EAP packet (EAP Success or EAP Failure).
The last IKEv2 message sent by the HA contains the home address or
the home prefix. In the latter case, a CREATE_CHILD_SA exchange is
necessary to set up IPsec SAs for Mobile IPv6 signaling.
In some deployment scenarios, the HA may also act as an IKEv2
responder for a conventional IPsec VPN access. The challenge in this
case is that the IKEv2 responder may not know if IKEv2 is used for
Mobile IPv6 service or for IPsec VPN access service. A network
operator needs to be aware of this limitation. One solution already
supported by IKEv2 is to use different responder identities when
operating as a conventional IPsec VPN gateway or as an HA. The MN
can then indicate the preferred responder type using the appropriate
IDr payload in the IKE_AUTH message.
Eventually, when the HA receives a Binding Update (BU), the HA
authenticates and authorizes the MN. It is RECOMMENDED that the HA
sends an accounting request message every time it receives a BU.
<span class="grey">Korhonen, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Support for the Mobile IPv6 Authentication Protocol</span>
Figure 3 shows the message sequence between the MN, the HA, and the
Diameter server during the registration when Mobile IPv6
Authentication Protocol is used. A BU and a Binding Acknowledgement
(BA) messages are used in the binding registration process.
Receiving a BU at the HA initiates a MIP6-Request to be sent to the
Diameter server. The Diameter server in turn responds with a MIP6-
Answer. The HA may assign a home address to the MN and provide it to
the Diameter server in the MIP-Mobile-Node-Address AVP.
According to [<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>], the MN uses the Mobile Node Identifier
Option, specifically the MN-NAI mobility option (as defined in
[<a href="./rfc4283" title=""Mobile Node Identifier Option for Mobile IPv6 (MIPv6)"">RFC4283</a>]) to identify itself. The HA MUST copy the MN-NAI mobility
option value to the User-Name AVP in the subsequent request messages.
The procedure described in this specification for the Mobile IPv6
Authentication Protocol is only needed for the initially received BU
for which the HA does not have an existing security association.
When the HA receives subsequent BUs, they are processed locally in
the HA. It is RECOMMENDED that the HA sends an accounting request
message every time it receives a Binding Update. However, the HA MAY
re-authorize the MN with the Diameter server at any time depending on
the deployment and the local policy.
This specification assumes that in the case where Mobile IPv6
Authentication Protocol is used, the MN-AAA option is included in the
BU as defined in [<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>] and the Diameter server computes required
session keys after having successfully authenticated the MN. The
computation of the session keys is out of scope of this
specification. Other possible ways of using the Mobile IPv6
Authentication Protocol are also out of scope of this specification
and would require a new specification to describe the detailed
behavior of the HA-AAAH interface and corresponding session key
derivation.
<span class="grey">Korhonen, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Mobile Home Diameter
Node Agent Server
| | |
| | MIP6-Request + MIP6 |
| Binding Update | Bootstrapping AVPs |
|------------------------------------>|-------------------->|
| (Mobile Node Identifier Option, | |
| Mobility Message Replay Protection | |
| Option, Authentication Option) | |
| | |
| | MIP6-Answer + MIP6 |
| Binding Acknowledgement | Bootstrapping AVPs |
|<------------------------------------|<--------------------|
| (Mobile Node Identifier Option | |
| Mobility Message Replay Protection | |
| Option, Authentication Option) | |
Figure 3: Mobile IPv6 Bootstrapping Using the Mobile IPv6
Authentication Protocol
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Mobile IPv6 Session Management</span>
The Diameter server may maintain state or may be stateless. This is
indicated in the Auth-Session-State AVP (or its absence). The HA
MUST support the Authorization Session State Machine defined in
[<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>].
This specification makes an assumption that each SA created between
the MN and the HA as a result of a successful IKEv2 negotiation or a
Mobile IPv6 Authentication Protocol exchange corresponds to one
Diameter session. In the IKEv2 case, we specifically mean the
created IKE SA.
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. Session-Termination-Request</span>
The Session-Termination-Request (STR) message [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>] is sent by
the HA to inform the Diameter server that an authorized session is
being terminated. This means that the HA MUST terminate the
corresponding Mobile IPv6 binding and also terminate the
corresponding SA.
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. Session-Termination-Answer</span>
The Session-Termination-Answer (STA) message [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>] is sent by the
Diameter server to acknowledge the notification that the session has
been terminated.
<span class="grey">Korhonen, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<span class="h4"><a class="selflink" id="section-4.3.3" href="#section-4.3.3">4.3.3</a>. Abort-Session-Request</span>
The Abort-Session-Request (ASR) message [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>] is sent by the
Diameter server to the HA to terminate the authorized session. This
fulfills one of the requirement described in [<a href="./rfc5637" title=""Authentication, Authorization, and Accounting (AAA) Goals for Mobile IPv6"">RFC5637</a>]. When the HA
receives the ASR message, it MUST terminate the corresponding SA.
Subsequently, the HA MUST take further actions to terminate the
corresponding Mobile IPv6 binding.
<span class="h4"><a class="selflink" id="section-4.3.4" href="#section-4.3.4">4.3.4</a>. Abort-Session-Answer</span>
The Abort-Session-Answer (ASA) message [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>] is sent by the home
agent in response to an ASR message.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Accounting for Mobile IPv6 Services</span>
The HA MUST be able act as a Diameter client collecting accounting
records needed for service control and charging. The HA MUST support
the accounting procedures (specifically the command codes mentioned
below) and the Accounting Session State Machine as defined in
[<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>]. The command codes, exchanged between the HA and Diameter
server for accounting purposes, are provided in the following
subsections.
The Diameter application design guideline [<a href="#ref-DIME-APP" title=""Diameter Applications Design Guidelines"">DIME-APP</a>] defines two
separate models for accounting:
Split accounting model:
According to this model, the accounting messages use the Diameter
Base Accounting Application Identifier (value of 3). Since
accounting is treated as an independent application, accounting
commands may be routed separately from the rest of application
messages and thus the accounting messages generally end up in a
central accounting server. Since the Diameter Mobile IPv6
application does not define its own unique accounting commands,
this is the preferred choice, since it permits use of centralized
accounting for several applications.
Coupled accounting model:
In this model, the accounting messages will use either the MIP6I
or the MIP6A Application Identifiers. This means that accounting
messages will be routed like any other Mobile IPv6 application
messages. This requires the Diameter server in charge of Mobile
IPv6 application to handle the accounting records (e.g., sends
them to a proper accounting server).
<span class="grey">Korhonen, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
As mentioned above, the preferred choice is to use the split
accounting model and thus to choose Diameter Base Accounting
Application Identifier (value of 3) for accounting messages.
<span class="h4"><a class="selflink" id="section-4.4.1" href="#section-4.4.1">4.4.1</a>. Accounting-Request</span>
The Accounting-Request command [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>] is sent by the HA to the
Diameter server to exchange accounting information regarding the MN
with the Diameter server.
<span class="h4"><a class="selflink" id="section-4.4.2" href="#section-4.4.2">4.4.2</a>. Accounting-Answer</span>
The Accounting-Answer command [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>] is sent by the Diameter
server to the HA to acknowledge an Accounting-Request.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Command Codes</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Command Code for Mobile IPv6 with IKEv2 and EAP</span>
For the use of Mobile IPv6 with IKEv2 and EAP, this document reuses
the Diameter EAP application [<a href="./rfc4072" title=""Diameter Extensible Authentication Protocol (EAP) Application"">RFC4072</a>] commands: Diameter-EAP-Request
(DER) and Diameter-EAP-Answer (DEA). This specification extends the
existing DER and DEA command ABNFs with a number of AVPs to support
Mobile IPv6 split scenario bootstrapping. Other than new additional
AVPs and the corresponding additions to the command ABNFs, the
Diameter EAP application command ABNFs remain unchanged. The ABNF
language is defined in [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>].
Command-Name Abbrev. Code Reference Application
---------------------------------------------------------------------
Diameter-EAP-Request DER 268 <a href="./rfc4072">RFC 4072</a> Diameter Mobile IPv6 IKE
Diameter-EAP-Answer DEA 268 <a href="./rfc4072">RFC 4072</a> Diameter Mobile IPv6 IKE
Figure 4: Command Codes
<span class="h4"><a class="selflink" id="section-5.1.1" href="#section-5.1.1">5.1.1</a>. Diameter-EAP-Request</span>
The Diameter-EAP-Request (DER) message, indicated by the Command-Code
field set to 268 and the 'R' bit set in the Command Flags field, is
sent by the HA to the Diameter server to initiate a Mobile IPv6
service authentication and authorization procedure. The
Application-ID field of the Diameter Header MUST be set to the
Diameter Mobile IPv6 IKE Application ID (value of 7). The grouped
AVP has the following modified ABNF (as defined in [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>]):
<span class="grey">Korhonen, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<Diameter-EAP-Request> ::= < Diameter Header: 268, REQ, PXY >
< Session-Id >
{ Auth-Application-Id }
{ Origin-Host }
{ Origin-Realm }
{ Destination-Realm }
{ Auth-Request-Type }
[ Destination-Host ]
[ NAS-Identifier ]
[ NAS-IP-Address ]
[ NAS-IPv6-Address ]
[ NAS-Port-Type ]
[ User-Name ]
...
{ EAP-Payload }
...
[ MIP6-Feature-Vector ]
[ MIP6-Agent-Info ]
*2[ MIP-Mobile-Node-Address ]
[ Chargeable-User-Identity ]
[ Service-Selection ]
[ QoS-Capability ]
* [ QoS-Resources ]
...
* [ AVP ]
Mobile IPv6 bootstrapping AVPs are only included in the first DER
message send by the HA. The subsequent DER messages required by the
EAP method do not need to include any Mobile IPv6 bootstrapping AVPs.
The MN is both authenticated and authorized for the mobility service
during the EAP authentication. Thus, the Auth-Request-Type AVP MUST
be set to the value AUTHORIZE_AUTHENTICATE.
<span class="h4"><a class="selflink" id="section-5.1.2" href="#section-5.1.2">5.1.2</a>. Diameter-EAP-Answer</span>
The Diameter-EAP-Answer (DEA) message, indicated by the Command-Code
field set to 268 and 'R' bit cleared in the Command Flags field, is
sent in response to the Diameter-EAP-Request (DER) message. The
Application-Id field in the Diameter message header MUST be set to
the Diameter Mobile IPv6 IKE Application-Id (value of 7). If the
Mobile IPv6 authentication procedure was successful, then the
response MAY include any set of bootstrapping AVPs.
<span class="grey">Korhonen, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<Diameter-EAP-Answer> ::= < Diameter Header: 268, PXY >
< Session-Id >
{ Auth-Application-Id }
{ Auth-Request-Type }
{ Result-Code }
{ Origin-Host }
{ Origin-Realm }
[ User-Name ]
[ EAP-Payload ]
[ EAP-Reissued-Payload ]
[ EAP-Master-Session-Key ]
[ EAP-Key-Name ]
[ Multi-Round-Time ]
...
*2[ MIP-Mobile-Node-Address ]
[ MIP6-Feature-Vector ]
[ MIP6-Agent-Info ]
[ Service-Selection ]
* [ QoS-Resources ]
[ Chargeable-User-Identity ]
...
* [ AVP ]
If the EAP-based authentication and the authorization for the
mobility service succeeds, then the Mobile IPv6 bootstrapping AVPs
are included in the last DEA message that also carries the EAP-
Success EAP payload. The other DEA messages required by the used
EAP-method do not include any Mobile IPv6 bootstrapping AVPs.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Command Codes for Mobile IPv6 Authentication Protocol Support</span>
This section defines the commands that are used for support with the
Mobile IPv6 Authentication Protocol.
There are multiple ways of deploying and utilizing the Mobile IPv6
Authentication Protocol, especially regarding the associated AAA
interactions. In order to support multiple deployment models, this
specification defines the MIP6-Auth-Mode AVP that in the request
message tells the mode that the HA supports. This specification
defines a method that requires the use of the MN-AAA option with the
Mobile IPv6 Authentication Protocol.
Command-Name Abbrev. Code Reference Application
---------------------------------------------------------------------
MIP6-Request MIR 325 5.3.1 Diameter Mobile IPv6 Auth
MIP6-Answer MIA 325 5.3.2 Diameter Mobile IPv6 Auth
<span class="grey">Korhonen, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Command Codes
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>. MIP6-Request</span>
The MIP6-Request (MIR), indicated by the Command-Code field set to
325 and the 'R' bit set in the Command Flags field, is sent by the
HA, acting as a Diameter client, in order to request the
authentication and authorization of an MN.
Although the HA provides the Diameter server with replay protection-
related information, the HA is responsible for the replay protection.
The message format is shown below.
<span class="grey">Korhonen, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<MIP6-Request> ::= < Diameter Header: 325, REQ, PXY >
< Session-ID >
{ Auth-Application-Id }
{ User-Name }
{ Destination-Realm }
{ Origin-Host }
{ Origin-Realm }
{ Auth-Request-Type }
[ Destination-Host ]
[ Origin-State-Id ]
[ NAS-Identifier ]
[ NAS-IP-Address ]
[ NAS-IPv6-Address ]
[ NAS-Port-Type ]
[ Called-Station-Id ]
[ Calling-Station-Id ]
[ MIP6-Feature-Vector ]
{ MIP6-Auth-Mode }
[ MIP-MN-AAA-SPI ]
[ MIP-MN-HA-SPI ]
1*2{ MIP-Mobile-Node-Address }
{ MIP6-Agent-Info }
{ MIP-Careof-Address }
[ MIP-Authenticator ]
[ MIP-MAC-Mobility-Data ]
[ MIP-Timestamp ]
[ QoS-Capability ]
* [ QoS-Resources ]
[ Chargeable-User-Identity ]
[ Service-Selection ]
[ Authorization-Lifetime ]
[ Auth-Session-State ]
* [ Proxy-Info ]
* [ Route-Record ]
* [ AVP ]
If the MN is both authenticated and authorized for the mobility
service, then the Auth-Request-Type AVP is set to the value
AUTHORIZE_AUTHENTICATE. This is the case when the MIP6-Auth-Mode is
set to the value MIP6_AUTH_MN_AAA.
<span class="h4"><a class="selflink" id="section-5.2.2" href="#section-5.2.2">5.2.2</a>. MIP6-Answer</span>
The MIP6-Answer (MIA) message, indicated by the Command-Code field
set to 325 and the 'R' bit cleared in the Command Flags field, is
sent by the Diameter server in response to the MIP6-Request message.
<span class="grey">Korhonen, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
The User-Name AVP MAY be included in the MIA if it is present in the
MIR. The Result-Code AVP MAY contain one of the values defined in
<a href="#section-7">Section 7</a>, in addition to the values defined in [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>].
An MIA message with the Result-Code AVP set to DIAMETER_SUCCESS MUST
include the MIP-Mobile-Node-Address AVP.
The message format is shown below.
<MIP6-Answer> ::= < Diameter Header: 325, PXY >
< Session-Id >
{ Auth-Application-Id }
{ Result-Code }
{ Origin-Host }
{ Origin-Realm }
{ Auth-Request-Type }
[ User-Name ]
[ Authorization-Lifetime ]
[ Auth-Session-State ]
[ Error-Message ]
[ Error-Reporting-Host ]
[ Re-Auth-Request-Type ]
[ MIP6-Feature-Vector ]
[ MIP-Agent-Info ]
*2[ MIP-Mobile-Node-Address ]
[ MIP-MN-HA-MSA ]
* [ QoS-Resources ]
[ Chargeable-User-Identity ]
[ Service-Selection ]
[ Origin-State-Id ]
* [ Proxy-Info ]
* [ Redirect-Host ]
[ Redirect-Host-Usage ]
[ Redirect-Max-Cache-Time ]
* [ Failed-AVP ]
* [ AVP ]
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. AVPs</span>
To provide support for [<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>] and for [<a href="./rfc4877" title=""Mobile IPv6 Operation with IKEv2 and the Revised IPsec Architecture"">RFC4877</a>], the AVPs in the
following subsections are needed. [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>], [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>], and
[<a href="./rfc4005" title=""Diameter Network Access Server Application"">RFC4005</a>] defined AVPs are reused whenever possible without changing
the existing semantics of those AVPs.
<span class="grey">Korhonen, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
+--------------------+
| AVP Flag Rules |
+----+---+------+----+----+
AVP Defined | | |SHOULD|MUST|MAY |
Attribute Name Code in Value Type |MUST|MAY| NOT | NOT|Encr|
+------------------------------------------+----+---+------+----+----+
|MIP6-Feature- 124 <a href="./rfc5447">RFC 5447</a> Unsigned64 | M | P | | V | Y |
| Vector | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP-Mobile- | M | P | | V | Y |
| Node-Address 333 <a href="./rfc4004">RFC 4004</a> Address | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP6-Agent-Info 486 <a href="./rfc5447">RFC 5447</a> Grouped | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|User-Name 1 <a href="./rfc3588">RFC 3588</a> UTF8String | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|Service- 493 6.2 UTF8String | M | P | | V | Y |
| Selection | | | | | |
+------------------------------------------+----+---+------+----+----+
|QoS-Capability 578 Note 1 Grouped | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|QoS-Resources 508 Note 1 Grouped | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|MIP-MN-HA-MSA 492 6.12 Grouped | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|Chargeable-User- OctetString| M | P | | V | Y |
| Identity 89 6.19 | | | | | |
+------------------------------------------+----+---+------+----+----+
AVPs for Mobile IPv6 IKE Application
Note 1: The QoS-Capability and the QoS-Resource AVPs are defined in
Sections <a href="#section-4.1">4.1</a> and <a href="#section-4.3">4.3</a> of [<a href="./rfc5777" title=""Traffic Classification and Quality of Service (QoS) Attributes for Diameter"">RFC5777</a>].
+--------------------+
| AVP Flag Rules |
+----+---+------+----+----+
AVP Section | | |SHOULD|MUST|MAY |
Attribute Name Code Defined Value Type |MUST|MAY| NOT | NOT|Encr|
+------------------------------------------+----+---+------+----+----+
|MIP6-Feature- 124 <a href="./rfc5447">RFC 5447</a> Unsigned64 | M | P | | V | Y |
| Vector | | | | | |
+------------------------------------------+----+---+------+----+----+
|User-Name 1 <a href="./rfc3588">RFC 3588</a> UTF8String | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|Service- 493 6.2 UTF8String | M | P | | V | Y |
| Selection | | | | | |
+------------------------------------------+----+---+------+----+----+
<span class="grey">Korhonen, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
|MIP-MN-AAA-SPI 341 <a href="./rfc4004">RFC 4004</a> Unsigned32 | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|MIP-MN-HA-SPI 491 6.4 Unsigned32 | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|MIP-Mobile- 333 <a href="./rfc4004">RFC 4004</a> Address | M | P | | V | Y |
| Node-Address | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP6-Agent-Info 486 <a href="./rfc5447">RFC 5447</a> Grouped | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|MIP-Careof- 487 6.7 Address | M | P | | V | Y |
| Address | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP- 488 6.8 OctetString| M | P | | V | Y |
| Authenticator | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP-MAC- 489 6.9 OctetString| M | P | | V | Y |
| Mobility-Data | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP-Session-Key 343 6.10 OctetString| M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|MIP-MSA- 367 <a href="./rfc4004">RFC 4004</a> Unsigned32 | M | P | | V | Y |
| Lifetime | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP-MN-HA-MSA 492 6.12 Grouped | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|MIP-Algorithm- 345 6.13 Enumerated | M | P | | V | Y |
| Type | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP-Replay-Mode 346 6.14 Enumerated | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|MIP-Timestamp 490 6.16 OctetString| M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|QoS-Capability 578 Note 1 Grouped | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|QoS-Resources 508 Note 1 Grouped | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|Chargeable-User- OctetString| M | P | | V | Y |
| Identity 89 6.19 | | | | | |
+------------------------------------------+----+---+------+----+----+
|MIP6-Auth-Mode 494 6.20 Enumerated | M | P | | V | Y |
+------------------------------------------+----+---+------+----+----+
|Rest of the AVPs <a href="./rfc3588">RFC 3588</a> | M | P | | V | Y |
|in the MIR & MIA <a href="./rfc4005">RFC 4005</a> | | | | | |
|excluding *[AVP] | | | | | |
+------------------------------------------+----+---+------+----+----+
AVPs for the Mobile IPv6 Auth Application
<span class="grey">Korhonen, et al. Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Note 1: The QoS-Capability and the QoS-Resource AVPs are defined in
Sections <a href="#section-4.1">4.1</a> and <a href="#section-4.3">4.3</a> of [<a href="./rfc5777" title=""Traffic Classification and Quality of Service (QoS) Attributes for Diameter"">RFC5777</a>].
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. User-Name AVP</span>
The User-Name AVP (AVP Code 1) is of type UTF8String and contains a
Network Access Identifier (NAI) extracted from the MN-NAI mobility
option included in the received BU message. Alternatively, the NAI
can be extracted from the IKEv2 IDi payload included in the IKE_AUTH
message sent by the IKE initiator.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Service-Selection AVP</span>
The Service-Selection AVP (AVP Code 493) is of type UTF8String and
contains the name of the service or the external network with which
the mobility service should be associated. In the scope of this
specification, the value can be extracted from the IKEv2 IDr payload,
if available in the IKE_AUTH message sent by the IKE initiator.
Alternatively, if the Mobile IPv6 Authentication Protocol is used,
then the Service-Selection AVP contains the string extracted from the
Service Selection Mobility Option [<a href="./rfc5149" title=""Service Selection for Mobile IPv6"">RFC5149</a>], if available in the
received BU. Future specifications may define additional ways to
populate the Service-Selection AVP with the required information.
The AVP is also available to be used in messages sent from the
Diameter server to the Diameter client. For example, if the request
message did not contain the Service-Selection AVP but the MN was
assigned with a default service, the Diameter server MAY return the
name of the assigned default service to the HA.
If the Service-Selection AVP is present in both the request and the
reply messages, it SHOULD contain the same service name. If the
services differ, the HA MAY treat that as authorization failure.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. MIP-MN-AAA-SPI AVP</span>
The MIP-MN-AAA-SPI AVP (AVP Code 341) is of type Unsigned32 and
contains a Security Parameter Index (SPI) code extracted from the
Mobility Message Authentication Option included in the received BU
message. This AVP is reused from [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>].
When the MIP6-Auth-Mode AVP is set to value MIP6_AUTH_MN_AAA, this
AVP MUST be present in the MIR message.
<span class="grey">Korhonen, et al. Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. MIP-MN-HA-SPI AVP</span>
The MIP-MN-HA-SPI AVP (AVP Code 491) is of type Unsigned32 and
contains an SPI value that can be used with other parameters for
identifying the security association required for the validation of
the Mobile IPv6 MN-HA Authentication Option.
When the MIP6-Auth-Mode AVP is set to value MIP6_AUTH_MN_AAA, and the
Diameter server returns a valid MIP-MN-HA-MSA AVP in the MIA message,
this AVP MUST be present inside the MIP-MN-HA-MSA AVP.
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. MIP-Mobile-Node-Address AVP</span>
The MIP-Mobile-Node-Address AVP (AVP Code 333) is of type Address and
contains the HA assigned IPv6 or IPv4 home address of the mobile
node.
If the MIP-Mobile-Node-Address AVP contains the unspecified IPv6
address (0::0) or the all-zeroes IPv4 address (0.0.0.0) in a request
message, then the HA expects the Diameter server to assign the home
address in a subsequent answer message. If the Diameter server
assigns only an IPv6 home network prefix to the mobile node, the
lower 64 bits of the MIP-Mobile-Node-Address AVP provided address
MUST be set to zero.
This AVP is reused from [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>].
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a>. MIP6-Agent-Info AVP</span>
The MIP6-Agent-Info AVP (AVP Code 486) is defined in <a href="./rfc5447#section-4.2.1">Section 4.2.1 of
[RFC5447]</a> and contains the IPv6 or the IPv4 address information of
the HA. The HA address in a request message is the same as in the
received BU message that triggered the authentication and
authorization procedure towards the Diameter server. One use case
is, e.g., to inform the Diameter server of the dynamically assigned
HA.
If the MIP6-Agent-Info AVP is present in an answer message and the
Result-Code AVP is set to DIAMETER_SUCCESS_RELOCATE_HA, then the
Diameter server is indicating to the HA that it MUST initiate an HA
switch procedure towards the MN (e.g., using the procedure defined in
[<a href="./rfc5142" title=""Mobility Header Home Agent Switch Message"">RFC5142</a>]). If the Result-Code AVP is set to any other value, then
the HA SHOULD initiate the HA switch procedure towards the MN. The
address information of the assigned HA is defined in the MIP6-Agent-
Info AVP.
<span class="grey">Korhonen, et al. Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<span class="h3"><a class="selflink" id="section-6.7" href="#section-6.7">6.7</a>. MIP-Careof-Address AVP</span>
The MIP-Careof-Address AVP (AVP Code 487) is of type Address and
contains the IPv6 or the IPv4 care-of address of the mobile node.
The HA extracts this IP address from the received BU message.
<span class="h3"><a class="selflink" id="section-6.8" href="#section-6.8">6.8</a>. MIP-Authenticator AVP</span>
The MIP-Authenticator AVP (AVP Code 488) is of type OctetString and
contains the Authenticator Data from the received BU message. The HA
extracts this data from the MN-AAA Mobility Message Authentication
Option included in the received BU message.
When the MIP6-Auth-Mode AVP is set to value MIP6_AUTH_MN_AAA, this
AVP MUST be present in the MIR message.
<span class="h3"><a class="selflink" id="section-6.9" href="#section-6.9">6.9</a>. MIP-MAC-Mobility-Data AVP</span>
The MIP-MAC-Mobility-Data AVP (AVP Code 489) is of type OctetString
and contains the MAC_Mobility_Data calculated by the HA as defined in
[<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>] for the MN-AAA Mobility Message Authentication Option.
When the MIP6-Auth-Mode AVP is set to value MIP6_AUTH_MN_AAA, this
AVP MUST be present in the MIR message.
<span class="h3"><a class="selflink" id="section-6.10" href="#section-6.10">6.10</a>. MIP-Session-Key AVP</span>
The MIP-Session-Key AVP (AVP Code 343) is of type OctetString and
contains the MN-HA shared secret (i.e., the session key) for the
associated Mobile IPv6 MN-HA authentication option. When the
Diameter server computes the session key, it is placed in this AVP.
How the Diameter server computes the session key is not defined in
this specification. The Session key derivation is deployment
specific and needs to be defined in a respective deployment-specific
system specification.
This AVP is reused from [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>].
<span class="h3"><a class="selflink" id="section-6.11" href="#section-6.11">6.11</a>. MIP-MSA-Lifetime AVP</span>
The MIP-MSA-Lifetime AVP (AVP Code 367) is of type Unsigned32 and
represents the period of time (in seconds) for which the session key
(see <a href="#section-6.10">Section 6.10</a>) is valid. The associated session key MUST NOT be
used if the lifetime has expired.
This AVP is reused from [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>].
<span class="grey">Korhonen, et al. Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<span class="h3"><a class="selflink" id="section-6.12" href="#section-6.12">6.12</a>. MIP-MN-HA-MSA AVP</span>
The MIP-MN-HA-MSA AVP (AVP Code 492) is of type Grouped and contains
the session-related information for use with the Mobile IPv6
Authentication Protocol.
MIP-MN-HA-MSA ::= < AVP Header: 492 >
{ MIP-Session-Key }
{ MIP-MSA-Lifetime }
[ MIP-MN-HA-SPI ]
[ MIP-Algorithm-Type ]
[ MIP-Replay-Mode ]
* [ AVP ]
The MIP-MN-HA-SPI sub-AVP within the MIP-MN-HA-MSA grouped AVP
identifies the security association required for the validation of
the Mobile IPv6 MN-HA Authentication Option. The absence of the MIP-
Replay-Mode AVP MUST be treated as no replay protection was selected.
<span class="h3"><a class="selflink" id="section-6.13" href="#section-6.13">6.13</a>. MIP-Algorithm-Type AVP</span>
The MIP-Algorithm-Type AVP (AVP Code 345) is of type Enumerated and
contains the Algorithm identifier for the associated Mobile IPv6
MN-HA Authentication Option. The Diameter server selects the
algorithm type. Existing algorithm types are defined in [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>]
that also fulfill current <a href="./rfc4285">RFC 4285</a> requirements. This AVP is reused
from [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>].
When the MIP6-Auth-Mode AVP is set to value MIP6_AUTH_MN_AAA, and the
Diameter server returns a valid MIP-MN-HA-MSA AVP in the MIA message,
this AVP MUST be present inside the MIP-MN-HA-MSA AVP.
<span class="h3"><a class="selflink" id="section-6.14" href="#section-6.14">6.14</a>. MIP-Replay-Mode AVP</span>
The MIP-Replay-Mode AVP (AVP Code 346) is of type Enumerated and
contains the replay mode of the HA for authenticating the mobile
node. Out of all possible replay modes defined in [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>], the
following are supported by this specification:
1 None
2 Timestamp
This AVP is reused from [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>].
<span class="grey">Korhonen, et al. Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
<span class="h3"><a class="selflink" id="section-6.15" href="#section-6.15">6.15</a>. MIP6-Feature-Vector AVP</span>
The MIP6-Feature-Vector AVP (AVP Code 124) is defined in [<a href="./rfc5447" title=""Diameter Mobile IPv6: Support for Network Access Server to Diameter Server Interaction"">RFC5447</a>].
However, this specification does not define any Mobile IPv6 split
scenario bootstrapping specific capability flag.
<span class="h3"><a class="selflink" id="section-6.16" href="#section-6.16">6.16</a>. MIP-Timestamp AVP</span>
The MIP-Timestamp AVP (AVP Code 490) is of type OctetString and
contains an 8-octet timestamp value (i.e., 64-bit timestamp) from the
Mobility message replay protection option, defined in [<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>]. The
HA extracts this value from the received BU message, if available.
The HA includes this AVP in the MIR message when the MN-AAA Mobility
Message Authentication Option is available in the received BU and the
Diameter server is expected to return the key material required for
the calculation and validation of the Mobile IPv6 MN-HA
Authentication Option (and the MIP6-Auth-Mode AVP is set to value
MIP6_AUTH_MN_AAA).
<span class="h3"><a class="selflink" id="section-6.17" href="#section-6.17">6.17</a>. QoS-Capability AVP</span>
The QoS-Capability AVP is defined in [<a href="./rfc5777" title=""Traffic Classification and Quality of Service (QoS) Attributes for Diameter"">RFC5777</a>] and contains a list of
supported Quality of Service profiles.
<span class="h3"><a class="selflink" id="section-6.18" href="#section-6.18">6.18</a>. QoS-Resources AVP</span>
The QoS-Resources AVP is defined in [<a href="./rfc5777" title=""Traffic Classification and Quality of Service (QoS) Attributes for Diameter"">RFC5777</a>] and provides QoS and
packet filtering capabilities.
<span class="h3"><a class="selflink" id="section-6.19" href="#section-6.19">6.19</a>. Chargeable-User-Identity AVP</span>
The Chargeable-User-Identity AVP (AVP Code 89) is of type OctetString
and contains a unique temporary handle of the user. The Chargeable-
User-Identity is defined in [<a href="./rfc4372" title=""Chargeable User Identity"">RFC4372</a>].
<span class="h3"><a class="selflink" id="section-6.20" href="#section-6.20">6.20</a>. MIP6-Auth-Mode AVP</span>
The MIP6-Auth-Mode (AVP Code 494) is of type Enumerated and contains
information of the used Mobile IPv6 Authentication Protocol mode.
This specification defines only one value MIP6_AUTH_MN_AAA and the
corresponding AAA interactions when MN-AAA security association is
used to authenticate the Binding Update as described in [<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>].
When the MIP6-Auth_Mode AVP is set to the value of MIP6_AUTH_MN_AAA,
the Auth-Request-Type AVP MUST be set to the value of
AUTHORIZE_AUTHENTICATE.
<span class="grey">Korhonen, et al. Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
If the Diameter server does not support the Mobile IPv6
Authentication Protocol usage mode proposed by the HA, then the
Diameter server MUST fail the authentication/authorization and MUST
set the Result-Code AVP to the value of DIAMETER_ERROR_AUTH_MODE.
<span class="h3"><a class="selflink" id="section-6.21" href="#section-6.21">6.21</a>. Accounting AVPs</span>
Diameter Mobile IPv6 applications, either MIP6I or MIP6A, are used in
the case of the coupled account model. Diameter Mobile IPv4
application [<a href="./rfc4004" title=""Diameter Mobile IPv4 Application"">RFC4004</a>] accounting AVPs are reused in this document.
The following AVPs SHOULD be included in the accounting request
message:
o Accounting-Input-Octets: Number of octets in IP packets received
from the mobile node.
o Accounting-Output-Octets: Number of octets in IP packets sent by
the mobile node.
o Accounting-Input-Packets: Number of IP packets received from the
mobile node.
o Accounting-Output-Packets: Number of IP packets sent by the mobile
node.
o Acct-Multi-Session-Id: Used to link together multiple related
accounting sessions, where each session would have a unique
Session-Id, but the same Acct-Multi-Session-Id AVP.
o Acct-Session-Time: Indicates the length of the current session in
seconds.
o MIP6-Feature-Vector: The supported features for this mobility
service session.
o MIP-Mobile-Node-Address: The home address of the mobile node.
o MIP-Agent-Info: The current home agent of the mobile node.
o Chargeable-User-Identity: The unique temporary identity of the
user. This AVP MUST be included if it is available in the home
agent.
o Service-Selection: Currently selected mobility service.
o QoS-Resources: Assigned Quality-of-Service (QoS) resources for the
mobile node.
<span class="grey">Korhonen, et al. Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
o QoS-Capability: The QoS capability related to the assigned QoS-
Resources.
o MIP-Careof-Address: The current care-of address of the mobile
node.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Result-Code AVP Values</span>
This section defines new Result-Code [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>] values that MUST be
supported by all Diameter implementations that conform to this
specification.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Success</span>
Errors that fall within the Success category are used to inform a
peer that a request has been successfully completed.
DIAMETER_SUCCESS_RELOCATE_HA (Status Code 2009)
This result code is used by the Diameter server to inform the HA
that the MN MUST be switched to another HA.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Permanent Failures</span>
Errors that fall within the Permanent Failures category are used to
inform the peer that the request failed and SHOULD NOT be attempted
again.
DIAMETER_ERROR_MIP6_AUTH_MODE (Status Code 5041)
This error code is used by the Diameter server to inform the peer
that the requested Mobile IPv6 Authentication Protocol usage mode
is not supported.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. AVP Occurrence Tables</span>
The following tables present the AVPs defined in this document and
their occurrences in Diameter messages. Note that AVPs that can only
be present within a Grouped AVP are not represented in this table.
The tables use the following symbols:
0:
The AVP MUST NOT be present in the message.
<span class="grey">Korhonen, et al. Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
0+:
Zero or more instances of the AVP MAY be present in the message.
0-1:
Zero or one instance of the AVP MAY be present in the message.
1:
One instance of the AVP MUST be present in the message.
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. DER, DEA, MIR, and MIA AVP/Command-Code Table</span>
+-----------------------+
| Command-Code |
|-----+-----+-----+-----+
AVP Name | DER | DEA | MIR | MIA |
-------------------------------|-----+-----+-----+-----+
MIP6-Feature-Vector | 0-1 | 0-1 | 0-1 | 0-1 |
MIP-Mobile-Node-Address | 1-2 | 0-2 | 1-2 | 0-2 |
MIP-MN-AAA-SPI | 0 | 0 | 0-1 | 0 |
MIP-MN-HA-SPI | 0 | 0 | 0-1 | 0 |
MIP6-Agent-Info | 1 | 0-1 | 1 | 0-1 |
MIP-Careof-Address | 0 | 0 | 0-1 | 0 |
MIP-Authenticator | 0 | 0 | 0-1 | 0 |
MIP-MAC-Mobility-Data | 0 | 0 | 0-1 | 0 |
MIP-MSA-Lifetime | 0 | 0 | 0 | 1 |
MIP-MN-HA-MSA | 0 | 0 | 0 | 0-1 |
MIP-Timestamp | 0 | 0 | 0-1 | 0-1 |
User-Name | 0-1 | 0-1 | 1 | 0-1 |
Service-Selection | 0-1 | 0-1 | 0-1 | 0-1 |
QoS-Resources | 0+ | 0+ | 0+ | 0+ |
QoS-Capability | 0-1 | 0 | 0-1 | 0 |
Chargeable-User-Identity | 0-1 | 0-1 | 0-1 | 0-1 |
MIP6-Auth-Mode | 0 | 0 | 1 | 0 |
+-----+-----+-----+-----+
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Coupled Accounting Model AVP Table</span>
The table in this section is used to represent which AVPs defined in
this document are to be present in the Accounting messages, as
defined in [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>].
<span class="grey">Korhonen, et al. Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
+-------------+
| Command-Code|
|------+------+
Attribute Name | ACR | ACA |
-------------------------------------|------+------+
Accounting-Input-Octets | 0-1 | 0-1 |
Accounting-Input-Packets | 0-1 | 0-1 |
Accounting-Output-Octets | 0-1 | 0-1 |
Accounting-Output-Packets | 0-1 | 0-1 |
Acct-Multi-Session-Id | 0-1 | 0-1 |
Acct-Session-Time | 0-1 | 0-1 |
MIP6-Feature-Vector | 0-1 | 0-1 |
MIP6-Agent-Info | 0-1 | 0-1 |
MIP-Mobile-Node-Address | 0-2 | 0-2 |
Event-Timestamp | 0-1 | 0 |
MIP-Careof-Address | 0-1 | 0 |
Service-Selection | 0-1 | 0 |
QoS-Capability | 0+ | 0+ |
QoS-Resources | 0+ | 0+ |
Chargeable-User-Identity | 0-1 | 0 |
-------------------------------------|------+------+
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IANA Considerations</span>
This section contains the namespaces that have either been created in
this specification or had their values assigned to existing
namespaces managed by IANA.
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Command Codes</span>
IANA has allocated a command code value for the following new command
from the Command Code namespace defined in [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>]. See <a href="#section-5">Section 5</a>
for the assignment of the namespace in this specification.
Command Code | Value
-----------------------------------+------
MIP6-Request/Answer (MIR/MIA) | 325
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. AVP Codes</span>
IANA has registered the following new AVPs from the AVP Code
namespace defined in [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>].
o MIP-Careof-Address
<span class="grey">Korhonen, et al. Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
o MIP-Authenticator
o MIP-MAC-Mobility-Data
o MIP-Timestamp
o MIP-MN-HA-SPI
o MIP-MN-HA-MSA
o Service-Selection
o MIP6-Auth-Mode
The AVPs are defined in <a href="#section-6">Section 6</a>.
<span class="h3"><a class="selflink" id="section-9.3" href="#section-9.3">9.3</a>. Result-Code AVP Values</span>
IANA has allocated new values to the Result-Code AVP (AVP Code 268)
namespace defined in [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>]. See <a href="#section-7">Section 7</a> for the assignment of
the namespace in this specification.
Result-Code | Value
----------------------------------------------+------
DIAMETER_SUCCESS_RELOCATE_HA | 2009
DIAMETER_ERROR_MIP6_AUTH_MODE | 5041
<span class="h3"><a class="selflink" id="section-9.4" href="#section-9.4">9.4</a>. Application Identifier</span>
IANA has allocated two new values "Diameter Mobile IPv6 IKE" and
"Diameter Mobile IPv6 Auth" from the Application Identifier namespace
defined in [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>].
Application Identifier | Value
-----------------------------------+------
Diameter Mobile IPv6 IKE (MIP6I) | 7
Diameter Mobile IPv6 Auth (MIP6A) | 8
<span class="h3"><a class="selflink" id="section-9.5" href="#section-9.5">9.5</a>. Namespaces</span>
IANA has created a new registry, "MIP6 Authentication Mode Registry",
for use with the enumerated MIP6-Auth-Mode AVP. The registry
initially contains the following value:
<span class="grey">Korhonen, et al. Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Token | Value | Description
---------------------------------------------+----------+------------
MIP6_AUTH_MN_AAA | 1 | <a href="./rfc5778">RFC 5778</a>
Allocation of new values follow the example policies described in
[<a href="./rfc5226" title="">RFC5226</a>]. New values for the MIP6-Auth-Mode AVP will be assigned
based on the "Specification Required" policy. The value 0 (zero) is
reserved, and the maximum value is 4294967295 (i.e., 2^32-1).
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Security Considerations</span>
The security considerations for the Diameter interaction required to
accomplish the split scenario are described in [<a href="./rfc5026" title=""Mobile IPv6 Bootstrapping in Split Scenario"">RFC5026</a>].
Additionally, the security considerations of the Diameter base
protocol [<a href="./rfc3588" title=""Diameter Base Protocol"">RFC3588</a>], and Diameter EAP application [<a href="./rfc4072" title=""Diameter Extensible Authentication Protocol (EAP) Application"">RFC4072</a>] are
applicable to this document.
The Diameter messages may be transported between the HA and the
Diameter server via one or more AAA brokers or Diameter agents. In
this case, the HA to the Diameter server AAA communication relies on
the security properties of the intermediating AAA inter-connection
networks, AAA brokers, and Diameter agents (such as proxies).
In the case of the Authentication Protocol for Mobile IPv6 [<a href="./rfc4285" title=""Authentication Protocol for Mobile IPv6"">RFC4285</a>],
this specification expects that the Diameter server derives the MN-HA
Security Association and returns the associated session key (i.e.,
the MN-HA shared session key) to the HA. However, this specification
does not define nor do other IETF specifications define how the
Diameter server actually derives required keys. The details of the
key derivation depends on the deployment where this specification is
used and therefore the security properties of the system depend on
how this is done.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Acknowledgements</span>
The authors would like to thank Jari Arkko, Tolga Asversen, Pasi
Eronen, Santiago Zapata Hernandez, Anders Kristensen, Avi Lior, John
Loughney, Ahmad Muhanna, Behcet Sarikaya, Basavaraj Patil, Vijay
Devarapalli, Lionel Morand, Domagoj Premec, Semyon Mizikovsky, and
Yoshihiro Ohba for all the useful discussions. Ahmad Muhanna
provided a detailed review of the document in August 2007. Pasi
Eronen provided detailed comments and text proposals during the IESG
review that helped to improved this document greatly.
We would also like to thank our Area Director, Dan Romascanu, for his
support.
<span class="grey">Korhonen, et al. Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Hannes Tschofenig would like to thank the European Commission support
in the co-funding of the ENABLE project, where this work is partly
being developed.
Julien Bournelle would like to thank GET/INT since he began this work
while he was under their employ.
Madjid Nakhjiri would like to thank Huawei USA as most of his
contributions to this document were possible while he was under their
employ.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. References</span>
<span class="h3"><a class="selflink" id="section-12.1" href="#section-12.1">12.1</a>. Normative References</span>
[<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>, March 1997.
[<a id="ref-RFC3588">RFC3588</a>] Calhoun, P., Loughney, J., Guttman, E., Zorn, G., and J.
Arkko, "Diameter Base Protocol", <a href="./rfc3588">RFC 3588</a>,
September 2003.
[<a id="ref-RFC3775">RFC3775</a>] Johnson, D., Perkins, C., and J. Arkko, "Mobility Support
in IPv6", <a href="./rfc3775">RFC 3775</a>, June 2004.
[<a id="ref-RFC4004">RFC4004</a>] Calhoun, P., Johansson, T., Perkins, C., Hiller, T., and
P. McCann, "Diameter Mobile IPv4 Application", <a href="./rfc4004">RFC 4004</a>,
August 2005.
[<a id="ref-RFC4005">RFC4005</a>] Calhoun, P., Zorn, G., Spence, D., and D. Mitton,
"Diameter Network Access Server Application", <a href="./rfc4005">RFC 4005</a>,
August 2005.
[<a id="ref-RFC4072">RFC4072</a>] Eronen, P., Hiller, T., and G. Zorn, "Diameter Extensible
Authentication Protocol (EAP) Application", <a href="./rfc4072">RFC 4072</a>,
August 2005.
[<a id="ref-RFC4283">RFC4283</a>] Patel, A., Leung, K., Khalil, M., Akhtar, H., and K.
Chowdhury, "Mobile Node Identifier Option for Mobile IPv6
(MIPv6)", <a href="./rfc4283">RFC 4283</a>, November 2005.
[<a id="ref-RFC4285">RFC4285</a>] Patel, A., Leung, K., Khalil, M., Akhtar, H., and K.
Chowdhury, "Authentication Protocol for Mobile IPv6",
<a href="./rfc4285">RFC 4285</a>, January 2006.
[<a id="ref-RFC4306">RFC4306</a>] Kaufman, C., "Internet Key Exchange (IKEv2) Protocol",
<a href="./rfc4306">RFC 4306</a>, December 2005.
<span class="grey">Korhonen, et al. Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
[<a id="ref-RFC4372">RFC4372</a>] Adrangi, F., Lior, A., Korhonen, J., and J. Loughney,
"Chargeable User Identity", <a href="./rfc4372">RFC 4372</a>, January 2006.
[<a id="ref-RFC4877">RFC4877</a>] Devarapalli, V. and F. Dupont, "Mobile IPv6 Operation
with IKEv2 and the Revised IPsec Architecture", <a href="./rfc4877">RFC 4877</a>,
April 2007.
[<a id="ref-RFC5026">RFC5026</a>] Giaretta, G., Kempf, J., and V. Devarapalli, "Mobile IPv6
Bootstrapping in Split Scenario", <a href="./rfc5026">RFC 5026</a>, October 2007.
[<a id="ref-RFC5142">RFC5142</a>] Haley, B., Devarapalli, V., Deng, H., and J. Kempf,
"Mobility Header Home Agent Switch Message", <a href="./rfc5142">RFC 5142</a>,
January 2008.
[<a id="ref-RFC5149">RFC5149</a>] Korhonen, J., Nilsson, U., and V. Devarapalli, "Service
Selection for Mobile IPv6", <a href="./rfc5149">RFC 5149</a>, February 2008.
[<a id="ref-RFC5447">RFC5447</a>] Korhonen, J., Bournelle, J., Tschofenig, H., Perkins, C.,
and K. Chowdhury, "Diameter Mobile IPv6: Support for
Network Access Server to Diameter Server Interaction",
<a href="./rfc5447">RFC 5447</a>, February 2009.
[<a id="ref-RFC5777">RFC5777</a>] Korhonen, J., Tschofenig, H., Arumaithurai, M., Jones,
M., Ed., and A. Lior, "Traffic Classification and Quality
of Service (QoS) Attributes for Diameter", <a href="./rfc5777">RFC 5777</a>,
February 2010.
<span class="h3"><a class="selflink" id="section-12.2" href="#section-12.2">12.2</a>. Informative References</span>
[<a id="ref-DIME-APP">DIME-APP</a>] Fajardo, V., Asveren, T., Tschofenig, H., McGregor, G.,
and J. Loughney, "Diameter Applications Design
Guidelines", Work in Progress, July 2009.
[<a id="ref-RFC4640">RFC4640</a>] Patel, A. and G. Giaretta, "Problem Statement for
bootstrapping Mobile IPv6 (MIPv6)", <a href="./rfc4640">RFC 4640</a>,
September 2006.
[<a id="ref-RFC5226">RFC5226</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
May 2008.
[<a id="ref-RFC5555">RFC5555</a>] Soliman, H., "Mobile IPv6 Support for Dual Stack Hosts
and Routers", <a href="./rfc5555">RFC 5555</a>, June 2009.
[<a id="ref-RFC5637">RFC5637</a>] Giaretta, G., Guardini, I., Demaria, E., Bournelle, J.,
and R. Lopez, "Authentication, Authorization, and
Accounting (AAA) Goals for Mobile IPv6", <a href="./rfc5637">RFC 5637</a>,
September 2009.
<span class="grey">Korhonen, et al. Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc5778">RFC 5778</a> Diameter MIPv6: HA-to-AAAH Support February 2010</span>
Authors' Addresses
Jouni Korhonen (editor)
Nokia Siemens Networks
Linnoitustie 6
Espoo FIN-02600
Finland
EMail: jouni.nospam@gmail.com
Hannes Tschofenig
Nokia Siemens Networks
Linnoitustie 6
Espoo FIN-02600
Finland
Phone: +358 (50) 4871445
EMail: Hannes.Tschofenig@gmx.net
URI: <a href="http://www.tschofenig.priv.at">http://www.tschofenig.priv.at</a>
Julien Bournelle
Orange Labs
38-4O rue du general Leclerc
Issy-Les-Moulineaux 92794
France
EMail: julien.bournelle@orange-ftgroup.com
Gerardo Giaretta
Qualcomm
5775 Morehouse Dr
San Diego, CA 92121
USA
EMail: gerardo.giaretta@gmail.com
Madjid Nakhjiri
Motorola
USA
EMail: madjid.nakhjiri@motorola.com
Korhonen, et al. Standards Track [Page 34]
</pre>
|