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
|
<pre>Network Working Group Y. El Mghazli, Ed.
Request for Comments: 4176 Alcatel
Category: Informational T. Nadeau
Cisco
M. Boucadair
France Telecom
K. Chan
Nortel
A. Gonguet
Alcatel
October 2005
<span class="h1">Framework for Layer 3 Virtual Private Networks (L3VPN)</span>
<span class="h1">Operations and Management</span>
Status of This Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2005).
Abstract
This document provides a framework for the operation and management
of Layer 3 Virtual Private Networks (L3VPNs). This framework intends
to produce a coherent description of the significant technical issues
that are important in the design of L3VPN management solutions. The
selection of specific approaches, and making choices among
information models and protocols are outside the scope of this
document.
<span class="grey">El Mghazli, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ................................................. <a href="#page-2">2</a>
<a href="#section-1.1">1.1</a>. Terminology ............................................ <a href="#page-2">2</a>
<a href="#section-1.2">1.2</a>. Management functions ................................... <a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. Reference Models ....................................... <a href="#page-5">5</a>
<a href="#section-2">2</a>. Customer Service Operations and Management ................... <a href="#page-7">7</a>
<a href="#section-2.1">2.1</a>. Customer Service Management Information Model .......... <a href="#page-7">7</a>
<a href="#section-2.2">2.2</a>. Customer Management Functions .......................... <a href="#page-8">8</a>
<a href="#section-2.2.1">2.2.1</a>. Fault Management ............................... <a href="#page-8">8</a>
<a href="#section-2.2.2">2.2.2</a>. Configuration Management ....................... <a href="#page-9">9</a>
<a href="#section-2.2.3">2.2.3</a>. Accounting ..................................... <a href="#page-9">9</a>
<a href="#section-2.2.4">2.2.4</a>. Performance Management ......................... <a href="#page-10">10</a>
<a href="#section-2.2.5">2.2.5</a>. Security Management ............................ <a href="#page-10">10</a>
<a href="#section-2.3">2.3</a>. Customer Management Functional Description ............. <a href="#page-11">11</a>
<a href="#section-2.3.1">2.3.1</a>. L3VPN Service Offering Management .............. <a href="#page-11">11</a>
<a href="#section-2.3.2">2.3.2</a>. L3VPN Service Order Management ................. <a href="#page-12">12</a>
<a href="#section-2.3.3">2.3.3</a>. L3VPN Service Assurance ........................ <a href="#page-12">12</a>
<a href="#section-3">3</a>. Provider Network Manager ..................................... <a href="#page-12">12</a>
<a href="#section-3.1">3.1</a>. Provider Network Management Definition ................. <a href="#page-12">12</a>
<a href="#section-3.2">3.2</a>. Network Management Functions ........................... <a href="#page-13">13</a>
<a href="#section-3.2.1">3.2.1</a>. Fault Management ............................... <a href="#page-13">13</a>
<a href="#section-3.2.2">3.2.2</a>. Configuration Management ....................... <a href="#page-14">14</a>
<a href="#section-3.2.3">3.2.3</a>. Accounting ..................................... <a href="#page-17">17</a>
<a href="#section-3.2.4">3.2.4</a>. Performance Management ......................... <a href="#page-17">17</a>
<a href="#section-3.2.5">3.2.5</a>. Security Management ............................ <a href="#page-17">17</a>
<a href="#section-4">4</a>. L3VPN Devices ................................................ <a href="#page-18">18</a>
<a href="#section-4.1">4.1</a>. Information Model ...................................... <a href="#page-18">18</a>
<a href="#section-4.2">4.2</a>. Communication .......................................... <a href="#page-18">18</a>
<a href="#section-5">5</a>. Security Considerations ...................................... <a href="#page-19">19</a>
<a href="#section-6">6</a>. Acknowledgements ............................................. <a href="#page-19">19</a>
<a href="#section-7">7</a>. Normative References ......................................... <a href="#page-19">19</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Terminology</span>
In this document, the following terms are used and defined as
follows:
VPN:
Virtual Private Network. A set of transmission and switching
resources that will be used over a shared infrastructure to
process the (IP) traffic that characterizes communication services
between the sites or premises interconnected via this VPN. See
[<a href="./rfc4026" title=""Provider Provisioned Virtual Private Network (VPN) Terminology"">RFC4026</a>].
<span class="grey">El Mghazli, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
L3VPN:
An L3VPN interconnects sets of hosts and routers based on Layer 3
addresses. See [<a href="./rfc4026" title=""Provider Provisioned Virtual Private Network (VPN) Terminology"">RFC4026</a>].
VPN Instance:
From a management standpoint, a VPN instance is the collection of
configuration information associated with a specific VPN, residing
on a PE router.
VPN Site:
A VPN customer's location that is connected to the Service
Provider network via a CE-PE link, which can access at least one
VPN.
VPN Service Provider (SP):
A Service Provider that offers VPN-related services.
VPN Customer:
Refers to a customer that bought VPNs from a VPN service provider.
Customer Agent:
Denotes the entity that is responsible for requesting VPN
customer-specific information.
Service Level Agreement(SLA):
Contractual agreement between the Service Provider and Customer,
which includes qualitative and quantitative metrics that define
service quality guarantees and retribution procedures when service
levels are not being met.
Service Level Specifications (SLS):
Internally-focused service performance specifications used by the
Service Provider to manage customer service quality levels.
<span class="grey">El Mghazli, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Management functions</span>
For any type of Layer-3 VPN (PE or CE-based VPNs), having a
management platform where the VPN-related information could be
collected and managed is recommended. The Service and Network
Management System may centralize information related to instances of
a VPN and allow users to configure and provision each instance from a
central location.
An SP must be able to manage the capabilities and characteristics of
their VPN services. Customers should have means to ensure
fulfillment of the VPN service to which they subscribed. To the
extent possible, automated operations and interoperability with
standard management protocols should be supported.
Two main management functions are identified:
A customer service management function:
This function provides the means for a customer to query,
configure, and receive (events/alarms) customer-specific VPN
service information. Customer-specific information includes data
related to contact, billing, site, access network, IP address,
routing protocol parameters, etc. It may also include
confidential data, such as encryption keys. Several solutions
could be used:
* Proprietary network management system
* SNMP manager
* PDP function
* Directory service, etc.
A provider network management function:
This function is responsible for planning, building, provisioning,
and maintaining network resources in order to meet the VPN
service-level agreements outlined in the SLA offered to the
customer. This mainly consists of (1) setup and configuration of
physical links, (2) provisioning of logical VPN service
configurations, and (3) life-cycle management of VPN service,
including the addition, modification, and deletion of VPN
configurations.
<span class="grey">El Mghazli, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
There may be relationships between the customer service and
provider network management functions, as the provider network is
managed to support/realize/provide the customer service. One
example use of this relationship is to provide the VPN-SLS
assurance for verifying the fulfillment of the subscribed VPN
agreement.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Reference Models</span>
The ITU-T Telecommunications Management Network has the following
generic requirements structure:
o Engineer, deploy and manage the switching, routing, and
transmission resources supporting the service from a network
perspective (network element management);
o Manage the VPNs deployed over these resources (network
management);
o Manage the VPN service (service management);
- - - - - - - - - - - - - - - - - - - - - - - -:- - - - - - - - -
Service +-------------+ : +----------+
Management | Service |<------------------:----->| Customer |
Layer | Manager | : | Agent |
+-------------+ : +----------+
- - - - - - - - - - ^ - - - - - - - - - - - - -:- - - - - - - - -
Network | +------------+ :
Management | | Provider | :
Layer | | Network | Customer
+------>| Manager | Interface
+------------+ :
- - - - - - - - - - - - - - - - - ^ - - - - - -:- - - - - - - - -
Network Element | :
Management | +------+ : +------+
Layer | | | : | CE |
+->| PE | : |device|
|device| : | of |
| |--:--|VPN A|
+------+ : +------+
---------------------------------------------->:<----------------
SP network : Customer Network
Figure 1: Reference Model for PE-based L3VPN Management
<span class="grey">El Mghazli, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
- - - - - - - - - - - - - - - - - - - - - - - -:- - - - - - - - -
Service +-------------+ : +----------+
Management | Service |<------------------:----->| Customer |
Layer | Manager | : | Agent |
+-------------+ : +----------+
- - - - - - - - - - ^ - - - - - - - - - - - - -:- - - - - - - - -
Network | +------------+ :
Management | | Provider | :
Layer | | Network | Customer
+------>| Manager | Interface
+------------+ :
- - - - - - - - - - - - - - - -^- - - -^- - - -:- - - - - - - - -
Network Element | +-------:---------------+
Management | +------+ : +------+ |
Layer | | | : | CE | |
+---->| PE | : |device|<----+
|device| : | of |
| |--:--|VPN A|
+------+ : +------+
---------------------------------------------->:<----------------
SP network : Customer Network
Figure 2: Reference Model for CE-based L3VPN Management
Above, Figures 1 and 2 present the reference models for both PE and
CE-based L3VPN management, according to the aforementioned generic
structure.
In both models, the service manager administrates customer-specific
attributes, such as customer Identifier (ID), personal information
(e.g., name, address, phone number, credit card number, etc.),
subscription services and parameters, access control policy
information, billing and statistical information, etc.
In the PE-based reference model, the provider network manager
administrates device attributes and their relationships, covering PE
devices and other devices that construct the corresponding PE-based
VPN.
In the CE-based reference model, the provider network manager
administrates device attributes and their relationships, covering PE
and CE devices that construct the corresponding CE-based VPN.
Network and customer service management systems that are responsible
for managing VPN networks have several challenges, depending on the
type of VPN network(s) they are required to manage.
<span class="grey">El Mghazli, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Customer Service Operations and Management</span>
Services offered by providers can be viewed from the customer's or
the provider's perspective. This section describes service
management from the customer's perspective, focusing on the Customer
Management function.
The Customer Management function's goal is to manage the
service-based operations like service ordering, service subscription,
activation, etc.
The Customer Management function resides in the L3VPN service manager
at the Service Management Layer (SML). It mainly consists of
defining the L3VPN services offered by the SP, collecting and
consolidating the customer L3VPN services requirements, as well as
performing some reporting for the customer. This function is
correlated with the Network Management function at the Network
Management Layer (NML) for initiating the L3VPN services
provisioning, and getting some service reporting.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Customer Service Management Information Model</span>
This section presents a framework that is used for L3VPN customer
service management at the SML. The information framework represents
the data that need to be managed, and the way they are represented.
At the SML, the information framework that is foreseen is composed of
Service Level Agreements (SLA) and Service Level Specifications
(SLS).
Services are described through Service Level Agreements (SLA), which
are contractual documents between customers and service providers.
The technical part of the service description is called the Service
Level Specification (SLS). The SLS groups different kinds of
parameters. Some are more related to the description of the
transport of the packets, and some to the specification of the
service itself.
A Service Level Specification (SLS) may be defined per access network
connection, per VPN, per VPN site, and/or per VPN route. The service
provider may define objectives and the measurement intervals, for at
least the SLS, using the following Service Level Objective (SLO)
parameters:
o QoS and traffic parameters
o Availability for the site, VPN, or access connection
o Duration of outage intervals per site, route, or VPN
<span class="grey">El Mghazli, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
o Service activation interval (e.g., time to turn up a new site)
o Trouble report response time interval
o Time to repair interval
o Total incoming/outgoing traffic from a site or a (VPN) route, or
that has transited through the whole VPN
o Measurement of non-conforming incoming/outgoing traffic
(compliance of traffic should deserve some elaboration because of
many perspectives - security, QoS, routing, etc.) from a site or a
(VPN) route, or that has transited through the whole VPN
The service provider and the customer may negotiate contractual
penalties in the case(s) where the provider does not meet a (set of)
SLS performance objective(s).
Traffic parameters and actions should be defined for incoming and
outgoing packets that go through the demarcation between the service
provider premises and the customer's premises. For example, traffic
policing functions may be activated at the ingress of the service
provider's network, while traffic shaping capabilities could be
activated at the egress of the service provider's network.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Customer Management Functions</span>
This section presents detailed customer management functions in the
traditional fault, configuration, accounting, performance, and
security (FCAPS) management categories.
<span class="h4"><a class="selflink" id="section-2.2.1" href="#section-2.2.1">2.2.1</a>. Fault Management</span>
The fault management function of the Customer Service Manager relies
upon the manipulation of network layer failure information, and it
reports incidents to the impacted customers. Such reports should be
based upon and related to the VPN service offering to which the
customer is subscribed. The Customer Management function support for
fault management includes:
o Indication of customer's services impacted by failure
o Incident recording or logs
o Frequency of tests
o Ability to invoke probes from the customer and provider
<span class="grey">El Mghazli, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
o Ability to uncover faults before the customer notices them
<span class="h4"><a class="selflink" id="section-2.2.2" href="#section-2.2.2">2.2.2</a>. Configuration Management</span>
The configuration management function of the Customer Manager must be
able to configure L3VPN service parameters with the level of detail
that the customer is able to specify, according to service templates
defined by the provider.
A service template contains fields which, when instantiated, yield a
definite service requirement or policy. For example, a template for
an IPsec tunnel [<a href="./rfc2401" title=""Security Architecture for the Internet Protocol"">RFC2401</a>] would contain fields such as tunnel end
points, authentication modes, encryption and authentication
algorithms, shared keys (if any), and traffic filters.
Other examples: a BGP/MPLS-based VPN service template would contain
fields such as the customer premises that need to be interconnected
via the VPN, and a QoS agreement template would contain fields such
as one-way transit delay, inter-packet delay variation, throughput,
and packet loss thresholds.
<span class="h4"><a class="selflink" id="section-2.2.3" href="#section-2.2.3">2.2.3</a>. Accounting</span>
The accounting management function of the Customer Manager is
provided with network layer measurements information and manages this
information. The Customer Manager is responsible for the following
accounting functions:
o Retrieval of accounting information from the Provider Network
Manager
o Analysis, storage, and administration of measurements
Some providers may require near-real time reporting of measurement
information, and may offer this as part of a customer network
management service.
If an SP supports "Dynamic Bandwidth Management" service, then the
schedule and the amount of the bandwidth required to perform
requested bandwidth allocation change(s) must be traceable for
monitoring and accounting purposes.
Solutions should state compliance with accounting requirements, as
described in <a href="./rfc2975#section-1.7">section 1.7 of [RFC2975]</a>.
<span class="grey">El Mghazli, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
<span class="h4"><a class="selflink" id="section-2.2.4" href="#section-2.2.4">2.2.4</a>. Performance Management</span>
From the Customer Manager's perspective, performance management
includes functions involved in the determination of the conformance
level with the Service Level Specifications, such as QoS and
availability measurements. The objective is to correlate accounting
information with performance and fault management information to
produce billing that takes into account SLA provisions for periods of
time where the service level objectives are not met.
The performance information should reflect the quality of the
subscribed VPN service as perceived by the customer. This
information could be measured by the provider or controlled by a
third party. The parameters that will be used to reflect the
performance level could be negotiated and agreed upon between the
service provider and the customer during the VPN service negotiation
phase.
Performance management should also support analysis of important
aspects of an L3VPN, such as bandwidth utilization, response time,
availability, QoS statistics, and trends based on collected data.
<span class="h4"><a class="selflink" id="section-2.2.5" href="#section-2.2.5">2.2.5</a>. Security Management</span>
From the Customer Manager's perspective, the security management
function includes management features to guarantee the security of
the VPN. This includes security of devices, configuration data, and
access connections. Authentication and authorization (access
control) also fall into this category.
<span class="h5"><a class="selflink" id="section-2.2.5.1" href="#section-2.2.5.1">2.2.5.1</a>. Access Control</span>
Management access control determines the privileges that a user has
for particular applications and parts of the network. Without such
control, only the security of the data and control traffic is
protected (leaving the devices providing the L3VPN network
unprotected) among other equipment or resources. Access control
capabilities protect these devices to ensure that users have access
to only those resources and applications they are granted to use.
<span class="h5"><a class="selflink" id="section-2.2.5.2" href="#section-2.2.5.2">2.2.5.2</a>. Authentication</span>
Authentication is the process of verifying the identity of a VPN
user.
<span class="grey">El Mghazli, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Customer Management Functional Description</span>
This section provides a high-level example of an architecture for the
L3VPN management framework, with regard to the SML layer. The goal
is to map the customer management functions described in <a href="#section-2.2">Section 2.2</a>
to architectural yet functional blocks, and to describe the
communication with the other L3VPN management functions.
+ - - - - - - - - - - - - - - - - - - - - - - - - - +
| Service +----------------+ +----------------+ |
| Management | VPN Offering| | VPN Order | |
| | Management | | Management | |
| +----------------+ +----------------+ |
| +----------------+ +----------------+ |
| | VPN | | VPN-based | |
| | Assurance | | SLS Management | |
| +----------------+ +----------------+ |
+ - - - - - - - - - - - - - - - - - - - - - - - - - +
Figure 3: Overview of the Service Management
A customer must have a means to view the topology, operational state,
order status, and other parameters associated with the VPN service
offering that has been subscribed.
All aspects of management information about CE devices and customer
attributes of an L3VPN, manageable by a SP, should be capable of
being configured and maintained by an authenticated, authorized
Service manager.
A customer agent should be able to make dynamic requests for changing
the parameters that describe a service. A customer should be able to
receive responses from the SP network in response to these requests
(modulo the existence of necessary agreements). Communication
between customer Agents and (VPN) service providers will rely upon a
query/response mechanism.
A customer who may not be able to afford the resources to manage its
CPEs should be able to outsource the management of the VPN to the
service provider(s) supporting the network.
<span class="h4"><a class="selflink" id="section-2.3.1" href="#section-2.3.1">2.3.1</a>. L3VPN Service Offering Management</span>
Hopefully, the deployment of a VPN addresses customers' requirements.
Thus, the provider must have the means to advertise the VPN-based
services it offers. Then, the potential customers could select the
service to which they want to subscribe. Additional features could
be associated to this subscription phase, such as the selection of a
<span class="grey">El Mghazli, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
level of quality associated to the delivery of the VPN service, the
level of management of the VPN service performed by the SP, security
options, etc.
<span class="h4"><a class="selflink" id="section-2.3.2" href="#section-2.3.2">2.3.2</a>. L3VPN Service Order Management</span>
This operation aims at managing the requests initiated by the
customers and tracks the status of the achievement of the related
operations. The activation of the orders is conditioned by the
availability of the resources that meet the customer's requirements
with the agreed guarantees (note that it could be a result of a
negotiation phase between the customer and the provider).
<span class="h4"><a class="selflink" id="section-2.3.3" href="#section-2.3.3">2.3.3</a>. L3VPN Service Assurance</span>
The customer may require the means to evaluate the fulfillment of the
contracted SLA with the provider. Thus, the provider should monitor,
measure, and provide statistical information to the customer,
assuming an agreement between both parties on the measurement
methodology, as well as the specification of the corresponding (set
of) quality of service indicators.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Provider Network Manager</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Provider Network Management Definition</span>
When implementing a VPN architecture within a domain (or a set of
domains managed by a single SP), the SP must have a means to view the
physical and logical topology of the VPN premises, the VPN
operational status, the VPN service ordering status, the VPN service
handling, the VPN service activation status, and other aspects
associated with each customer's VPN.
From a provider's perspective, the management of a VPN service
consists mainly of:
o Managing the customers (the term "customer" denotes a role rather
than the end user, thus an SP could be a customer) and end-users
in terms of SLA
o Managing the VPN premises (especially creating, modifying, and
deleting operations, editing the related information to a specific
link, or supervising the AAA [<a href="./rfc2903" title=""Generic AAA Architecture"">RFC2903</a>] [<a href="./rfc2906" title=""AAA Authorization Requirements"">RFC2906</a>] operations)
o Managing the CE-PE links (particularly creating, modifying, and
deleting links, editing the related information to a specific VPN)
<span class="grey">El Mghazli, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
o Managing the service ordering, such as Quality of Service, in
terms of supported classes of service, traffic isolation, etc.
Currently, proprietary methods are often used to manage VPNs. The
additional expense associated with operators having to use multiple,
proprietary, configuration-related management methods (e.g., Command
Line Interface (CLI) languages) to access such systems is not
recommended, because it affects the overall cost of the service
(including the exploitation costs), especially when multiple vendor
technologies (hence multiple expertise) are used to support the VPN
service offering. Therefore, devices should provide standards-based
interfaces. From this perspective, additional requirements on
possible interoperability issues and availability of such
standardized management interfaces need to be investigated.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Network Management Functions</span>
In addition, there can be internal service provided by the SP for
satisfying the customer service requirements. Some of these may
include the notion of dynamic deployment of resources for supporting
the customer-visible services, high availability service for the
customer that may be supported by automatic failure detection, and
automatic switchover to back-up VPNs. These are accomplished by
inter-working with the FCAPS capabilities of the Provider Network
Manager.
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Fault Management</span>
The Provider Network Manager support for fault management includes:
o Fault detection (incidents reports, alarms, failure visualization)
o Fault localization (analysis of alarms reports, diagnostics)
o Corrective actions (data path, routing, resource allocation)
Since L3VPNs rely upon a common network infrastructure, the Provider
Network Manager provides a means to inform the Service Manager about
the VPN customers impacted by a failure in the infrastructure. The
Provider Network Manager should provide pointers to the related
customer configuration information to contribute to the procedures of
fault isolation and the determination of corrective actions.
It is desirable to detect faults caused by configuration errors,
because these may cause VPN service to fail, or not meet other
requirements (e.g., traffic and routing isolation). One approach
<span class="grey">El Mghazli, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
could be a protocol that systematically checks that all constraints
have been taken into account, and that consistency checks have been
enforced during the tunnel configuration process.
A capability that aims at checking IP reachability within a VPN must
be provided for diagnostic purposes.
A capability that aims at checking the configuration of a VPN device
must be provided for diagnostic purposes.
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Configuration Management</span>
The Provider Network Manager must support configuration management
capabilities in order to deploy VPNs. To do so, a Provider Network
Manager must provide configuration management that provisions at
least the following L3VPN components: PE, CE, hierarchical tunnels,
access connections, routing, and QoS, as detailed in this section.
If access to the Internet is provided, then this option must also be
configurable.
Provisioning for adding or removing VPN customer premises should be
as automated as possible.
Finally, the Provider Network Manager must ensure that these devices
and protocols are provisioned consistently and correctly. The
solution should provide a means for checking whether a service order
is correctly provisioned. This would represent one method of
diagnosing configuration errors. Configuration errors can arise due
to a variety of reasons: manual configuration, intruder attacks, and
conflicting service requirements.
Requirements for L3VPN configuration management are:
o The Provider Network Manager must support configuration of VPN
membership.
o The Provider Network Manager should use identifiers for SPs,
L3VPNs, PEs, CEs, hierarchical tunnels, and access connections.
o Tunnels must be configured between PE/CE devices. This requires
coordination of tunnel identifiers, paths, VPNs, and any
associated service information, for example, a QoS service.
o Routing protocols running between PE routers and CE devices must
be configured. For multicast services, multicast routing
protocols must also be configurable.
<span class="grey">El Mghazli, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
o Routing protocols running between PE routers, and between PE and P
routers, must also be configured.
PE-based only:
o Routing protocols running between PE routers and CE devices, if
any, must be configured on a per-VPN basis. The Provider Network
Manager must support configuration of a CE routing protocol for
each access connection.
o The configuration of a PE-based L3VPN should be coordinated with
the configuration of the underlying infrastructure, including
Layer 1 and 2 networks that interconnect components of an L3VPN.
<span class="h5"><a class="selflink" id="section-3.2.2.1" href="#section-3.2.2.1">3.2.2.1</a>. Provisioning Routing-based Configuration Information</span>
If there is an IGP running within the L3VPN, the Provider Network
Manager must provision the related parameters. This includes
metrics, capacity, QoS capability, and restoration parameters.
<span class="h5"><a class="selflink" id="section-3.2.2.2" href="#section-3.2.2.2">3.2.2.2</a>. Provisioning Access-based Configuration Information</span>
The Provider Network Manager must provision network access between
SP-managed PE and CE equipment.
<span class="h5"><a class="selflink" id="section-3.2.2.3" href="#section-3.2.2.3">3.2.2.3</a>. Provisioning Security Services-based Configuration Information</span>
When a security service is requested, the Provider Network Manager
must provision the entities and associated parameters involved in the
provisioning of the service. For example, IPsec services, tunnels,
options, keys, and other parameters should be provisioned at either
the CE and/or the PE routers. In the case of an intrusion detection
service, the filtering and detection rules should be provisioned on a
VPN basis.
<span class="h5"><a class="selflink" id="section-3.2.2.4" href="#section-3.2.2.4">3.2.2.4</a>. Provisioning VPN Resource Parameters</span>
A service provider should have a means to dynamically provision
resources associated with VPN services. For example, in a PE-based
service, the number and size of virtual switching and forwarding
table instances should be provisioned.
If an SP supports a "Dynamic Bandwidth Management" service, then the
dates, times, amounts, and intervals required to perform requested
bandwidth allocation change(s) may be traceable for accounting
purposes.
<span class="grey">El Mghazli, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
If an SP supports a "Dynamic Bandwidth Management" service, then the
provisioning system must be able to make requested changes within the
ranges and bounds specified in the Service Level Specifications.
Examples of QoS parameters are the response time and the probability
of being able to service such a request.
Dynamic VPN resource allocation is crucial to cope with the frequent
requests for changes that are expressed by customers (e.g., sites
joining or leaving a VPN), as well as to achieve scalability. The PE
routers should be able to dynamically assign the VPN resources. This
capability is especially important for dial-up and wireless VPN
services.
<span class="h5"><a class="selflink" id="section-3.2.2.5" href="#section-3.2.2.5">3.2.2.5</a>. Provisioning Value-Added Service Access</span>
An L3VPN service provides controlled access between a set of sites
over a common backbone. However, many service providers also offer a
range of value-added services, for example: Internet access, firewall
services, intrusion detection, IP telephony and IP Centrex,
application hosting, backup, etc. It is outside the scope of this
document to define if and how these different services interact with
the VPN service offering. However, the VPN service should be able to
provide access to these various types of value-added services.
A VPN service should allow the SP to supply the customer with
different kinds of well-known IP services (e.g., DNS, NTP, RADIUS,
etc.) needed for ordinary network operation and management. The
provider should be able to provide IP services to multiple customers
from one or many servers.
A firewall function may be required to restrict access to the L3VPN
from the Internet [<a href="#ref-Y.1311" title=""Network-based IP VPN over MPLS architecture"">Y.1311</a>].
Managed firewalls may be supported on a per-VPN basis, although
multiple VPNs will be supported by the same physical device. In such
cases, managed firewalls should be provided at the access point(s) of
the L3VPN. Such services may be embedded in the CE or PE devices, or
implemented in stand-alone devices.
The Provider Network Manager should allow a customer to outsource the
management of an IP service to the SP providing the VPN or to a third
party.
The management system should support the collection of information
necessary for optimal allocation of IP services in response to
customers' orders, in correlation with provider-provisioned resources
supporting the service.
<span class="grey">El Mghazli, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
If Internet access is provided, reachability to and from the Internet
from/to sites within a VPN should be configurable by an SP.
Configuring routing policy to control distribution of VPN routes
advertised to the Internet may realize this.
<span class="h5"><a class="selflink" id="section-3.2.2.6" href="#section-3.2.2.6">3.2.2.6</a>. Provisioning Hybrid VPN Services</span>
Configuration of interworking L3VPN solutions should also be
supported, taking security and end-to-end QoS issues into account.
<span class="h4"><a class="selflink" id="section-3.2.3" href="#section-3.2.3">3.2.3</a>. Accounting</span>
The Provider Network Manager is responsible for the measurements of
resource utilization.
<span class="h4"><a class="selflink" id="section-3.2.4" href="#section-3.2.4">3.2.4</a>. Performance Management</span>
From the Provider Network Manager's perspective, performance
management includes functions involved in monitoring and collecting
performance data regarding devices, facilities, and services.
The Provider Network Manager must monitor the devices' behavior to
evaluate performance metrics associated with an SLS. Different
measurement techniques may be necessary, depending on the service for
which an SLA is provided. Example services are QoS, security,
multicast, and temporary access. These techniques may be either
intrusive or non-intrusive, depending on the parameters being
monitored.
The Provider Network Manager must also monitor aspects of the VPN
that are not directly associated with an SLS, such as resource
utilization, status of devices and transmission facilities, as well
as control of monitoring resources, such as probes and remote agents
at network access points used by customers and mobile users.
Devices supporting L3VPN whose level of quality is defined by SLSes
should have real-time performance measurements that have indicators
and threshold crossing alerts. Such thresholds should be
configurable.
<span class="h4"><a class="selflink" id="section-3.2.5" href="#section-3.2.5">3.2.5</a>. Security Management</span>
From the Provider Network Manager's perspective, the security
management function of the Provider Network Manager must include
management features to guarantee the preservation of the
confidentiality of customers' traffic and control data, as described
in [<a href="./rfc3809" title=""Generic Requirements for Provider Provisioned Virtual Private Networks (PPVPN)"">RFC3809</a>].
<span class="grey">El Mghazli, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
<span class="h5"><a class="selflink" id="section-3.2.5.1" href="#section-3.2.5.1">3.2.5.1</a>. Authentication Management</span>
The Provider Network Manager must support standard methods for
authenticating users attempting to access VPN services.
Scalability is critical, as the number of nomadic/mobile clients is
increasing rapidly. The authentication scheme implemented for such
deployments must be manageable for large numbers of users and VPN
access points.
Support for strong authentication schemes needs to be supported to
ensure the security of both VPN access point-to-VPN access point (PE
to PE) and client-to-VPN Access point (CE-to-PE) communications.
This is particularly important to prevent VPN access point (VPN AP)
spoofing. VPN Access Point Spoofing is the situation where an
attacker tries to convince a PE or a CE that the attacker is the VPN
Access Point. If an attacker succeeds, then the device will send VPN
traffic to the attacker (who could forward it on to the actual (and
granted) access point after compromising confidentiality and/or
integrity).
In other words, a non-authenticated VPN AP can be spoofed with a man-
in-the-middle attack, because the endpoints rarely verify each other.
A weakly authenticated VPN AP may be subject to such an attack.
However, strongly authenticated VPN APs are not subject to such
attacks, because the man-in-the-middle cannot authenticate as the
real AP, due to the strong authentication algorithms.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. L3VPN Devices</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Information Model</span>
Each L3VPN solution must specify the management information (MIBs,
PIBs, XML schemas, etc.) for network elements involved in L3VPN
services. This is an essential requirement in network provisioning.
The approach should identify any L3VPN-specific information not
contained in a standards track MIB module.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Communication</span>
The deployment of a VPN may span a wide range of network equipment,
potentially including equipment from multiple vendors. Therefore,
the provisioning of a unified network management view of the VPN
shall be simplified by means of standard management interfaces and
models. This will also facilitate customer self-managed (monitored)
network devices or systems.
<span class="grey">El Mghazli, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
In cases where significant configuration is required whenever a new
service is to be provisioned, it is important, for scalability
reasons, that the NMS provides a largely automated mechanism for the
relevant configuration operations. Manual configuration of VPN
services (i.e., new sites, or re-provisioning existing ones) could
lead to scalability issues, and should be avoided. It is thus
important for network operators to maintain visibility of the
complete picture of the VPN through the NMS system. This should be
achieved by using standards track protocols such as SNMP. Use of
proprietary command-line interfaces is not recommended.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Security Considerations</span>
This document describes a framework for L3VPN Operations and
Management. Although this document discusses and addresses some
security concerns in <a href="#section-2.2.5">Section 2.2.5</a> and <a href="#section-3.2.5">Section 3.2.5</a> above, it does
not introduce any new security concerns.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Acknowledgements</span>
Special Thanks to Nathalie Charton, Alban Couturier, Christian
Jacquenet, and Harmen Van Der Linde for their review of the document
and their valuable suggestions.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Normative References</span>
[<a id="ref-RFC2975">RFC2975</a>] Aboba, B., Arkko, J., and D. Harrington, "Introduction to
Accounting Management", <a href="./rfc2975">RFC 2975</a>, October 2000.
[<a id="ref-RFC2401">RFC2401</a>] Kent, S. and R. Atkinson, "Security Architecture for the
Internet Protocol", <a href="./rfc2401">RFC 2401</a>, November 1998.
[<a id="ref-RFC2903">RFC2903</a>] de Laat, C., Gross, G., Gommans, L., Vollbrecht, J., and
D. Spence, "Generic AAA Architecture", <a href="./rfc2903">RFC 2903</a>, August
2000.
[<a id="ref-RFC2906">RFC2906</a>] Farrell, S., Vollbrecht, J., Calhoun, P., Gommans, L.,
Gross, G., de Bruijn, B., de Laat, C., Holdrege, M., and
D. Spence, "AAA Authorization Requirements", <a href="./rfc2906">RFC 2906</a>,
August 2000.
[<a id="ref-RFC3809">RFC3809</a>] Nagarajan, A., "Generic Requirements for Provider
Provisioned Virtual Private Networks (PPVPN)", <a href="./rfc3809">RFC 3809</a>,
June 2004.
[<a id="ref-RFC4026">RFC4026</a>] Andersson, L. and T. Madsen, "Provider Provisioned Virtual
Private Network (VPN) Terminology", <a href="./rfc4026">RFC 4026</a>, March 2005.
<span class="grey">El Mghazli, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
[<a id="ref-Y.1311">Y.1311</a>] ITU, "Network-based IP VPN over MPLS architecture",
ITU-T Y.1311.1, 2001.
Authors' Addresses
Yacine El Mghazli (Editor)
Alcatel
Route de Nozay
Marcoussis 91460
France
EMail: yacine.el_mghazli@alcatel.fr
Thomas D. Nadeau
Cisco Systems, Inc.
300 Beaver Brook Road
Boxborough, MA 01719
Phone: +1-978-936-1470
EMail: tnadeau@cisco.com
Mohamed Boucadair
France Telecom
42, rue des Coutures
Caen 14066
France
EMail: mohamed.boucadair@francetelecom.com
Kwok Ho Chan
Nortel Networks
600 Technology Park Drive
Billerica, MA 01821
USA
EMail: khchan@nortel.com
Arnaud Gonguet
Alcatel
Route de Nozay
Marcoussis 91460
France
EMail: arnaud.gonguet@alcatel.fr
<span class="grey">El Mghazli, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc4176">RFC 4176</a> L3VPN Operations and Management Framework October 2005</span>
Full Copyright Statement
Copyright (C) The Internet Society (2005).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at ietf-
ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
El Mghazli, et al. Informational [Page 21]
</pre>
|