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
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
|
Internet Engineering Task Force (IETF) F. Xia
Request for Comments: 6572 B. Sarikaya
Category: Standards Track Huawei USA
ISSN: 2070-1721 J. Korhonen, Ed.
Nokia Siemens Networks
S. Gundavelli
Cisco
D. Damic
Siemens
June 2012
RADIUS Support for Proxy Mobile IPv6
Abstract
This document defines new attributes to facilitate Proxy Mobile IPv6
operations using the RADIUS infrastructure. The protocol defined in
this document uses RADIUS-based interfaces of the mobile access
gateway and the local mobility anchor with the AAA server for
authentication, authorization, and policy functions. The RADIUS
interactions between the mobile access gateway and the RADIUS-based
AAA server take place when the mobile node (MN) attaches,
authenticates, and authorizes to a Proxy Mobile IPv6 domain.
Furthermore, this document defines the RADIUS-based interface between
the local mobility anchor and the AAA RADIUS server for authorizing
received Proxy Binding Update messages for the mobile node's mobility
session. In addition to the interactions related to mobility session
setup, this document defines the baseline for the mobile access
gateway and the local mobility anchor generated accounting.
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 Section 2 of RFC 5741.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc6572.
Xia, et al. Standards Track [Page 1]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Copyright Notice
Copyright (c) 2012 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) 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.
Xia, et al. Standards Track [Page 2]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Table of Contents
1. Introduction ....................................................4
2. Terminology .....................................................4
3. Solution Overview ...............................................5
4. Attribute Definitions ...........................................9
4.1. MIP6-Feature-Vector ........................................9
4.2. Mobile-Node-Identifier ....................................11
4.3. Service-Selection .........................................12
4.4. PMIP6-Home-LMA-IPv6-Address ...............................12
4.5. PMIP6-Visited-LMA-IPv6-Address ............................13
4.6. PMIP6-Home-LMA-IPv4-Address ...............................14
4.7. PMIP6-Visited-LMA-IPv4-Address ............................15
4.8. PMIP6-Home-HN-Prefix ......................................15
4.9. PMIP6-Visited-HN-Prefix ...................................16
4.10. PMIP6-Home-Interface-ID ..................................18
4.11. PMIP6-Visited-Interface-ID ...............................18
4.12. PMIP6-Home-IPv4-HoA ......................................19
4.13. PMIP6-Visited-IPv4-HoA ...................................20
4.14. PMIP6-Home-DHCP4-Server-Address ..........................21
4.15. PMIP6-Visited-DHCP4-Server-Address .......................22
4.16. PMIP6-Home-DHCP6-Server-Address ..........................22
4.17. PMIP6-Visited-DHCP6-Server-Address .......................23
4.18. Calling-Station-Id .......................................24
4.19. Chargeable-User-Identity .................................24
4.20. PMIP6-Home-IPv4-Gateway ..................................25
4.21. PMIP6-Visited-IPv4-Gateway ...............................25
5. MAG to RADIUS AAA Interface ....................................26
5.1. Interface Operations ......................................26
5.2. Table of Attributes .......................................27
6. LMA to RADIUS AAA Interface ....................................28
6.1. Interface Operations ......................................28
6.2. Table of Attributes .......................................30
7. Accounting .....................................................31
7.1. Accounting at LMA .........................................31
7.2. Accounting at MAG .........................................32
7.3. Table of Attributes .......................................32
8. Security Considerations ........................................32
9. IANA Consideration .............................................33
9.1. Attribute Type Codes ......................................33
9.2. Namespaces ................................................33
10. Acknowledgements ..............................................34
11. References ....................................................34
11.1. Normative References .....................................34
11.2. Informative References ...................................35
Xia, et al. Standards Track [Page 3]
^L
RFC 6572 RADIUS PMIPv6 June 2012
1. Introduction
Proxy Mobile IPv6 (PMIPv6) [RFC5213] is a network-based mobility
management protocol that allows IP mobility support for a mobile node
without requiring the mobile node's participation in any mobility-
related signaling. The mobile management elements in the network,
the mobile access gateway (MAG) and the local mobility anchor (LMA),
are the two key functions in this network-based mobility system. The
mobile access gateway is responsible for detecting the mobile node's
movements in the network and for initiating the needed mobility
management signaling with the local mobility anchor (LMA). Both the
mobility management agents make use of the AAA infrastructure to
retrieve the mobile node's policy profile and for performing service
authorization.
This document defines a RADIUS-based [RFC2865] profile and
corresponding attributes to be used on the AAA interface between the
MAG and the AAA RADIUS server. This interface is used to carry the
per-MN policy profile from the remote policy store to the MAG.
Furthermore, this document also defines a RADIUS-based interface
between the LMA and the AAA RADIUS server for authorization of the
received Proxy Mobile IPv6 signaling messages. The AAA procedures
defined in this document cover the following two scenarios:
o a mobile node connects to the Proxy Mobile IPv6 domain from the
home network
o a mobile node connects to the Proxy Mobile IPv6 domain from a
visited network
2. Terminology
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 [RFC2119].
All the mobility-related terms used in this document are to be
interpreted as defined in the Proxy Mobile IPv6 specifications
[RFC5213] and [RFC5844]. Additionally, this document uses the
following abbreviations:
Network Access Server (NAS):
A function that provides authorization services for a device/user
access to the network as defined in [RFC2865]. This document
makes an assumption that the NAS function is co-located with the
Xia, et al. Standards Track [Page 4]
^L
RFC 6572 RADIUS PMIPv6 June 2012
MAG. In scenarios where the NAS function and MAG are decoupled,
the messaging interface needed between them for the operation of
PMIP6 is beyond the scope of this document.
Home AAA (HAAA):
An Authentication, Authorization, and Accounting (AAA) server
located in the MN's home network. This sever has access to the
mobile node's policy profiles.
Visited AAA (VAAA):
An Authentication, Authorization, and Accounting (AAA) server
located in the MN's visited network. The VAAA server takes the
role of a proxy-server, forwarding the received AAA service
request to the HAAA server in the mobile node's home network and
relaying the response to the requesting node, after applying any
local access network policies.
Local AAA (LAAA):
An Authentication, Authorization, and Accounting proxy located in
the local network. In a roaming case, the local AAAA has the
visited AAA role.
3. Solution Overview
This document defines the RADIUS-based AAA interactions with the two
mobility management elements in the Proxy Mobile IPv6 domain.
o Interactions between a MAG and a RADIUS-based AAA server
o Interactions between a LMA and a RADIUS-based AAA server
The mobile node's policy profile [RFC5213] is present in a policy
store and is needed by the PMIPv6 mobility management elements for
authorizing the mobile node for mobility management service and for
obtaining various service-related parameters. This policy store
could be locally co-located with the mobility management agents
enabling direct local access or could be available from a AAA server
through a RADIUS-based AAA interface.
When a mobile node attaches to an access network, the NAS on that
access network may activate the network access authentication
procedure. The choice of the authentication mechanism is specific to
the access network deployment; however, it is typically based on the
Extensible Authentication Protocol (EAP) [RFC3748]. The NAS performs
the network access authentication and queries the HAAA using AAA
Xia, et al. Standards Track [Page 5]
^L
RFC 6572 RADIUS PMIPv6 June 2012
protocol, such as RADIUS. If the network access authentication
succeeds, the MN's policy profile is obtained as part of the RADIUS
message exchange with the AAA server.
The mobile node may be an IPv4-only node, IPv6-only node, or a dual-
stack (IPv4/v6) node. Based on the policy specified in the policy
profile, the network access authentication procedure SHOULD provide
the unambiguous indication of the type of address(es) to be assigned
for the MN in the network and with all other service-related and
policy parameters relevant to the mobility service.
After the successful network access authentication and obtaining the
mobile node's policy profile, the MAG sends a Proxy Binding Update
(PBU) to the LMA. Upon receiving the PBU, the LMA interacts with the
HAAA to obtain the mobile node's policy profile, which is required
for authorizing and activating mobility service.
This document adds support for three distinct PMIPv6 mobility use
cases, taking into account the administrative domains to which the
MAG and the LMA belong. The following are the three relevant
deployment models.
1. the MAG and LMA are both in the home network,
2. the MAG and LMA are both in the visited network,
3. the MAG is in the visited network while the LMA is in the home
network.
Figure 1 shows participating network entities for the PMIPv6 mobility
session, which is located in the home network. The MAG and LMA
interact only with the HAAA.
Xia, et al. Standards Track [Page 6]
^L
RFC 6572 RADIUS PMIPv6 June 2012
+--------+
| HAAA & | RADIUS +-----+
| Policy |<-------->| LMA |
| Profile| +-----+
+--------+ | <--- LMA-Address
^ |
| // \\
+---|------------- //---\\----------------+
( | IPv4/IPv6 // \\ )
( | Network // \\ )
+---|-----------//---------\\-------------+
| // \\
RADIUS // <- Tunnel1 \\ <- Tunnel2
| // \\
| |- MAG1-Address |- MAG2-Address
| +----+ +----+
+---->|MAG1| |MAG2|
+----+ +----+
| |
| |
MN1 MN2
Figure 1: The MAG and LMA Are Both in the Home Network
Figure 2 shows both the LMA and MAG are in the visited network. The
MAG and LMA exchange signaling with the HAAA through the VAAA, which
acts as a Proxy. The visited network may append additional
information to the HAAA replies in order to reflect the local policy.
Xia, et al. Standards Track [Page 7]
^L
RFC 6572 RADIUS PMIPv6 June 2012
+---------------+
| HAAA & |
+----------| Policy Profile|
| +---------------+
|
+---------+
|[VL]AAA &| RADIUS +-----+
| Policy |<------->| LMA |
| Profile | +-----+
+---------+ | <--- LMA-Address
^ // \\
+---|------------- //---\\----------------+
( | IPv4/IPv6 // \\ )
( | Network // \\ )
+---|-----------//---------\\-------------+
| // \\
RADIUS // <- Tunnel1 \\ <- Tunnel2
| // \\
| |- MAG1-Address |- MAG2-Address
| +----+ +----+
+---->|MAG1| |MAG2|
+----+ +----+
| |
MN1 MN2
Figure 2: The MAG and LMA Are Both in the Visited/Local Network
Figure 3 illustrates a topology where the MAG resides in the visited
network while the associated LMA is in MN's home network. Any
message between the MAG and the HAAA passes through the VAAA, which
acts as a Proxy. During the network authentication, the visited
network's specific policy may also be propagated from the VAAA to the
MAG. The LMA has a direct access to the HAAA.
Xia, et al. Standards Track [Page 8]
^L
RFC 6572 RADIUS PMIPv6 June 2012
+---------------+
| HAAA & |
+----------| Policy Profile|
| +---------------+
| |
| RADIUS
+---------+ |
|[VL]AAA &| +-----+
| Policy | | LMA |
| Profile | +-----+
+---------+ | <--- LMA-Address
^ // \\
+---|------------- //---\\----------------+
( | IPv4/IPv6 // \\ )
( | Network // \\ )
+---|-----------//---------\\-------------+
| // \\
RADIUS // <- Tunnel1 \\ <- Tunnel2
| // \\
| |- MAG1-Address |- MAG2-Address
| +----+ +----+
+---->|MAG1| |MAG2|
+----+ +----+
| |
MN1 MN2
Figure 3: Visited MAG and Home LMA Topology
4. Attribute Definitions
4.1. MIP6-Feature-Vector
Diameter [RFC3588] reserves AVP Code space 1-255 as RADIUS attribute
compatibility space. The MIP6-Feature-Vector attribute (Type value
124) defined in [RFC5447] is of type OctetString and contains a
64-bit flags field of supported mobility capabilities. This document
reserves two new capability bits according to the rules in [RFC5447],
and reuses the PMIPv6 capability bits defined by [RFC5779]. The
following capability flag bits are used or defined in this document:
PMIP6_SUPPORTED (0x0000010000000000)
This capability bit is used as defined in [RFC5779].
IP4_HOA_SUPPORTED (0x0000020000000000)
This capability bit is used as defined in [RFC5779]. Assignment
of the IPv4-HoA (Home Address) is defined by [RFC5844].
Xia, et al. Standards Track [Page 9]
^L
RFC 6572 RADIUS PMIPv6 June 2012
LOCAL_MAG_ROUTING_SUPPORTED (0x0000040000000000)
This capability bit is used as defined in [RFC5779].
IP4_TRANSPORT_SUPPORTED (0x0000800000000000)
This capability bit is used for negotiation of the IPv4 transport
support between the MAG and AAA. When the MAG sets this flag bit
in the MIP6-Feature-Vector, it indicates the ability of the MAG to
provide IPv4 transport (i.e., IPv4-based encapsulation) for
carrying IP traffic between the MAG and the LMA. If this flag bit
is unset in the returned MIP6-Feature-Vector attribute, the AAA
does not authorize the use of IPv4 transport on the MAG-to-LMA
tunnel.
IP4_HOA_ONLY_SUPPORTED (0x0001000000000000)
This capability bit is used for determination of the authorized
PMIPv6 mobility mode. When this bit is set by the AAA, it
indicates PMIPv6 mobility with IPv4 support has only been
authorized for the MN. As a result, the RADIUS Access-Accept
SHOULD NOT carry the IPv6 Home Network Prefix (IPv6 HNP). When
this bit is set, the PMIP6_SUPPORTED flag MUST also be set and the
IP4_HOA_SUPPORTED flag MUST NOT be set.
To summarize the use of the MIP6-Feature-Vector the following
capability bit combination settings mean:
PMIP6-SUPPORTED bit set - only IPv6 mobility is supported and
authorized.
PMIP6-SUPPORTED and IP4-ONLY-HOA-SUPPORTED bits set - only IPv4
mobility is supported and authorized.
PMIP6-SUPPORTED and IP4-HOA-SUPPORTED bits set - both IPv6 and
IPv4 mobility are supported and authorized.
The MIP6-Feature-Vector attribute is also used on the LMA to the
RADIUS AAA interface. This capability announcement attribute enables
direct capability negotiation between the LMA and the AAA. The
capabilities that are announced by both parties in the MIP6-Feature-
Vector are known to be mutually supported. The LMA may use this
mechanism during authorization of the received PBU against the AAA to
check individual PMIPv6 feature permissions for a particular MN.
If the RADIUS Access-Accept contains a contradicting combination of
the capability flag bits such as both the IP4_HOA_ONLY_SUPPORTED and
the IP4_HOA_SUPPORTED flags being set, then the RADIUS client MUST
Xia, et al. Standards Track [Page 10]
^L
RFC 6572 RADIUS PMIPv6 June 2012
treat the Access-Accept as an Access-Reject and SHOULD log the event.
Similarly, if the RADIUS Access-Request contains a contradicting
combination of the capability flag bits, then the RADIUS server MUST
reply with an Access-Reject message and SHOULD log the event.
4.2. Mobile-Node-Identifier
The Mobile-Node-Identifier attribute (Type value 145) is of type
String and contains the mobile node identifier (MN-Identifier), see
[RFC5213], in a form of a Network Access Identifier (NAI) [RFC4282].
This identifier and the identifier used for access authentication may
be different; however, there needs to be a mapping between the two
identities as specified in Section 6.6 of [RFC5213]. This attribute
is used on the interface between the MAG and the AAA server. The
Mobile-Node-Identifier attribute is designed for deployments where
the identity used during network access authentication and the
identity used for mobility management is decoupled. It may also be
the case where the MAG does not have means to find out the MN
identity that could be used in subsequent PBU and Proxy Binding
Acknowledgement (PBA) exchanges (e.g., due to identity hiding during
the network access authentication) or when the HAAA wants to assign
periodically changing identities to the MN.
The Mobile-Node-Identifier attribute MAY be returned by the HAAA in
the RADIUS Access-Accept message that completes a successful
authentication and authorization exchange between the MAG and the
HAAA. The MAG MUST use the received MN-Identifier.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Mobile Node Identifier... ~
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
Mobile-Node-Identifier 145.
Length:
In octets, including Type and Length fields (>= 3).
Mobile Node Identifier:
This field is of type String and contains the MN-Identifier
of the MN to be used in the PBU/PBA exchange.
Xia, et al. Standards Track [Page 11]
^L
RFC 6572 RADIUS PMIPv6 June 2012
4.3. Service-Selection
The Service-Selection attribute (Type value 146) is of type UTF-8
text and contains the name of the service or the external network
with which the mobility service for the particular MN SHOULD be
associated [RFC5149]. The identifier MUST be unique within the
PMIPv6 Domain when normalized using the selected normalization form
[UNF] for the particular PMIPv6 Domain deployment. For instance,
[RFC5149] uses the Normalization Form KC (NFKC).
The MAG MUST include the Service-Selection attribute in the Access-
Request sent to the AAA if the information was acquired, e.g., by
operator-specific configuration. The AAA MAY include the Service-
Selection attribute in the Access-Accept response message to the MAG
even if it was not included in the Access-Request as a means of
indicating the MN's default service.
The Service Selection mobility option defined in [RFC5149] can be
used in PBU/PBA messages between the MAG and LMA. On the LMA-to-AAA
interface, the LMA MAY populate the Service-Selection attribute in
the Access-Request message using the service information found in the
received PBU, if such a mobility option were included. The Service-
Selection identifier should be used to assist the PBU authorization,
the assignment of the MN-HNP, and the IPv4-MN-HoA as described in
[RFC5149] and [RFC5779].
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Service Identifier... ~
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
Service-Selection 146.
Length:
In octets, including Type and Length fields (>= 3).
Text:
This field is of type UTF-8 text and contains the Service
Identifier with which the MN is associated.
4.4. PMIP6-Home-LMA-IPv6-Address
The PMIP6-Home-LMA-IPv6-Address attribute (Type value 147) is of type
IPv6 address and is used to deliver the IPv6 address of the LMA
located in the home network.
Xia, et al. Standards Track [Page 12]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Before the MAG can initiate Proxy Mobile IPv6 signaling, it must be
aware of the LMA's IP address.
When the LMA is assigned to the MN from the home network, this
attribute MAY be sent by the HAAA to the MAG in the RADIUS Access-
Accept message.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Home LMA IPv6 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home LMA IPv6 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home LMA IPv6 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home LMA IPv6 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home LMA IPv6 address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Home-LMA-IPv6-Address 147.
Length:
= 18 octets
Home LMA IPv6 address:
128-bit IPv6 address of the assigned home LMA IPv6 address.
4.5. PMIP6-Visited-LMA-IPv6-Address
The PMIP6-Visited-LMA-IPv6-Address attribute (Type value 148) is of
type IPv6 address and is used to propose a particular LMA in the
visited network and to authorize the use of the LMA in the visited/
local network.
PMIP6-Visited-LMA-IPv6-Address attribute MAY be included by the MAG
in the RADIUS Access-Request message. The LMA in the visited/local
network may be assigned by the [VL]AAA as the result of retrieved
policy profile. If included by the [VL]AAA in the RADIUS Access-
Accept sent to the MAG, the use of the LMA in the visited/local
network is authorized and the attribute SHALL carry the IPv6 address
of the LMA assigned for the particular MN. See Section 4.2.5 of
[RFC5447] how the MIP6-Feature-Vector attribute and
LOCAL_HOME_AGENT_ASSIGNMENT capability flag is used with the LMA
(Home Agent) assignment.
Xia, et al. Standards Track [Page 13]
^L
RFC 6572 RADIUS PMIPv6 June 2012
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Visited LMA IPv6 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited LMA IPv6 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited LMA IPv6 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited LMA IPv6 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited LMA IPv6 address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Visited-LMA-IPv6-Address 148.
Length:
= 18 octets
Visited LMA IPv6 address:
128-bit IPv6 address of the assigned visited LMA IPv6 address.
4.6. PMIP6-Home-LMA-IPv4-Address
The PMIP6-Home-LMA-IPv4-Address attribute (Type value 149) is of type
IPv4 address and contains the IPv4 address of the LMA assigned by the
HAAA. The [RFC5844] supports Proxy Mobile IPv6 signaling exchange
between MAG and LMA using the IPv4 transport.
When the LMA is located in the home network, this attribute MAY be
sent by the HAAA to the MAG in the RADIUS Access-Accept message.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Home LMA IPv4 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home LMA IPv4 address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Home-LMA-IPv4-Address 149.
Length:
= 6 octets
Xia, et al. Standards Track [Page 14]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Home LMA IPv4 address:
32-bit IPv4 address of the assigned LMA.
4.7. PMIP6-Visited-LMA-IPv4-Address
The PMIP6-Visited-LMA-IPv4-Address attribute (Type value 150) is of
type IPv4 address and is used to propose a particular LMA in the
visited network and to authorize the use of the LMA in the visited
network.
PMIP6-Visited-LMA-IPv4-Address attribute MAY be included by the MAG
in the RADIUS Access-Request message. The LMA in the visited/local
network may be assigned by the [VL]AAA as the result of retrieved
policy profile. If included by the [VL]AAA in the RADIUS Access-
Accept sent to the MAG, the use of the LMA in the visited/local
network is authorized and the attribute SHALL carry the IPv4 address
of the LMA assigned for the particular MN. See Section 4.2.5 of
[RFC5447] how the MIP6-Feature-Vector attribute and
LOCAL_HOME_AGENT_ASSIGNMENT capability flag is used with the LMA
(Home Agent) assignment.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Visited LMA IPv4 address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited LMA IPv4 address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Visited-LMA-IPv4-Address 150.
Length:
= 6 octets
IPv4 LMA address:
32-bit IPv4 address of the assigned LMA.
4.8. PMIP6-Home-HN-Prefix
The PMIP6-Home-HN-Prefix attribute (Type value 151) is of type IPv6
prefix. It contains the Mobile Node - Home Network Prefix (MN-HNP),
which is the IPv6 prefix assigned to the link between the MN and the
MAG. The MN configures its IP interface from its home network
prefix(es). When the LMA is located in the home network, the PMIP6-
Home-HN-Prefix attribute is used to deliver the MN-HNP from the HAAA
to the MAG.
Xia, et al. Standards Track [Page 15]
^L
RFC 6572 RADIUS PMIPv6 June 2012
The PMIP6-Home-HN-Prefix attribute is also used on the LMA-to-HAAA
interface containing the prefix assigned to the MN. If the LMA
delegates the MN-HNP assignment to the HAAA, the attribute MUST
contain all zeroes in the address of (i.e., '::') the Access-Request
message. The attribute MUST be present in the RADIUS Access-Accept
message if the prior request already included one and SHOULD carry
the MN-HNP the HAAA assigned to the MN.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Reserved | Prefix-Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Home MN-HNP
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home MN-HNP
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home MN-HNP
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home MN-HNP |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Home-HN-Prefix 151.
Length:
= at least 4 and no larger than 20.
Reserved:
Reserved for future use. The bits MUST be set to zero by the
sender and MUST be ignored by the receiver.
Prefix-Length:
The 8-bit unsigned integer indicating the prefix length of
the home network prefix (at least 0 and no larger than 128).
If the home network prefix contains an address of all zeroes
(i.e., '::'), then the Prefix-Length MUST be set to 128.
Home Network Prefix:
The home network prefix for the MN's IPv6 address configuration.
The Prefix field is up to 16 octets in length. Bits outside of
the Prefix-Length, if included, must be zero.
4.9. PMIP6-Visited-HN-Prefix
The PMIP6-Visited-HN-Prefix attribute (Type value 152) is of type
IPv6 prefix. It contains the Mobile Node - Home Network Prefix (MN-
HNP), which is the IPv6 prefix assigned to the link between the MN
Xia, et al. Standards Track [Page 16]
^L
RFC 6572 RADIUS PMIPv6 June 2012
and the MAG. The MN configures its IP interface from its home
network prefix(es). When the LMA is located in the visited network,
the PMIP6-Visited-HN-Prefix attribute is used to deliver the MN-HNP
from the VAAA to the MAG.
The PMIP6-Visited-HN-Prefix attribute is also used on the LMA-to-VAAA
interface containing the IPv6 prefix assigned to the MN. If the LMA
delegates the assignment of the MN-HNP to the VAAA, the attribute
MUST contain an address of all zeroes (i.e., '::') in the RADIUS
Access-Request message. The attribute MUST be present in Access-
Accept message if the prior request already included one and SHOULD
carry the MN-HNP the VAAA assigned to the MN.
The attribute SHOULD NOT be included if the use of LMA in the home
network is authorized (the PMIP6-Home-HN-Prefix and/or PMIP6-Home-
LMA-IPv6-Address attributes are already present). However, if the
VAAA local policy allows both home and visited LMA addresses to be
delivered to the MAG, then this attribute MAY also be included.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Reserved | Prefix-Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Visited MN-HNP
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited MN-HNP
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited MN-HNP
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited MN-HNP |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Visited-HN-Prefix 152.
Length:
= at least 4 and no larger than 20.
Reserved:
Reserved for future use. The bits MUST be set to zero by the
sender and MUST be ignored by the receiver.
Prefix-Length:
The 8-bit unsigned integer indicating the prefix length of
the Visited MN-HNP (at least 0 and no larger than 128). If
the visited home network prefix contains an address of all zeroes
(i.e., '::'), then the Prefix-Length MUST be set to 128.
Xia, et al. Standards Track [Page 17]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Visited Home Network Prefix:
The home network prefix for the MN's IPv6 address configuration.
The Prefix field is up to 16 octets in length. Bits outside of
the Prefix-Length, if included, must be zero.
4.10. PMIP6-Home-Interface-ID
The PMIP6-Home-Interface-ID attribute (Type value 153) is of type
String and contains the MN's interface identifier. The selection of
the interface identifier SHOULD NOT allow the tracking of individual
MNs or users between PMIPv6 mobility sessions for privacy reasons.
This attribute is applicable in network systems and link
technologies, where the network explicitly delivers an interface
identifier to the MN during the link setup. Third Generation
Partnership Project (3GPP) and PPP link technologies are examples of
such.
This attribute MAY be sent by the LMA or the MAG to the HAAA in the
RADIUS Access-Request packet as a proposal. This attribute MAY be
sent by the HAAA to the LMA or to the MAG in an Access-Accept packet;
however, it MUST be present if the prior request already included
one.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Home Interface Identifier
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home Interface Identifier
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home Interface Identifier |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Home-Interface-ID 153.
Length:
= 10 octets.
Home Interface Identifier:
The 64-bit long interface identifier (8 octets).
4.11. PMIP6-Visited-Interface-ID
The PMIP6-Visited-Interface-ID attribute (Type value 154) is of type
String and contains the MN's interface identifier. The selection of
the interface identifier SHOULD NOT allow the tracking of individual
MNs or users between PMIPv6 mobility session for privacy reasons.
Xia, et al. Standards Track [Page 18]
^L
RFC 6572 RADIUS PMIPv6 June 2012
This attribute is applicable in network systems and link
technologies, where the network explicitly delivers an interface
identifier to the MN during the link setup. 3GPP and PPP link
technologies are examples of such.
This attribute MAY be sent by the LMA or the MAG to the VAAA in the
RADIUS Access-Request packet as a proposal. This attribute MAY be
sent by the VAAA to the LMA or to the MAG in an Access-Accept packet;
however, it MUST be present if the prior request already included
one.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Visited Interface Identifier
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited Interface Identifier
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited Interface Identifier |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Visited-Interface-ID 154.
Length:
= 10 octets.
Visited Interface Identifier:
The 64-bit long interface identifier (8 octets).
4.12. PMIP6-Home-IPv4-HoA
[RFC5844] specifies extensions to Proxy Mobile IPv6 protocol that
enable IPv4 home address mobility support to the MN. The PMIP6-Home-
IPv4-HoA attribute (Type value 155) is of type Address and contains
the IPv4 Home Address of the MN. The primary use of this attribute
is to deliver the assigned IPv4-HoA from HAAA to the MAG.
The PMIP6-Home-IPv4-HoA is also used on the LMA-to-HAAA interface.
If the LMA in the home network delegates the assignment of the
IPv4-HoA to the HAAA, the attribute MUST contain an address of all
zeroes (i.e., 0.0.0.0) in the Access-Request message. The attribute
MUST be included in by HAAA in the Access-Accept message if the
previous request included it, and it contains the IPv4-HoA assigned
to the MN.
Xia, et al. Standards Track [Page 19]
^L
RFC 6572 RADIUS PMIPv6 June 2012
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Reserved |Prefix-Len |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Home IPv4 HoA |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Home-IPv4-HoA 155.
Length:
= 8 octets
Reserved
The 10-bit field reserved for future use. The value MUST be
initialized to zero by sender and MUST be ignored by the
receiver.
Prefix-Len
The 6-bit unsigned integer indicating the prefix length of the
IPv4 HoA. If the Home IPv4 HoA contains an address of all zeroes
(i.e., '0.0.0.0'), then the Prefix-Len MUST be set to 32.
Home IPv4 HoA:
This field is of type Address and contains the IPv4 home
address of the MN in the home network.
4.13. PMIP6-Visited-IPv4-HoA
When both the MAG and the LMA are in the visited network, the PMIP6-
Visited-IPv4-HoA attribute (Type value 156) is of type Address and is
used to exchange information between the VAAA and the MAG on the
assignment of the IPv4 Home Address to the MN being present in the
visited network.
The PMIP6-Visited-IPv4-HoA is also used on the LMA-to-VAAA interface.
If the LMA delegates the assignment of the IPv4-HoA to the VAAA, the
attribute MUST contain an address of all zeroes (i.e., 0.0.0.0) in
the RADIUS Access-Request message. The Access-Accept message MUST
have the attribute present if the prior request to the VAAA already
included one.
The attribute SHOULD NOT be included if the use of the LMA in the
home network is authorized (the PMIP6-Home-IPv4-HoA and/or PMIP6-
Home-LMA-IPv4-Address attributes are already present). However, if
the VAAA local policy allows both home and visited LMA addresses to
be delivered to the MAG, then this attribute MAY also be included.
Xia, et al. Standards Track [Page 20]
^L
RFC 6572 RADIUS PMIPv6 June 2012
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Reserved |Prefix-Len |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Visited IPv4 HoA |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Visited-IPv4-HoA 156.
Length:
= 8 octets
Reserved:
The 10-bit field reserved for future use. The value MUST be
initialized to zero by the sender and MUST be ignored by the
receiver.
Prefix-Len:
6-bit unsigned integer indicating the prefix length of the IPv4
HoA. If the Visited IPv4 HoA contains an address of all zeroes
(i.e., '0.0.0.0'), then the Prefix-Len MUST be set to 32.
Visited IPv4 HoA:
This field is of type Address and contains the IPv4 home address
of the MN in the visited network.
4.14. PMIP6-Home-DHCP4-Server-Address
The PMIP6-Home-DHCP4-Server-Address (Type value 157) is of type
Address and contains the IPv4 address of the DHCPv4 server in the
home network. The particular DHCP server address is indicated to the
MAG that serves the concerning MN. The HAAA MAY assign a DHCP server
to the MAG in deployments where the MAG acts as a DHCP Relay, as
defined in [RFC5844].
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Home DHCPv4 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home DHCPv4 server address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Home-DHCP4-Server-Address 157.
Xia, et al. Standards Track [Page 21]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Length:
= 6 octets.
Home DHCPv4 server address:
This field is of type Address and contains a 4-octet IPv4 address
of the DHCP server.
4.15. PMIP6-Visited-DHCP4-Server-Address
The PMIP6-Visited-DHCP4-Server-Address attribute (Type value 158) is
of type Address and delivers the IPv4 address of the DHCPv4 server
from the visited network to the MAG. When both the MAG and the LMA
are in the visited network, the VAAA MAY assign a DHCPv4 server to
the MAG in deployments where the MAG acts as a DHCP Relay, as defined
in [RFC5844].
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Visited DHCPv4 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited DHCPv4 server address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Visited-DHCP4-Server-Address 158.
Length:
= 6 octets
Visited DHCPv4 server address:
This field is of type Address and contains a 4-octet IPv4 address
of the DHCPv4 server.
4.16. PMIP6-Home-DHCP6-Server-Address
The PMIP6-Home-DHCP6-Server-Address (Type value 159) is of type IPv6
address and contains the IPv6 address of the DHCPv6 server in the
home network indicated by the HAAA to the MAG that serves the MN.
The HAAA MAY assign a DHCPv6 server to the MAG in deployments where
the MAG acts as a DHCP Relay, as defined in [RFC5213].
Xia, et al. Standards Track [Page 22]
^L
RFC 6572 RADIUS PMIPv6 June 2012
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Home DHCPv6 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home DHCPv6 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home DHCPv6 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home DHCPv6 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Home DHCPv6 server address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Home-DHCP6-Server-Address 159.
Length:
= 18 octets
Home DHCPv6 server address:
This field is of type Address and contains 16-octet IPv6 address
of the DHCPv6 server.
4.17. PMIP6-Visited-DHCP6-Server-Address
The PMIP6-Visited-DHCP6-Server-Address attribute (Type value 160) is
of type IPv6 address and contains the IPv6 address of the DHCPv6
server in the visited network indicated by the VAAA to the MAG that
serves the MN. When both MAG and the LMA are located in the visited
network, the VAAA MAY assign a DHCPv6 server to the MAG in
deployments where the MAG acts as a DHCP Relay, as defined in
[RFC5213].
Xia, et al. Standards Track [Page 23]
^L
RFC 6572 RADIUS PMIPv6 June 2012
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Visited DHCPv6 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited DHCPv6 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited DHCPv6 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited DHCPv6 server address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Visited DHCPv6 server address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Visited-DHCP6-Server-Address 160.
Length:
= 18 octets
Visited DHCPv6 server address:
This field is of type Address and contains the 16-octet IPv6
address of the DHCPv6 server.
4.18. Calling-Station-Id
The Calling-Station-Id attribute (Type value 31) is of type String.
When used within PMIPv6 deployments, the attribute contains the MN
Link-Layer Identifier option of the MN as defined in [RFC5213],
Sections 2.2 and 8.6.
4.19. Chargeable-User-Identity
The Chargeable-User-Identity attribute, or CUI, (Type value 89) is a
unique, temporary handle used as means to, for example, correlate
authentication, accounting, and bill post-processing for a particular
chargeable subscriber. The CUI format and use follows guidelines
defined by [RFC4372].
In the scope of this document, the CUI attribute MAY be present in
the Access-Request. The CUI MAY also be present in the Access-
Accept. The CUI MUST be present in the Access-Accept if it was
present in the Access-Request. If the use of the Chargeable-User-
Identity attribute is supported, then the MAG and/or the LMA commits
to include the Chargeable-User-Identity attribute in all subsequent
RADIUS Accounting packets they send for the given user.
Xia, et al. Standards Track [Page 24]
^L
RFC 6572 RADIUS PMIPv6 June 2012
4.20. PMIP6-Home-IPv4-Gateway
[RFC5844] specifies extensions to Proxy Mobile IPv6 protocol that
enable IPv4 home address mobility support to the MN. The PMIP6-Home-
IPv4-Gateway attribute (Type value 161) is of type Address and
contains the default gateway IPv4 address for the MN. This address
is populated into the PMIPv6 IPv4 Default-Router Address Option
[RFC5844]. The address MUST belong to the subnet defined in the
PMIP6-Home-IPv4-HoA attribute.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Home IPv4 default gateway
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Home-IPv4-Gateway 161.
Length:
= 6 octets
Home IPv4 default gateway address:
This field is of type Address and contains a 4-octet IPv4 default
gateway address.
4.21. PMIP6-Visited-IPv4-Gateway
[RFC5844] specifies extensions to Proxy Mobile IPv6 protocol that
enable IPv4 home address mobility support to the MN. The PMIP6-
Visited-IPv4-Gateway attribute (Type value 162) is of type Address
and contains the default gateway IPv4 address for the MN. This
address is populated into the PMIPv6 IPv4 Default-Router Address
Option [RFC5844]. The address MUST belong to the subnet defined in
the PMIP6-Visited-IPv4-HoA attribute.
Xia, et al. Standards Track [Page 25]
^L
RFC 6572 RADIUS PMIPv6 June 2012
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Visited IPv4 default gateway
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type:
PMIP6-Visited-IPv4-Gateway 162.
Length:
= 6 octets
Visited IPv4 default gateway address:
This field is of type Address and contains a 4-octet IPv4 default
gateway address.
5. MAG to RADIUS AAA Interface
5.1. Interface Operations
The MAG to the AAA RADIUS server interface is used for retrieval of
the policy profile when an MN tries to attach, authenticate, and
authorize to a PMIPv6 domain. Depending on the policies and network
capabilities, the MAG may retrieve different sets of PMIPv6-session-
related parameters:
o Configuration attributes for home or visited network access
scenario, depending on the location and attachment point of the
MN,
o The IPv6 or IPv4 address of the designated LMA, depending on the
access network's actual IP topology,
o The IPv6 or IPv4 configuration parameters for the MN, depending on
the utilized IP configuration method and individual MN's service
Policy,
o The DHCP Relay support attributes (IPv4 or IPv6) in case such
functionality is supported in the network.
In addition to PMIPv6-specific attributes, other RADIUS attributes
are to be used on the MAG-to-AAA interface.
Xia, et al. Standards Track [Page 26]
^L
RFC 6572 RADIUS PMIPv6 June 2012
The User-Name attribute MUST be present in the Access-Request. It
MUST carry a correctly formed identifier that SHOULD correspond to an
MN identity unless the identity is being suppressed for policy
reasons, for example, when identity hiding is in effect. The MN
identity, if available, MUST be in Network Access Identifier (NAI)
[RFC4282] format. At minimum, the home realm of the MN MUST be
available at the MAG when the network access authentication takes
place. Otherwise, the MAG is not able to route RADIUS request
messages towards the correct HAAA. The MN identity used on the MAG-
to-HAAA interface and in the User-Name attribute MAY entirely be
related to the network access authentication and, therefore, not be
suitable to be used as the MN-Identifier mobility option value in the
subsequent PBU/PBA messages. In this case, the HAAA MUST provide the
MN-Identifier for PBU/PBA messages using the Mobile-Node-Identifier
attribute (see Section 4.2).
At least one of the NAS-IP-Address, NAS-IPv6-Address, or
NAS-Identifier attributes MUST be present in the Access-Request. The
Service-Type attribute SHOULD be set to value 1 (Login) and the NAS-
Port-Type attribute SHOULD be present in the Access-Request.
5.2. Table of Attributes
The following table provides a guide to attributes that may be found
in authentication and authorization RADIUS messages between the MAG
and the AAA server.
Xia, et al. Standards Track [Page 27]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Request Accept Reject Challenge # Attribute
1 0-1 0 0 1 User-Name
0-1 0 0 0 4 NAS-IP-Address
0-1 0-1 0 0 5 NAS-Port
0-1 0-1 0 0 6 Service-Type
0-1 0-1 0 0-1 24 State
0 0-1 0 0 25 Class
0 0-1 0 0-1 27 Session-Timeout
0-1 0 0 0 31 Calling-Station-Id
0-1 0 0 0 32 NAS-Identifier
0+ 0+ 0+ 0+ 33 Proxy-State
0-1 0 0 0 69 NAS-Port-Type
0+ 0+ 0+ 0+ 79 EAP-Message
1 1 1 1 80 Message-Authenticator
0-1 0-1 0 0 89 Chargeable-User-Identity
0-1 0 0 0 95 NAS-IPv6-Address
0-1 0-1 0 0 124 MIP6-Feature-Vector
0 1 0 0 145 Mobile-Node-Identifier
0-1 0-1 0 0 146 Service-Selection
0 0-1 0 0 147 PMIP6-Home-LMA-IPv6-Address
0-1 0-1 0 0 148 PMIP6-Visited-LMA-IPv6-Address
0 0-1 0 0 149 PMIP6-Home-LMA-IPv4-Address
0-1 0-1 0 0 150 PMIP6-Visited-LMA-IPv4-Address
0 0+ 0 0 151 PMIP6-Home-HN-Prefix
0 0+ 0 0 152 PMIP6-Visited-HN-Prefix
0 0-1 0 0 153 PMIP6-Home-Interface-ID
0 0-1 0 0 154 PMIP6-Visited-Interface-ID
0 0-1 0 0 155 PMIP6-Home-IPv4-HoA
0 0-1 0 0 156 PMIP6-Visited-IPv4-HoA
0 0-1 0 0 157 PMIP6-Home-DHCP4-Server-Address
0 0-1 0 0 158 PMIP6-Visited-DHCP4-Server-Address
0 0-1 0 0 159 PMIP6-Home-DHCP6-Server-Address
0 0-1 0 0 160 PMIP6-Visited-DHCP6-Server-Address
0 0-1 0 0 161 PMIP6-Home-IPv4-Gateway
0 0-1 0 0 162 PMIP6-Visited-IPv4-Gateway
6. LMA to RADIUS AAA Interface
6.1. Interface Operations
The LMA-to-HAAA interface may be used for multiple purposes. These
include the authorization of the incoming PBU, updating the LMA
address to the HAAA, delegating the assignment of the MN-HNP or the
IPv4-HoA to the HAAA, and accounting and PMIPv6 session management.
The primary purpose of this interface is to update the HAAA with the
Xia, et al. Standards Track [Page 28]
^L
RFC 6572 RADIUS PMIPv6 June 2012
LMA address information in case of dynamically assigned LMA and to
exchange the MN address assignment information between the LMA and
the HAAA.
Whenever the LMA sends an Access-Request message to the HAAA, the
User-Name attribute SHOULD contain the MN's identity. The LMA-
provided identity in the User-Name attribute is strongly RECOMMENDED
to be the same as the MN's identity information in the PBU MN-
Identifier mobility option. The identity SHOULD also be the same as
used on the MAG-to-HAAA interface; however, in case those identities
differ, the HAAA MUST have a mechanism of mapping the MN identity
used on the MAG-to-HAAA interface to the identity used on the LMA-to-
HAAA interface.
If the PBU contains the MN Link-Layer Identifier option, the Calling-
Station-Id attribute SHOULD be included in the request message
containing the received MN Link-Layer Identifier option.
Furthermore, if the PBU contains the Service Selection mobility
option [RFC5149], the Service-Selection attribute SHOULD be included
in the request message containing the received service identifier.
Both the MN Link-Layer Identifier option and the service selection
can be used to provide more information for the PBU authorization
step in the HAAA.
The Service-Type attribute MUST be set to the value 17 (Authorize
Only). If the HAAA is not able to authorize the subscriber's
mobility service session, then the Access-Reject message to the LMA
MAY contain the Reply-Message attribute describing the reason for
rejecting the authorization. A failed authorization obviously
results in a rejection of the PBU, and a PBA with an appropriate
error Status Value MUST be sent back to the MAG.
The authorization step MUST be performed at least for the initial PBU
session up to a mobility session, when the LMA-to-HAAA interface is
deployed. For the subsequent re-registration and handover of PBUs,
the authorization step MAY be repeated (in this case, the LMA-to-HAAA
interface should also maintain an authorization session state).
In case of a dynamic LMA discovery and assignment [RFC6097], the HAAA
and the remote policy store may need to be updated with the selected
LMA address information. The update can be done during the PBU
authorization step using the LMA-to-HAAA interface. This
specification uses the PMIP6-*-LMA-*-Address attribute for carrying
the LMA's address information from the LMA to the HAAA. The LMA
address information in the request message MUST contain the IP
address of the LMA, the Fully Qualified Domain Name (FQDN) uniquely
Xia, et al. Standards Track [Page 29]
^L
RFC 6572 RADIUS PMIPv6 June 2012
identifying the LMA, or both. The LMA address information refers to
the PMIPv6 part of the LMA, not necessarily the LMA part interfacing
with the AAA infrastructure.
The LMA and the HAAA use the PMIP6-Home-HN-Prefix/
PMIP6-Visited-HN-Prefix attributes to exchange the MN-HNP when
appropriate. Similarly, the LMA and the HAAA use the PMIP6-Home-
IPv4-HoA/PMIP6-Visited-IPv4-HoA attributes to exchange the IPv4-MN-
HoA when appropriate. The MN address information exchange is again
done during the PBU authorization step. The HAAA MAY also use the
LMA-provided MN address information as a part of the information used
to authorize the PBU.
Which entity is actually responsible for the address management is
deployment specific within the PMIPv6 Domain and MUST be pre-agreed
on per deployment basis. When the LMA is responsible for the address
management, the PMIP6-*-HN-Prefix/PMIP6-*-IPv4-HoA attributes are
used to inform the HAAA and the remote policy store of the MN-HNP/
IPv4-MN-HoA assigned to the MN. It is also possible that the LMA
delegates the address management to the HAAA. In this case, the
MN-HNP/IPv4-MN-HoA are set to undefined addresses in the Access-
Request message sent from the LMA to the HAAA. The LMA expects to
receive the HAAA assigned HNP/IPv4-MN-HoA in the corresponding
Access-Accept message.
6.2. Table of Attributes
The following table provides a guide to which attributes may be found
in authorization process between LMA and the AAA.
Xia, et al. Standards Track [Page 30]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Request Accept Reject Challenge # Attribute
1 0-1 0 0 1 User-Name
0-1 0-1 0 0 4 NAS-IP-Address
0-1 0-1 0 0 5 NAS-Port
1 0-1 0 0 6 Service-Type
0 0-1 0 0 25 Class
0 0-1 0 0-1 27 Session-Timeout
0-1 0 0 0 31 Calling-Station-Id
1 0 0 0 32 NAS-Identifier
0+ 0+ 0+ 0+ 33 Proxy-State
1 0 0 0 69 NAS-Port-Type
1 1 1 1 80 Message-Authenticator
0-1 0-1 0 0 89 Chargeable-User-Identity
0-1 0-1 0 0 95 NAS-IPv6-Address
0-1 0-1 0 0 124 MIP6-Feature-Vector
1 0 0 0 145 Mobile-Node-Identifier
0-1 0-1 0 0 146 Service-Selection
0-1 0 0 0 147 PMIP6-Home-LMA-IPv6-Address
0-1 0 0 0 148 PMIP6-Visited-LMA-IPv6-Address
0-1 0 0 0 149 PMIP6-Home-LMA-IPv4-Address
0-1 0 0 0 150 PMIP6-Visited-LMA-IPv4-Address
0+ 0+ 0 0 151 PMIP6-Home-HN-Prefix
0+ 0+ 0 0 152 PMIP6-Visited-HN-Prefix
0-1 0-1 0 0 153 PMIP6-Home-Interface-ID
0-1 0-1 0 0 154 PMIP6-Visited-Interface-ID
0-1 0-1 0 0 155 PMIP6-Home-IPv4-HoA
0-1 0-1 0 0 156 PMIP6-Visited-IPv4-HoA
0-1 0-1 0 0 161 PMIP6-Home-IPv4-Gateway
0-1 0-1 0 0 162 PMIP6-Visited-IPv4-Gateway
7. Accounting
Radius-based interfaces at the MAG and LMA with the AAA server
enables the metering of traffic associated with the MN, commonly
called "accounting". If accounting is turned on in the mobile node's
policy profile, the local routing SHOULD NOT be enabled [RFC5213].
7.1. Accounting at LMA
The accounting at the LMA to AAA server interface is based on
[RFC2865] and [RFC2866]. This interface MUST support the transfer of
accounting records needed for service control and charging. These
records should include (but may not be limited to) the following:
time of binding cache entry creation and deletion, number of the
octets sent and received by the MN over the bi-directional tunnel,
etc.
Xia, et al. Standards Track [Page 31]
^L
RFC 6572 RADIUS PMIPv6 June 2012
7.2. Accounting at MAG
The accounting at the MAG to AAA server interface is based on
[RFC2865] and [RFC2866]. The interface MUST also support the
transfer of accounting records that should include the following:
time of binding cache entry creation and deletion, number of the
octets sent and received by the MN over the bi-directional tunnel,
etc.
If there is data traffic between a visiting MN and a correspondent
node that is locally attached to an access link connected to the same
MAG, the mobile access gateway MAY optimize on the delivery efforts
by locally routing the packets instead of using reverse tunneling to
the mobile node's LMA. In this case, the local data traffic too MUST
be reported to AAA Accounting servers by means of RADIUS protocol.
7.3. Table of Attributes
The following table provides a list of attributes that may be
included in the RADIUS Accounting messages. These attributes are to
complement the set of accounting attributes already required by
[RFC2866] and [RFC2869].
Accounting
Request # Attribute
0-1 145 Mobile-Node-Identifier
0-1 146 Service-Selection
0-1 147 PMIP6-Home-LMA-IPv6-Address
0-1 148 PMIP6-Visited-LMA-IPv6-Address
0-1 149 PMIP6-Home-LMA-IPv4-Address
0-1 150 PMIP6-Visited-LMA-IPv4-Address
0+ 151 PMIP6-Home-HN-Prefix
0+ 152 PMIP6-Visited-HN-Prefix
0-1 155 PMIP6-Home-IPv4-HoA
0-1 156 PMIP6-Visited-IPv4-HoA
0-1 31 Calling-Station-Id
0-1 80 Message-Authenticator
0-1 89 Chargeable-User-Identity
0-1 124 MIP6-Feature-Vector
8. Security Considerations
The RADIUS messages may be transported between the MAG and/or the LMA
to the RADIUS server via one or more AAA brokers or RADIUS proxies.
In this case, the communication between the LMA and the RADIUS AAA
server relies on the security properties of the intermediate AAA
brokers and RADIUS proxies.
Xia, et al. Standards Track [Page 32]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Regarding the privacy threats associated with sending MN-specific
information between the MAG and AAA server and between the LMA and
AAA server, considerations of the RADIUS Base protocol [RFC2865],
RADIUS Accounting [RFC2866], and the RADIUS EAP application [RFC3579]
are applicable to this document. The MAG, LMA, and AAA server SHOULD
avoid including attributes containing personally identifying
information such as a MN's Interface ID, link-layer address, or NAI,
except as needed and SHOULD pay special attention if identity hiding
is desired.
9. IANA Consideration
9.1. Attribute Type Codes
This specification defines the following new RADIUS attribute type
values:
Mobile-Node-Identifier 145
Service-Selection 146
PMIP6-Home-LMA-IPv6-Address 147
PMIP6-Visited-LMA-IPv6-Address 148
PMIP6-Home-LMA-IPv4-Address 149
PMIP6-Visited-LMA-IPv4-Address 150
PMIP6-Home-HN-Prefix 151
PMIP6-Visited-HN-Prefix 152
PMIP6-Home-Interface-ID 153
PMIP6-Visited-Interface-ID 154
PMIP6-Home-IPv4-HoA 155
PMIP6-Visited-IPv4-HoA 156
PMIP6-Home-DHCP4-Server-Address 157
PMIP6-Visited-DHCP4-Server-Address 158
PMIP6-Home-DHCP6-Server-Address 159
PMIP6-Visited-DHCP6-Server-Address 160
PMIP6-Home-IPv4-Gateway 161
PMIP6-Visited-IPv4-Gateway 162
9.2. Namespaces
This specification defines new values to the Mobility Capability
registry (see [RFC5447]) for use with the MIP6-Feature-Vector AVP:
Token | Value
----------------------------------+--------------------
IP4_TRANSPORT_SUPPORTED | 0x0000800000000000
IP4_HOA_ONLY_SUPPORTED | 0x0001000000000000
Xia, et al. Standards Track [Page 33]
^L
RFC 6572 RADIUS PMIPv6 June 2012
10. Acknowledgements
First of all, the authors would like to acknowledge the
standardization work and people of the WiMAX Forum that have set the
foundation for this document.
The authors would like to thank Basavaraj Patil, Glen Zorn, Avi Lior,
Alan DeKok, Dhananjay Patki and Pete McCann for reviewing the
document and providing valuable input. The authors also thank Elwyn
Davies, Pete Resnick, Bernard Aboba, Jari Arkko, and Stephen Farrell
for their reviews on the document during the IESG process.
The authors would also like to thank the authors of [RFC5779] as this
document reuses some procedural ideas of that specification.
11. References
11.1. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
[RFC2865] Rigney, C., Willens, S., Rubens, A., and W. Simpson,
"Remote Authentication Dial In User Service (RADIUS)",
RFC 2865, June 2000.
[RFC5213] Gundavelli, S., Leung, K., Devarapalli, V., Chowdhury, K.,
and B. Patil, "Proxy Mobile IPv6", RFC 5213, August 2008.
[RFC4282] Aboba, B., Beadles, M., Arkko, J., and P. Eronen, "The
Network Access Identifier", RFC 4282, December 2005.
[RFC5447] Korhonen, J., Bournelle, J., Tschofenig, H., Perkins, C.,
and K. Chowdhury, "Diameter Mobile IPv6: Support for
Network Access Server to Diameter Server Interaction",
RFC 5447, February 2009.
[RFC3588] Calhoun, P., Loughney, J., Guttman, E., Zorn, G., and J.
Arkko, "Diameter Base Protocol", RFC 3588, September 2003.
[RFC5844] Wakikawa, R. and S. Gundavelli, "IPv4 Support for Proxy
Mobile IPv6", RFC 5844, May 2010.
[RFC5779] Korhonen, J., Bournelle, J., Chowdhury, K., Muhanna, A.,
and U. Meyer, "Diameter Proxy Mobile IPv6: Mobile Access
Gateway and Local Mobility Anchor Interaction with
Diameter Server", RFC 5779, February 2010.
Xia, et al. Standards Track [Page 34]
^L
RFC 6572 RADIUS PMIPv6 June 2012
[RFC4372] Adrangi, F., Lior, A., Korhonen, J., and J. Loughney,
"Chargeable User Identity", RFC 4372, January 2006.
11.2. Informative References
[RFC3579] Aboba, B. and P. Calhoun, "RADIUS (Remote Authentication
Dial In User Service) Support For Extensible
Authentication Protocol (EAP)", RFC 3579, September 2003.
[RFC2866] Rigney, C., "RADIUS Accounting", RFC 2866, June 2000.
[RFC2869] Rigney, C., Willats, W., and P. Calhoun, "RADIUS
Extensions", RFC 2869, June 2000.
[RFC3748] Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H.
Levkowetz, "Extensible Authentication Protocol (EAP)",
RFC 3748, June 2004.
[RFC5149] Korhonen, J., Nilsson, U., and V. Devarapalli, "Service
Selection for Mobile IPv6", RFC 5149, February 2008.
[RFC6097] Korhonen, J. and V. Devarapalli, "Local Mobility Anchor
(LMA) Discovery for Proxy Mobile IPv6", RFC 6097,
February 2011.
[UNF] Davis, M., Ed. and K. Whistler, Ed., "Unicode Standard
Annex #15: Unicode Normalization Forms", January 2012,
<http://www.unicode.org/reports/tr15/>.
Xia, et al. Standards Track [Page 35]
^L
RFC 6572 RADIUS PMIPv6 June 2012
Authors' Addresses
Frank Xia
Huawei USA
1700 Alma Dr., Suite 500
Plano, TX 75075
Phone: +1 972-509-5599
EMail: xiayangsong@huawei.com
Behcet Sarikaya
Huawei USA
1700 Alma Dr., Suite 500
Plano, TX 75075
Phone: +1 972-509-5599
EMail: sarikaya@ieee.org
Jouni Korhonen (editor)
Nokia Siemens Networks
Linnoitustie 6
Espoo FI-02600
Finland
EMail: jouni.nospam@gmail.com
Sri Gundavelli
Cisco
170 West Tasman Drive
San Jose, CA 95134
EMail: sgundave@cisco.com
Damjan Damic
Siemens
Heinzelova 70a
Zagreb 10000
Croatia
EMail: damjan.damic@siemens.com
Xia, et al. Standards Track [Page 36]
^L
|