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
|
<pre>Network Working Group G. Sadasivan
Request for Comments: 5470 Rohati Systems
Category: Informational N. Brownlee
CAIDA | The University of Auckland
B. Claise
Cisco Systems, Inc.
J. Quittek
NEC
March 2009
<span class="h1">Architecture for IP Flow Information Export</span>
Status of This Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (c) 2009 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 in effect on the date of
publication of this document (<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>).
Please review these documents carefully, as they describe your rights
and restrictions with respect to this document.
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
Abstract
This memo defines the IP Flow Information eXport (IPFIX) architecture
for the selective monitoring of IP Flows, and for the export of
measured IP Flow information from an IPFIX Device to a Collector.
<span class="grey">Sadasivan, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Document Scope .............................................<a href="#page-3">3</a>
<a href="#section-1.2">1.2</a>. IPFIX Documents Overview ...................................<a href="#page-3">3</a>
<a href="#section-2">2</a>. Terminology .....................................................<a href="#page-4">4</a>
<a href="#section-3">3</a>. Examples of Flows ...............................................<a href="#page-8">8</a>
<a href="#section-4">4</a>. IPFIX Reference Model ..........................................<a href="#page-10">10</a>
<a href="#section-5">5</a>. IPFIX Functional and Logical Blocks ............................<a href="#page-12">12</a>
<a href="#section-5.1">5.1</a>. Metering Process ..........................................<a href="#page-12">12</a>
<a href="#section-5.1.1">5.1.1</a>. Flow Expiration ....................................<a href="#page-12">12</a>
<a href="#section-5.1.2">5.1.2</a>. Flow Export ........................................<a href="#page-13">13</a>
<a href="#section-5.2">5.2</a>. Observation Point .........................................<a href="#page-13">13</a>
<a href="#section-5.3">5.3</a>. Selection Criteria for Packets ............................<a href="#page-13">13</a>
<a href="#section-5.3.1">5.3.1</a>. Sampling Functions, Si .............................<a href="#page-14">14</a>
<a href="#section-5.3.2">5.3.2</a>. Filter Functions, Fi ...............................<a href="#page-15">15</a>
<a href="#section-5.4">5.4</a>. Observation Domain ........................................<a href="#page-15">15</a>
<a href="#section-5.5">5.5</a>. Exporting Process .........................................<a href="#page-15">15</a>
<a href="#section-5.6">5.6</a>. Collecting Process ........................................<a href="#page-16">16</a>
<a href="#section-5.7">5.7</a>. Summary ...................................................<a href="#page-17">17</a>
<a href="#section-6">6</a>. Overview of the IPFIX Protocol .................................<a href="#page-18">18</a>
<a href="#section-6.1">6.1</a>. Information Model Overview ................................<a href="#page-19">19</a>
<a href="#section-6.2">6.2</a>. Flow Records ..............................................<a href="#page-19">19</a>
<a href="#section-6.3">6.3</a>. Control Information .......................................<a href="#page-20">20</a>
<a href="#section-6.4">6.4</a>. Reporting Responsibilities ................................<a href="#page-21">21</a>
<a href="#section-7">7</a>. IPFIX Protocol Details .........................................<a href="#page-21">21</a>
<a href="#section-7.1">7.1</a>. The IPFIX Basis Protocol ..................................<a href="#page-21">21</a>
<a href="#section-7.2">7.2</a>. IPFIX Protocol on the Collecting Process ..................<a href="#page-22">22</a>
<a href="#section-7.3">7.3</a>. Support for Applications ..................................<a href="#page-22">22</a>
<a href="#section-8">8</a>. Export Models ..................................................<a href="#page-23">23</a>
<a href="#section-8.1">8.1</a>. Export with Reliable Control Connection ...................<a href="#page-23">23</a>
<a href="#section-8.2">8.2</a>. Collector Failure Detection and Recovery ..................<a href="#page-23">23</a>
<a href="#section-8.3">8.3</a>. Collector Redundancy ......................................<a href="#page-24">24</a>
<a href="#section-9">9</a>. IPFIX Flow Collection in Special Situations ....................<a href="#page-24">24</a>
<a href="#section-10">10</a>. Security Considerations .......................................<a href="#page-25">25</a>
<a href="#section-10.1">10.1</a>. Data Security ............................................<a href="#page-25">25</a>
<a href="#section-10.1.1">10.1.1</a>. Host-Based Security ...............................<a href="#page-26">26</a>
<a href="#section-10.1.2">10.1.2</a>. Authentication-Only ...............................<a href="#page-26">26</a>
<a href="#section-10.1.3">10.1.3</a>. Encryption ........................................<a href="#page-26">26</a>
<a href="#section-10.2">10.2</a>. IPFIX End-Point Authentication ...........................<a href="#page-27">27</a>
<a href="#section-10.3">10.3</a>. IPFIX Overload ...........................................<a href="#page-27">27</a>
<a href="#section-10.3.1">10.3.1</a>. Denial-of-Service (DoS) Attack Prevention .........<a href="#page-27">27</a>
<a href="#section-11">11</a>. IANA Considerations ...........................................<a href="#page-28">28</a>
<a href="#section-11.1">11.1</a>. Numbers Used in the Protocol .............................<a href="#page-28">28</a>
<a href="#section-11.2">11.2</a>. Numbers Used in the Information Model ....................<a href="#page-29">29</a>
<a href="#section-12">12</a>. Acknowledgements ..............................................<a href="#page-29">29</a>
<span class="grey">Sadasivan, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<a href="#section-13">13</a>. References ....................................................<a href="#page-30">30</a>
<a href="#section-13.1">13.1</a>. Normative References .....................................<a href="#page-30">30</a>
<a href="#section-13.2">13.2</a>. Informative References ...................................<a href="#page-30">30</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
There are several applications, e.g., usage-based accounting, traffic
profiling, traffic engineering, attack/intrusion detection, quality-
of-service (QoS) monitoring, that require Flow-based IP traffic
measurements. It is therefore important to have a standard way of
exporting information related to IP Flows. This document defines an
architecture for IP traffic Flow monitoring, measuring, and
exporting. It provides a high-level description of an IPFIX Device's
key components and their functions.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Document Scope</span>
This document defines the architecture for IPFIX. Its main
objectives are to:
o Describe the key IPFIX architectural components, consisting of (at
least) IPFIX Devices and Collectors communicating using the IPFIX
protocol.
o Define the IPFIX architectural requirements, e.g., recovery,
security, etc.
o Describe the characteristics of the IPFIX protocol.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. IPFIX Documents Overview</span>
The IPFIX protocol provides network administrators with access to IP
Flow information. This document specifies the architecture for the
export of measured IP Flow information from an IPFIX Exporting
Process to a Collecting Process, per the requirements defined in <a href="./rfc3917">RFC</a>
<a href="./rfc3917">3917</a> [<a href="#ref-1" title=""Requirements for IP Flow Information Export (IPFIX)"">1</a>]. The IPFIX protocol document, <a href="./rfc5101">RFC 5101</a> [<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>], specifies how
IPFIX data records and templates are carried via a congestion-aware
transport protocol, from IPFIX Exporting Process to IPFIX Collecting
Process. IPFIX has a formal description of IPFIX information
elements (fields), their name, type, and additional semantic
information, as specified in <a href="./rfc5102">RFC 5102</a> [<a href="#ref-2" title=""Information for Model IP Flow Information Export"">2</a>]. Finally, <a href="./rfc5472">RFC 5472</a> [<a href="#ref-4" title=""IPFIX Applicability"">4</a>]
describes what type of applications can use the IPFIX protocol and
how they can use the information provided. Furthermore, it shows how
the IPFIX framework relates to other architectures and frameworks.
Note that the IPFIX system does not provide for remote configuration
of an IPFIX device. Instead, implementors must provide an effective
way to configure their IPFIX devices.
<span class="grey">Sadasivan, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
The definitions of basic IPFIX terms such as IP Traffic Flow,
Exporting Process, Collecting Process, Observation Point, etc., are
semantically identical with those found in the IPFIX requirements
document, <a href="./rfc3917">RFC 3917</a> [<a href="#ref-1" title=""Requirements for IP Flow Information Export (IPFIX)"">1</a>]. Some of the terms have been expanded for
more clarity when defining the protocol. Additional definitions
required for the architecture have also been defined. For terms that
are defined here and in <a href="./rfc5101">RFC 5101</a> [<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>], the definitions are equivalent
in both documents.
* Observation Point
An Observation Point is a location in the network where IP packets
can be observed. Examples include: a line to which a probe is
attached, a shared medium, such as an Ethernet-based LAN, a single
port of a router, or a set of interfaces (physical or logical) of
a router.
Note that every Observation Point is associated with an
Observation Domain (defined below), and that one Observation Point
may be a superset of several other Observation Points. For
example, one Observation Point can be an entire line card. That
would be the superset of the individual Observation Points at the
line card's interfaces.
* Observation Domain
An Observation Domain is the largest set of Observation Points for
which Flow information can be aggregated by a Metering Process.
For example, a router line card may be an Observation Domain if it
is composed of several interfaces, each of which is an Observation
Point. In the IPFIX Message it generates, the Observation Domain
includes its Observation Domain ID, which is unique per Exporting
Process. That way, the Collecting Process can identify the
specific Observation Domain from the Exporter that sends the IPFIX
Messages. Every Observation Point is associated with an
Observation Domain. It is recommended that Observation Domain IDs
also be unique per IPFIX Device.
* IP Traffic Flow or Flow
There are several definitions of the term 'flow' being used by the
Internet community. Within the context of IPFIX we use the
following definition:
<span class="grey">Sadasivan, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
A Flow is defined as a set of IP packets passing an Observation
Point in the network during a certain time interval. All packets
belonging to a particular Flow have a set of common properties.
Each property is defined as the result of applying a function to
the values of:
1. one or more packet header fields (e.g., destination IP
address), transport header fields (e.g., destination port
number), or application header fields (e.g., RTP header fields
[<a href="#ref-5" title=""RTP: A Transport Protocol for Real-Time Applications"">5</a>]).
2. one or more characteristics of the packet itself (e.g., number
of MPLS labels)
3. one or more fields derived from packet treatment (e.g., next
hop IP address, output interface)
A packet is defined as belonging to a Flow if it completely
satisfies all the defined properties of the Flow.
This definition covers the range from a Flow containing all
packets observed at a network interface to a Flow consisting of
just a single packet between two applications. It includes
packets selected by a sampling mechanism.
* Flow Key
Each of the fields that:
1. belongs to the packet header (e.g., destination IP address),
2. is a property of the packet itself (e.g., packet length),
3. is derived from packet treatment (e.g., Autonomous System (AS)
number), and
4. is used to define a Flow
is termed a Flow Key.
* Flow Record
A Flow Record contains information about a specific Flow that was
observed at an Observation Point. A Flow Record contains measured
properties of the Flow (e.g., the total number of bytes for all
the Flow's packets) and usually characteristic properties of the
Flow (e.g., source IP address).
<span class="grey">Sadasivan, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
* Metering Process
The Metering Process generates Flow Records. Inputs to the
process are packet headers and characteristics observed at an
Observation Point, and packet treatment at the Observation Point
(for example, the selected output interface).
The Metering Process consists of a set of functions that includes
packet header capturing, timestamping, sampling, classifying, and
maintaining Flow Records.
The maintenance of Flow Records may include creating new records,
updating existing ones, computing Flow statistics, deriving
further Flow properties, detecting Flow expiration, passing Flow
Records to the Exporting Process, and deleting Flow Records.
* Exporting Process
The Exporting Process sends Flow Records to one or more Collecting
Processes. The Flow Records are generated by one or more Metering
Processes.
* Exporter
A device that hosts one or more Exporting Processes is termed an
Exporter.
* IPFIX Device
An IPFIX Device hosts at least one Exporting Process. It may host
further Exporting Processes and arbitrary numbers of Observation
Points and Metering Processes.
* Collecting Process
A Collecting Process receives Flow Records from one or more
Exporting Processes. The Collecting Process might process or
store received Flow Records, but such actions are out of scope for
this document.
* Collector
A device that hosts one or more Collecting Processes is termed a
Collector.
<span class="grey">Sadasivan, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
* Template
A Template is an ordered sequence of <type, length> pairs used to
completely specify the structure and semantics of a particular set
of information that needs to be communicated from an IPFIX Device
to a Collector. Each Template is uniquely identifiable by means
of a Template ID.
* Control Information, Data Stream
The information that needs to be exported from the IPFIX Device
can be classified into the following categories:
Control Information
This includes the Flow definition, selection criteria for
packets within the Flow sent by the Exporting Process, and
templates describing the data to be exported. Control
Information carries all the information needed for the end-
points to understand the IPFIX protocol, and specifically for
the Collector to understand and interpret the data sent by the
sending Exporter.
Data Stream
This includes Flow Records carrying the field values for the
various observed Flows at each of the Observation Points.
* IPFIX Message
An IPFIX Message is a message originating at the Exporting Process
that carries the IPFIX records of this Exporting Process and whose
destination is a Collecting Process. An IPFIX Message is
encapsulated at the transport layer.
* Information Element
An Information Element is a protocol and encoding-independent
description of an attribute that may appear in an IPFIX Record.
The IPFIX information model, <a href="./rfc5102">RFC 5102</a> [<a href="#ref-2" title=""Information for Model IP Flow Information Export"">2</a>], defines the base set of
Information Elements for IPFIX. The type associated with an
Information Element indicates constraints on what it may contain
and also determines the valid encoding mechanisms for use in
IPFIX.
<span class="grey">Sadasivan, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Examples of Flows</span>
Some examples of Flows are listed below. In the IPv4 examples, we
use interface addresses in three different 26-bit (/26) subnets. In
the IPv6 examples, we use 'mac addr-nn' in the low-order 64 bits to
indicate the IEEE MAC (Media Access Control) address of host
interface nn.
Example 1: Flow Keys define the different fields by which Flows are
distinguished. The different combination of their field values
creates unique Flows. If {source IP address, destination IP address,
DSCP} are Flow Keys, then all of these are different Flows:
1. {192.0.2.1, 192.0.2.65, 4}
2. {192.0.2.23, 192.0.2.67, 4}
3. {192.0.2.23, 192.0.2.67, 2}
4. {192.0.2.129, 192.0.2.67, 4}
5. {2001:DB8::0:mac-addr-01, 2001:DB8::1:mac-addr-11, 4}
6. {2001:DB8::0:mac-addr-02, 2001:DB8::1:mac-addr-13, 4}
7. {2001:DB8::0:mac-addr-02, 2001:DB8::1:mac-addr-13, 2}
8. {2001:DB8::2:mac-addr-21, 2001:DB8::1:mac-addr-13, 4}
Example 2: A mask function can be applied to all the packets that
pass through an Observation Point, in order to aggregate some values.
This could be done by defining the set of Flow Keys as {source IP
address, destination IP address, DSCP} as in Example 1 above, and
applying functions that mask out the source and destination IP
addresses (least significant 6 bits for IPv4, 64 bits for IPv6). The
eight Flows from Example 1 would now be aggregated into six Flows by
merging the Flows 1+2 and 5+6 into single Flows:
1. {192.0.2.0/26, 192.0.2.64/26, 4}
2. {192.0.2.0/26, 192.0.2.64/26, 2}
3. {192.0.2.128/26, 192.0.2.64/26, 4}
4. {2001:DB8::0/64, 2001:DB8::1/64, 4}
5. {2001:DB8::0/64, 2001:DB8::1/64, 2}
6. {2001:DB8::2/64, 2001:DB8::1/64, 4}
Example 3: A filter defined by some Flow Key values can be applied on
all packets that pass the Observation Point, in order to select only
certain Flows. The filter is defined by choosing fixed values for
specific Keys from the packet.
All the packets that go from a customer network 192.0.2.0/26 to
another customer network 192.0.2.64/26 with DSCP value of 4 define a
Flow. All other combinations don't define a Flow and are not taken
<span class="grey">Sadasivan, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
into account. The three Flows from Example 2 would now be reduced to
one Flow by filtering out Flows 2 and 3, leaving only Flow 1,
{192.0.2.0/26, 192.0.2.64/26, 4}.
Similarly, for the IPv6 packets in the examples above, one could
filter out Flows 5 and 6 to leave Flow 4.
The above examples can be thought of as a function F() taking as
input {source IP address, destination IP address, DSCP}. The
function selects only the packets that satisfy all three of the
following conditions:
1. Mask out the least significant 6 bits of source IP address, match
against 192.0.2.0.
2. Mask out the least significant 6 bits of destination IP address,
match against 192.0.2.64.
3. Only accept DSCP value equal to 4.
Depending on the values of {source IP address, destination IP
address, DSCP} of the different observed packets, the Metering
Process function F() would choose/filter/aggregate different sets of
packets, which would create different Flows. For example, for
various combinations of values of {source IP address, destination IP
address, DSCP}, F(source IP address, destination IP address, DSCP)
would result in the definition of one or more Flows.
<span class="grey">Sadasivan, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. IPFIX Reference Model</span>
The figure below shows the reference model for IPFIX. This figure
covers the various possible scenarios that can exist in an IPFIX
system.
+----------------+ +----------------+
|[*Application 1]| ... |[*Application n]|
+--------+-------+ +-------+--------+
^ ^
| |
+ = = = = -+- = = = = +
^
|
+------------------------+ +-------+------------------+
|IPFIX Exporter | | Collector(1) |
|[Exporting Process(es)] |<---------->| [Collecting Process(es)] |
+------------------------+ +--------------------------+
.... ....
+------------------------+ +---------------------------+
|IPFIX Device(i) | | Collector(j) |
|[Observation Point(s)] |<--------->| [Collecting Process(es)] |
|[Metering Process(es)] | +---->| [*Application(s)] |
|[Exporting Process(es)] | | +---------------------------+
+------------------------+ .
.... . ....
+------------------------+ | +--------------------------+
|IPFIX Device(m) | | | Collector(n) |
|[Observation Point(s)] |<----+---->| [Collecting Process(es)] |
|[Metering Process(es)] | | [*Application(s)] |
|[Exporting Process(es)] | +--------------------------+
+------------------------+
The various functional components are indicated within brackets [].
The functional components within [*] are not part of the IPFIX
architecture. The interfaces shown by "<----->" are defined by the
IPFIX architecture, but those shown by "<= = = =>" are not.
Figure 1: IPFIX Reference Model
<span class="grey">Sadasivan, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
The figure below shows a typical IPFIX Device where the IPFIX
components are shown in rectangular boxes.
+--------------------------------------------------+
| IPFIX Device |
| +-----+ |
| +------- ... ------------+---------> | |
| | | | | |
| +----+----+ +----+----+ | | |
| |Metering | |Metering | | E | |
| |Process 1| |Process N| | x | |
| +---------+ +---------+ | p | |
| ^ ^ | o | |
| +------+--------+ +---------+------+ | r | |
| | Obsv Domain 1 | | Obsv Domain N | | t | |
| |+-----+-------+| |+-------+------+| | i | |
| ||Obsv Pt 1..j || ... ||Obsv Pt j+1..M|| | n | |
| |+-------------+| |+--------------+| | g | | Export
Packets | +------^--------+ +---------^------+ | | | packets
--->----+--------+---------- ... ---------+ | | | to
In | | +--------->
| . . . . . | | |Collector
| | | |
| +------ ... -------------+---------> | |
| | | | | |
| +----+----+ +----+----+ | P | |
| |Metering | |Metering | | r | |
| |Process 1| |Process N| | o | |
| +---------+ +---------+ | c | |
| ^ ^ | e | |
| +------+--------+ +---------+------+ | s | |
| | Obsv Domain 1 | | Obsv Domain N | | s | |
| |+-----+-------+| |+-------+------+| | | |
| ||Obsv Pt 1..k || ... ||Obsv Pt k+1..M|| | | |
| |+-------------+| |+--------------+| | | |
Packets | +------^--------+ +---------^------+ +-----+ |
--->----+--------+---------- ... ---------+ |
In | |
+--------------------------------------------------+
Figure 2: IPFIX Device
<span class="grey">Sadasivan, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. IPFIX Functional and Logical Blocks</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Metering Process</span>
Every Observation Point in an IPFIX Device, participating in Flow
measurements, must be associated with at least one Metering Process.
Every packet coming into an Observation Point goes into each of the
Metering Processes associated with the Observation Point. Broadly,
each Metering Process observes the packets that pass an Observation
Point, does timestamping, and classifies the packets into Flow(s)
based on the selection criteria.
The Metering Process is a functional block that manages all the Flows
generated from an Observation Domain. The typical functions of a
Metering Process may include:
o Maintaining database(s) of all the Flow Records from an
Observation Domain. This includes creating new Flow Records,
updating existing ones, computing Flow Records statistics,
deriving further Flow properties, and adding non-Flow-specific
information based on the packet treatment (in some cases, fields
like AS numbers, router state, etc.)
o Maintaining statistics about the Metering Process itself, such as
Flow Records generated, packets observed, etc.
<span class="h4"><a class="selflink" id="section-5.1.1" href="#section-5.1.1">5.1.1</a>. Flow Expiration</span>
A Flow is considered to have expired under the following conditions:
1. If no packets belonging to the Flow have been observed for a
certain period of time. This time period should be configurable
at the Metering Process, with a minimum value of 0 seconds for
immediate expiration. Note that a zero timeout would report a
Flow as a sequence of single-packet Flows.
2. If the IPFIX Device experiences resource constraints, a Flow may
be prematurely expired (e.g., lack of memory to store Flow
Records).
3. For long-running Flows, the Metering Process should expire the
Flow on a regular basis or based on some expiration policy. This
periodicity or expiration policy should be configurable at the
Metering Process. When a long-running Flow is expired, its Flow
Record may still be maintained by the Metering Process so that
the Metering Process does not need to create a new Flow Record
for further observed packets of the same Flow.
<span class="grey">Sadasivan, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h4"><a class="selflink" id="section-5.1.2" href="#section-5.1.2">5.1.2</a>. Flow Export</span>
The Exporting Process decides when and whether to export an expired
Flow. A Flow can be exported because it expired for any of the
reasons mentioned in <a href="#section-5.1.1">Section 5.1.1</a>, "Flow Expiration". For example:
the Exporting Process exports a portion of the expired Flows every
'x' seconds.
For long-lasting Flows, the Exporting Process should export the Flow
Records on a regular basis or based on some export policy. This
periodicity or export policy should be configurable at the Exporting
Process.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Observation Point</span>
A Flow Record can be better analysed if the Observation Point from
which it was measured is known. As such, it is recommended that
IPFIX Devices send this information to Collectors. In cases where
there is a single Observation Point or where the Observation Point
information is not relevant, the Metering Process may choose not to
add the Observation Point information to the Flow Records.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Selection Criteria for Packets</span>
A Metering Process may define rules so that only certain packets
within an incoming stream of packets are chosen for measurement at an
Observation Point. This may be done by one of the two methods
defined below or a combination of them, in either order. A
combination of each of these methods can be adopted to select the
packets, i.e., one can define a set of methods {F1, S1, F2, S2, S3}
executed in a specified sequence at an Observation Point to select
particular Flows.
The figure below shows the operations that may be applied as part of
a typical Metering Process.
<span class="grey">Sadasivan, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
+---------------------------+
| packet header capturing |
+---------------------------+
|
v
+---------------------------+
| timestamping |
+---------------------------+
|
v
+---------------> +
| |
| v
| +----------------------------------------------+
| | sampling Si (1:1 in case of no sampling) |
| +----------------------------------------------+
| |
| v
| +----------------------------------------------+
| | filtering Fi (select all when no criteria) |
| +----------------------------------------------+
| |
| v
+-----------------+
|
v
+---------------------------+
| Flows |
+---------------------------+
Figure 3: Selection Criteria for Packets
Note that packets could be selected before or after any IP
processing, i.e., before there is any IP checksum validation, IP
filtering, etc., or after one or more of these steps. This has an
impact on what kinds of traffic (or erroneous conditions) IPFIX can
observe. It is recommended that packets are selected after their
checksums have been verified.
<span class="h4"><a class="selflink" id="section-5.3.1" href="#section-5.3.1">5.3.1</a>. Sampling Functions, Si</span>
A sampling function determines which packets within a stream of
incoming packets are selected for measurement, i.e., packets that
satisfy the sampling criteria for this Metering Process.
Example: sample every 100th packet that was received at an
Observation Point.
<span class="grey">Sadasivan, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
Choosing all the packets is a special case where the sampling rate is
1:1.
<span class="h4"><a class="selflink" id="section-5.3.2" href="#section-5.3.2">5.3.2</a>. Filter Functions, Fi</span>
A Filter Function selects only those incoming packets that satisfy a
function on fields defined by the packet header fields, fields
obtained while doing the packet processing, or properties of the
packet itself.
Example: Mask/Match of the fields that define a filter. A filter
might be defined as {Protocol == TCP, Destination Port < 1024}.
Several such filters could be used in any sequence to select packets.
Note that packets selected by a (sequence of) filter functions may be
further classified by other filter functions, i.e., the selected
packets may belong to several Flows, any or all of which are
exported.
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Observation Domain</span>
The Observation Domain is a logical block that presents a single
identity for a group of Observation Points within an IPFIX Device.
Each {Observation Point, Metering Process} pair belongs to a single
Observation Domain. An IPFIX Device could have multiple Observation
Domains, each of which has a subset of the total set of Observation
Points in it. Each Observation Domain must carry a unique ID within
the context of an IPFIX Device. Note that in the case of multiple
Observation Domains, a unique ID per Observation Domain must be
transmitted as a parameter to the Exporting Function. That unique ID
is referred to as the IPFIX Observation Domain ID.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Exporting Process</span>
The Exporting Process is the functional block that sends data to one
or more IPFIX Collectors using the IPFIX protocol. On one side, the
Exporting Process interfaces with Metering Process(es) to get Flow
Records; while on the other side, it talks to a Collecting Process on
the Collector(s).
There may be additional rules defined within an Observation Domain so
that only certain Flow Records are exported. This may be done by
either one or a combination of Si and Fi, as described in
<a href="#section-5.3">Section 5.3</a>, "Selection Criteria for Packets".
Example: Only the Flow Records that meet the following selection
criteria are exported:
<span class="grey">Sadasivan, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
1. All Flow Records whose destination IP address matches
{192.0.33.5}.
2. Every other (i.e., sampling rate 1 in 2) Flow Record whose
destination IP address matches {192.0.11.30}.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. Collecting Process</span>
Collecting Processes use a Flow Record's Template ID to interpret
that Flow Record's Information Elements. To allow this, an IPFIX
Exporter must ensure that an IPFIX Collector knows the Template ID
for each incoming Flow Record. To interpret incoming Flow Records,
an IPFIX Collector may also need to know the function F() that was
used by the Metering Process for each Flow.
The functions of the Collecting Process must include:
o Identifying, accepting, and decoding the IPFIX Messages from
different <Exporting Process, Observation Domain> pairs.
o Storing the Control Information and Flow Records received from an
IPFIX Device.
At a high level, the Collecting Process:
1. Receives and stores the Control Information.
2. Decodes and stores the Flow Records using the Control
Information.
<span class="grey">Sadasivan, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. Summary</span>
The figure below shows the functions performed in sequence by the
various functional blocks in an IPFIX Device.
Packet(s) coming into Observation Point(s)
| |
v v
+----------------+-------------------------+ +-----+-------+
| Metering Process on an | | |
| Observation Point | | |
| | | |
| packet header capturing | | |
| | |...| Metering |
| timestamping | | Process N |
| | | | |
| +----->+ | | |
| | | | | |
| | sampling Si (1:1 in case of no | | |
| | | sampling) | | |
| | filtering Fi (select all when | | |
| | | no criteria) | | |
| +------+ | | |
| | | | |
| | Timing out Flows | | |
| | Handle resource overloads | | |
+--------|---------------------------------+ +-----|-------+
| |
Flow Records (identified by Observation Domain) Flow Records
| |
<span class="grey">Sadasivan, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
+---------+---------------------------------+
|
+--------------------|----------------------------------------------+
| | Exporting Process |
|+-------------------|-------------------------------------------+ |
|| v IPFIX Protocol | |
||+-----------------------------+ +----------------------------+| |
|||Rules for | |Functions || |
||| Picking/sending Templates | |-Packetise selected Control || |
||| Picking/sending Flow Records|->| & data Information into || |
||| Encoding Template & data | | IPFIX export packets. || |
||| Selecting Flows to export(*)| |-Handle export errors || |
||+-----------------------------+ +----------------------------+| |
|+----------------------------+----------------------------------+ |
| | |
| exported IPFIX Messages |
| | |
| +------------+-----------------+ |
| | Anonymise export packet(*) | |
| +------------+-----------------+ |
| | |
| +------------+-----------------+ |
| | Transport Protocol | |
| +------------+-----------------+ |
| | |
+-----------------------------+-------------------------------------+
|
v
IPFIX export packet to Collector
(*) indicates that the block is optional.
Figure 4: IPFIX Device functional blocks
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Overview of the IPFIX Protocol</span>
An IPFIX Device consists of a set of cooperating processes that
implement the functional blocks described in the previous section.
Alternatively, an IPFIX Device can be viewed simply as a network
entity that implements the IPFIX protocol. At the IPFIX Device, the
protocol functionality resides in the Exporting Process. The IPFIX
Exporting Process gets Flow Records from a Metering Process, and
sends them to the Collector(s).
At a high level, an IPFIX Device performs the following tasks:
1. Encodes Control Information into Templates.
<span class="grey">Sadasivan, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
2. Encodes packets observed at the Observation Points into Flow
Records.
3. Packetises the selected Templates and Flow Records into IPFIX
Messages.
4. Sends IPFIX Messages to the Collector.
The IPFIX protocol communicates information from an IPFIX Exporter to
an IPFIX Collector. That information includes not only Flow Records,
but also information about the Metering Process. Such information
(referred to as Control Information) includes details of the data
fields in Flow Records. It may also include statistics from the
Metering Process, such as the number of packets lost (i.e., not
metered).
For details of the IPFIX protocol, please refer to <a href="./rfc5101">RFC 5101</a> [<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>].
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Information Model Overview</span>
The IP Flow Information eXport (IPFIX) protocol serves for
transmitting information related to measured IP traffic over the
Internet. The protocol specification in <a href="./rfc5101">RFC 5101</a> [<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>] defines how
Information Elements are transmitted. For Information Elements, it
specifies the encoding of a set of basic data types. However, the
list of fields that can be transmitted by the protocol, such as Flow
attributes (source IP address, number of packets, etc.) and
information about the Metering and Exporting Process (packet
Observation Point, sampling rate, Flow timeout interval, etc.), is
not specified in <a href="./rfc5101">RFC 5101</a> [<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>]. Instead, it is defined in the IPFIX
information model in <a href="./rfc5102">RFC 5102</a> [<a href="#ref-2" title=""Information for Model IP Flow Information Export"">2</a>].
The information model provides a complete description of the
properties of every IPFIX Information Element. It does this by
specifying each element's name, Field Type, data type, etc., and
providing a description of each element. Element descriptions give
the semantics of the element, i.e., say how it is derived from a Flow
or other information available within an IPFIX Device.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Flow Records</span>
The following rules provide guidelines to be followed while encoding
the Flow Records information:
A Flow Record contains enough information so that the Collecting
Process can identify the corresponding <Per-Flow Control Information,
Configuration Control Information>.
<span class="grey">Sadasivan, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
The Exporting Process encodes a given Information Element (as
specified in <a href="./rfc5102">RFC 5102</a> [<a href="#ref-2" title=""Information for Model IP Flow Information Export"">2</a>]), based on the encoding standards
prescribed by <a href="./rfc5101">RFC 5101</a> [<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>].
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Control Information</span>
The following rules provide guidelines to be followed while encoding
the Control Information:
o Per-Flow Control Information should be encoded such that the
Collecting Process can capture the structure and semantics of the
corresponding Flow data for each of the Flow Records exported by
the IPFIX Device.
o Configuration Control Information is conveyed to a Collector so
that its Collecting Process can capture the structure and
semantics of the corresponding configuration data. The
configuration data, which is also Control Information, should
carry additional information on the Observation Domain within
which the configuration takes effect.
For example, sampling using the same sampling algorithm, say 1 in 100
packets, is configured on two Observation Points O1 and O2. The
configuration in this case may be encoded as {ID, observation points
(O1,O2), sampling algorithm, interval (1 in 100)}, where ID is the
Observation Domain ID for the domain containing O1 and O2. The
Observation Domain ID uniquely identifies this configuration, and
must be sent within the Flow Records in order to be able to match the
right configuration control information.
The Control Information is used by the Collecting Process to:
o Decode and interpret Flow Records.
o Understand the state of the Exporting Process.
Sending Control Information from the Exporting Process in a timely
and reliable manner is critical to the proper functioning of the
IPFIX Collecting Process. The following approaches may be taken for
the export of Control Information:
1. Send all the Control Information pertaining to Flow Records prior
to sending the Flow Records themselves. This includes any
incremental changes to the definition of the Flow Records.
<span class="grey">Sadasivan, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
2. Notify, on a near real-time basis, the state of the IPFIX Device
to the Collecting Process. This includes all changes such as a
configuration change that affects the Flow behaviour, changes to
Exporting Process resources that alter export rates, etc., which
the Collector needs to be aware of.
3. Since it is vital that a Collecting Process maintains accurate
knowledge of the Exporter's state, the export of the Control
Information should be done such that it reaches the Collector
reliably. One way to achieve this is to send the Control
Information over a reliable transport.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Reporting Responsibilities</span>
From time to time, an IPFIX Device may not be able to observe all the
packets reaching one of its Observation Points. This could occur if
a Metering Process finds itself temporarily short of resources. For
example, it might run out of packet buffers for IPFIX export.
In such situations, the IPFIX Device should attempt to count the
number of packet losses that have occurred, and report them to its
Collector(s). If it is not possible to count losses accurately,
e.g., when transport layer (i.e., non-IPFIX) errors are detected, the
IPFIX Device should report this fact, and perhaps indicate the time
period during which some packets might not have been observed.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. IPFIX Protocol Details</span>
When the IPFIX Working Group was chartered, there were existing
common practices in the area of Flow export, for example, NetFlow,
CRANE (Common Reliable Accounting for Network Element), LFAP (Light-
weight Flow Admission Protocol), RTFM (Real-time Traffic Flow
Measurement), etc. IPFIX's charter required the Working Group to
consider those existing practices, and select the one that was the
closest fit to the IPFIX requirements in <a href="./rfc3917">RFC 3917</a> [<a href="#ref-1" title=""Requirements for IP Flow Information Export (IPFIX)"">1</a>]. Additions or
modifications would then be made to the selected protocol to fit it
exactly into the IPFIX architecture.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. The IPFIX Basis Protocol</span>
The Working Group went through an extensive evaluation of the various
existing protocols that were available, weighing the level of
compliance with the requirements, and selected one of the candidates
as the basis for the IPFIX protocol. For more details of the
evaluation process, please see <a href="./rfc3955">RFC 3955</a> [<a href="#ref-6" title=""Evaluation of Candidate Protocols for IP Flow Information Export (IPFIX)"">6</a>].
<span class="grey">Sadasivan, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
In the basis protocol, Flow Records are defined by Templates, where a
Template is an ordered set of the Information Elements appearing in a
Flow Record, together with their field sizes within those records.
This approach provides the following advantages:
o Using the Template mechanism, new fields can be added to IPFIX
Flow Records without changing the structure of the export record
format.
o Templates that are sent to the Collecting Process carry structural
information about the exported Flow Record fields. Therefore, if
the Collector does not understand the semantics of new fields, it
can ignore them, but still interpret the Flow Record.
o Because the template mechanism is flexible, it allows the export
of only the required fields from the Flows to the Collecting
Process. This helps to reduce the exported Flow data volume and
possibly provide memory savings at the Exporting Process and
Collecting Process. Sending only the required information can
also reduce network load.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. IPFIX Protocol on the Collecting Process</span>
The Collecting Process is responsible for:
1. Receiving and decoding Flow Records from the IPFIX Devices.
2. Reporting on the loss of Flow Records sent to the Collecting
Process by an IPFIX Exporting Process.
Complete details of the IPFIX protocol are given in <a href="./rfc5101">RFC 5101</a> [<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>].
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. Support for Applications</span>
Applications that use the information collected by IPFIX may be
Billing or Intrusion Detection sub-systems, etc. These applications
may be an integral part of the Collecting Process, or they may be co-
located with the Collecting Process. The way by which these
applications interface with IPFIX systems to get the desired
information is out of scope for this document.
<span class="grey">Sadasivan, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Export Models</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Export with Reliable Control Connection</span>
As mentioned in <a href="./rfc3917">RFC 3917</a> [<a href="#ref-1" title=""Requirements for IP Flow Information Export (IPFIX)"">1</a>], an IPFIX Device must be able to
transport its Control Information and Data Stream over a congestion-
aware transport protocol.
If the network in which the IPFIX Device and Collecting Process are
located does not guarantee reliability, at least the Control
Information should be exported over a reliable transport. The Data
Stream may be exported over a reliable or unreliable transport
protocol.
Possible transport protocols include:
o SCTP: Supports reliable and unreliable transport.
o TCP: Provides reliable transport only.
o UDP: Provides unreliable transport only. Network operators would
need to avoid congestion by keeping traffic within their own
administrative domains. For example, one could use a dedicated
network (or Ethernet link) to carry IPFIX traffic from Exporter to
Collector.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Collector Failure Detection and Recovery</span>
The transport connection (in the case of a connection-oriented
protocol) is pre-configured between the IPFIX Device and the
Collector. The IPFIX protocol does not provide any mechanism for
configuring the Exporting and Collecting Processes.
Once connected, an IPFIX Collector receives Control Information and
uses that information to interpret Flow Records. The IPFIX Device
should set a keepalive (e.g., the keepalive timeout in the case of
TCP, the HEARTBEAT interval in the case of SCTP) to a sufficiently
low value so that it can quickly detect a Collector failure. Note,
however, that extremely short keepalive intervals can incorrectly
abort the connection during transient periods of congestion. They
can also cause some level of additional network load during otherwise
idle periods.
Collector failure refers to the crash or restart of the Collecting
Process or of the Collector itself. A Collector failure is detected
at the IPFIX Device by the break in the connection-oriented transport
protocol session; depending on the transport protocol, the connection
timeout mechanisms differ. On detecting a keepalive timeout in a
<span class="grey">Sadasivan, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
single Collector scenario, the IPFIX Device should stop sending Flow
Records to the Collector and try to reestablish the transport
connection. If Collecting Process failover is supported by the
Exporting Process, backup session(s) may be opened in advance, and
Control Information sent to the failover Collecting Process.
There could be one or more secondary Collectors with priority
assigned to them. The primary Collector crash is detected at the
IPFIX Device. On detecting loss of connectivity, the IPFIX Device
opens a Data Stream with the secondary Collector of the next highest
priority. If that secondary was not opened in advance, both the
Control Information and Data Stream must be sent to it. That
Collector might then become the primary, or the Exporting Process
might try to reestablish the original session.
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. Collector Redundancy</span>
Configuring redundant Collectors is an alternative to configuring
backup Collectors. In this model, all Collectors simultaneously
receive the Control Information and Data Streams. Multiple {Control
Information, Data Stream} pairs could be sent, each to a different
Collector, from the same IPFIX Device. Since the IPFIX protocol
requires a congestion-aware transport, achieving redundancy using
multicast is not an option.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IPFIX Flow Collection in Special Situations</span>
An IPFIX Device can generate, receive, and/or alter two special types
of traffic, which are listed below.
Tunnel traffic:
The IPFIX Device could be the head, midpoint, or end-point of a
tunnel. In such cases, the IPFIX Device could be handling Generic
Routing Encapsulation (GRE) [<a href="#ref-8" title=""Generic Routing Encapsulation (GRE)"">8</a>], IPinIP [<a href="#ref-7" title=""IP in IP Tunneling"">7</a>], or Layer Two
Tunneling Protocol version 3 [<a href="#ref-9" title=""Layer Two Tunneling Protocol - Version 3 (L2TPv3)"">9</a>] traffic.
VPN traffic:
The IPFIX Device could be a provider-edge device that receives
traffic from customer sites belonging to different Virtual Private
Networks.
Similarly, IPFIX could be implemented on devices which perform one or
more of the following special services:
<span class="grey">Sadasivan, et al. Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
o Explicitly drop packets. For example, a device that provides
firewall service drops packets based on some administrative
policy.
o Alter the values of fields used as IPFIX Flow Keys of interest.
For example, a device that provides NAT service can change the
source and/or destination IP address.
In cases such as those listed above, there should be clear guidelines
as to:
o How and when to classify the packets as Flows in the IPFIX Device.
o If multiple encapsulations are used to define Flows, how to convey
the same fields (e.g., IP address) in different layers.
o How to differentiate Flows based on different private domains.
For example, overlapping IP addresses in Layer-3 VPNs.
o What extra information needs to be exported so that the Collector
can make a clear interpretation of the received Flow Records.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Security Considerations</span>
Flow information can be used for various purposes, such as usage-
based accounting, traffic profiling, traffic engineering, and
intrusion detection. The security requirements may differ
significantly for such applications. To be able to satisfy the
security needs of various IPFIX users, an IPFIX system must provide
different levels of security protection.
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Data Security</span>
IPFIX data comprises Control Information and Data Streams generated
by the IPFIX Device.
The IPFIX data may exist in both the IPFIX Device and the Collector.
In addition, the data is also transferred on the wire from the IPFIX
Device to the Collector when it is exported. To provide security,
the data should be protected from common network attacks.
The protection of IPFIX data within the end system (IPFIX Device and
Collector) is out of scope for this document. It is assumed that the
end system operator will provide adequate security for the IPFIX
data.
<span class="grey">Sadasivan, et al. Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
The IPFIX architecture must allow different levels of protection to
the IPFIX data on the wire. Wherever security functions are
required, it is recommended that users should leverage lower layers
using either TLS or DTLS (Datagram Transport Layer Security), if
these can successfully satisfy the security requirement of IPFIX data
protection.
To protect the data on the wire, three levels of granularity should
be supported; these are described in the following subsections.
<span class="h4"><a class="selflink" id="section-10.1.1" href="#section-10.1.1">10.1.1</a>. Host-Based Security</span>
Security may not be required when the transport between the IPFIX
Device and the Collector is perceived as safe. This option allows
the protocol to run most efficiently without extra overhead, and an
IPFIX system must support it.
<span class="h4"><a class="selflink" id="section-10.1.2" href="#section-10.1.2">10.1.2</a>. Authentication-Only</span>
Authentication-only protection provides IPFIX users with the
assurance of data integrity and authenticity. The data exchanged
between the IPFIX Device and the Collector is protected by an
authentication signature. Any modification of the IPFIX data will be
detected by the recipient, resulting in the discarding of the
received data. However, the authentication-only option doesn't offer
data confidentiality.
The IPFIX user should not use authentication-only when sensitive or
confidential information is being exchanged. An IPFIX solution
should support this option. The authentication-only option should
provide replay attack protection. Some means to achieve this level
of security are:
o Encapsulating Security Payload (with a null encryption algorithm)
o Transport Layer Security (with a null encryption algorithm)
o IP Authentication Header
<span class="h4"><a class="selflink" id="section-10.1.3" href="#section-10.1.3">10.1.3</a>. Encryption</span>
Data encryption provides the best protection for IPFIX data. The
IPFIX data is encrypted at the sender, and only the intended
recipient can decrypt and have access to the data. This option must
be used when the transport between the IPFIX Device and the Collector
is unsafe, and the IPFIX data needs to be protected. It is
<span class="grey">Sadasivan, et al. Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
recommended that the underlying transport layer's security functions
be used for this purpose. Some means to achieve this level of
security are:
o Encapsulating Security Payload
o Transport Layer Security Protocol
The data encryption option adds overhead to the IPFIX data transfer.
It may limit the rate that an Exporter can report its Flow Records to
the Collector, due to the resource requirement for running
encryption.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. IPFIX End-Point Authentication</span>
It is important to make sure that the IPFIX Device is talking to the
"right" Collector rather than to a masquerading Collector. The same
logic also holds true from the Collector's point of view, i.e., it
may want to make sure it is collecting the Flow Records from the
"right" IPFIX Device. An IPFIX system should allow the end-point
authentication capability so that either one-way or mutual
authentication can be performed between the IPFIX Device and
Collector.
The IPFIX architecture should use any existing transport protection
protocols, such as TLS, to fulfil the authentication requirement.
<span class="h3"><a class="selflink" id="section-10.3" href="#section-10.3">10.3</a>. IPFIX Overload</span>
An IPFIX Device could become overloaded under various conditions.
This may be because of exhaustion of internal resources used for Flow
generation and/or export. Such overloading may cause loss of data
from the Exporting Process, either from lack of export bandwidth
(possibly caused by an unusually high number of observed Flows) or
from network congestion in the path from Exporter to Collector.
IPFIX Collectors should be able to detect the loss of exported Flow
Records, and should at least record the number of lost Flow Records.
<span class="h4"><a class="selflink" id="section-10.3.1" href="#section-10.3.1">10.3.1</a>. Denial-of-Service (DoS) Attack Prevention</span>
Since one of the potential usages for IPFIX is for intrusion
detection, it is important for the IPFIX architecture to support some
kind of DoS resistance.
<span class="grey">Sadasivan, et al. Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h5"><a class="selflink" id="section-10.3.1.1" href="#section-10.3.1.1">10.3.1.1</a>. Network under Attack</span>
The network itself may be under attack, resulting in an overwhelming
number of IPFIX Messages. An IPFIX system should try to capture as
much information as possible. However, when a large number of IPFIX
Messages are generated in a short period of time, the IPFIX system
may become overloaded.
<span class="h5"><a class="selflink" id="section-10.3.1.2" href="#section-10.3.1.2">10.3.1.2</a>. Generic DoS Attack on the IPFIX Device and Collector</span>
The IPFIX Device and Collector may be subject to generic DoS attacks,
just as any system on any open network. These types of attacks are
not IPFIX specific. Preventing and responding to such types of
attacks are out of the scope of this document.
<span class="h5"><a class="selflink" id="section-10.3.1.3" href="#section-10.3.1.3">10.3.1.3</a>. IPFIX-Specific DoS Attack</span>
There are some specific attacks on the IPFIX portion of the IPFIX
Device or Collector:
o The attacker could overwhelm the Collector with spoofed IPFIX
Export packets. One way to solve this problem is to periodically
synchronise the sequence numbers of the Flow Records between the
Exporting and Collecting Processes.
o The attacker could provide false reports to the Collector by
sending spoofed packets.
The problems mentioned above can be solved to a large extent if the
control packets are encrypted both ways, thereby providing more
information that the Collector could use to identify and ignore
spoofed data packets.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. IANA Considerations</span>
The IPFIX Architecture, as set out in this document, has two sets of
assigned numbers, as outlined in the following subsections.
<span class="h3"><a class="selflink" id="section-11.1" href="#section-11.1">11.1</a>. Numbers Used in the Protocol</span>
IPFIX Messages, as described in <a href="./rfc5101">RFC 5101</a> [<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>], use two fields with
assigned values. These are the IPFIX Version Number, indicating
which version of the IPFIX Protocol was used to export an IPFIX
Message, and the IPFIX Set ID, indicating the type for each set of
information within an IPFIX Message.
<span class="grey">Sadasivan, et al. Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
Values for the IPFIX Version Number and the IPFIX Set ID, together
with the considerations for assigning them, are defined in <a href="./rfc5101">RFC 5101</a>
[<a href="#ref-3" title=""Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information"">3</a>].
<span class="h3"><a class="selflink" id="section-11.2" href="#section-11.2">11.2</a>. Numbers Used in the Information Model</span>
Fields of the IPFIX protocol carry information about traffic
measurement. They are modelled as elements of the IPFIX information
model <a href="./rfc5102">RFC 5102</a> [<a href="#ref-2" title=""Information for Model IP Flow Information Export"">2</a>]. Each Information Element describes a field that
may appear in an IPFIX Message. Within an IPFIX Message, the field
type is indicated by its Field Type.
Values for the IPFIX Information Element IDs, together with the
considerations for assigning them, are defined in <a href="./rfc5102">RFC 5102</a> [<a href="#ref-2" title=""Information for Model IP Flow Information Export"">2</a>].
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Acknowledgements</span>
The document editors wish to thank all the people contributing to the
discussion of this document on the mailing list, and the design teams
for many valuable comments. In particular, the following made
significant contributions:
Tanja Zseby
Paul Calato
Dave Plonka
Jeffrey Meyer
K.C.Norseth
Vamsi Valluri
Cliff Wang
Ram Gopal
Jc Martin
Carter Bullard
Reinaldo Penno
Simon Leinen
Kevin Zhang
Paul Aitken
Brian Trammell
Special thanks to Dave Plonka for the multiple thorough reviews.
<span class="grey">Sadasivan, et al. Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. References</span>
<span class="h3"><a class="selflink" id="section-13.1" href="#section-13.1">13.1</a>. Normative References</span>
[<a id="ref-1">1</a>] Quittek, J., Zseby, T., Claise, B., and S. Zander, "Requirements
for IP Flow Information Export (IPFIX)", <a href="./rfc3917">RFC 3917</a>, October 2004.
[<a id="ref-2">2</a>] Quittek, J., Bryant, S., Claise, B., Aitken, P., and J. Meyer,
"Information for Model IP Flow Information Export", <a href="./rfc5102">RFC 5102</a>,
January 2008.
[<a id="ref-3">3</a>] Claise, B., "Specification of the IP Flow Information Export
(IPFIX) Protocol for the Exchange of IP Traffic Flow
Information", <a href="./rfc5101">RFC 5101</a>, January 2008.
[<a id="ref-4">4</a>] Zseby, T., Boschi, E., Brownlee, N., and B. Claise, "IPFIX
Applicability", <a href="./rfc5472">RFC 5472</a>, March 2009.
<span class="h3"><a class="selflink" id="section-13.2" href="#section-13.2">13.2</a>. Informative References</span>
[<a id="ref-5">5</a>] Schulzrinne, H., Casner, S., Frederick, R., and V. Jacobson,
"RTP: A Transport Protocol for Real-Time Applications", STD 64,
<a href="./rfc3550">RFC 3550</a>, July 2003.
[<a id="ref-6">6</a>] Leinen, S., "Evaluation of Candidate Protocols for IP Flow
Information Export (IPFIX)", <a href="./rfc3955">RFC 3955</a>, October 2004.
[<a id="ref-7">7</a>] Simpson, W., "IP in IP Tunneling", <a href="./rfc1853">RFC 1853</a>, October 1995.
[<a id="ref-8">8</a>] Farinacci, D., Li, T., Hanks, S., Meyer, D., and P. Traina,
"Generic Routing Encapsulation (GRE)", <a href="./rfc2784">RFC 2784</a>, March 2000.
[<a id="ref-9">9</a>] Lau, J., Townsley, M., and I. Goyret, "Layer Two Tunneling
Protocol - Version 3 (L2TPv3)", <a href="./rfc3931">RFC 3931</a>, March 2005.
<span class="grey">Sadasivan, et al. Informational [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc5470">RFC 5470</a> IPFIX Architecture March 2009</span>
Authors' Addresses
Ganesh Sadasivan
Rohati Systems
1192 Borregas Ave.
Sunnyvale, CA 94089
USA
EMail: gsadasiv@rohati.com
Nevil Brownlee
CAIDA | The University of Auckland
Private Bag 92019
Auckland 1142
New Zealand
Phone: +64 9 373 7599 x88941
EMail: n.brownlee@auckland.ac.nz
Benoit Claise
Cisco Systems, Inc.
De Kleetlaan 6a b1
1831 Diegem
Belgium
Phone: +32 2 704 5622
EMail: bclaise@cisco.com
Juergen Quittek
NEC Laboratories Europe, NEC Europe Ltd.
Kurfuersten-Anlage 36
Heidelberg 69115
Germany
Phone: +49 6221 4342-115
EMail: quittek@nw.neclab.eu
URI: <a href="http://www.neclab.eu/">http://www.neclab.eu/</a>
Sadasivan, et al. Informational [Page 31]
</pre>
|