Configuration Guide for Dynamic Policy Control (Rx)
Ericsson Service-Aware Policy Controller

Contents

1Configuration and Provisioning Overview
1.1Other Conventions

2

Configuration Prerequisites

3

Configuration
3.1Configure Gx PCEF Nodes
3.1.1Configure Gx PCEF Nodes using IP-Domain-Id
3.2Provision Dynamic Services
3.3Provision AF Signalling Path Profiles
3.4Configure Classification of Dynamic Services
3.5Configure Dynamic Service Authorization
3.6Configure Dynamic Service Qualification
3.6.1Configure Static Qualification for Dynamic Services
3.6.2Configure Dynamic Qualification for Dynamic Services
3.7Configure Bearer QoS Control for Dynamic Services
3.8Configure Access and Charging Policies Based on Dynamic Service Establishment
3.9Configure Event Triggers

4

Configuration Examples for Use Cases
4.1Prioritized Video Delivery
4.2Multimedia Telephony over LTE
4.3Notification of Signalling Path Status

5

Appendix A. Dynamic Policy Types

6

Appendix B. Policy Tags
6.1Dynamic Policy Control Tags

7

Appendix C. Tags for Output Attributes Used in Policies
7.1QoS and Charging Selection Tags

1   Configuration and Provisioning Overview

Next figure, shows the main parts related to configuration and provisioning in the SAPC.

Figure 1   Configuration and Provisioning Overview

The purpose of this document is to provide guidelines and examples to configure Dynamic Policy Control and Rx interface related data in the SAPC node by providing some configuration examples.

This configuration is an extension of the Configuration Guide for Access and Charging Control (Gx).

This document does not intend to be an exhaustive guide for configuring all possibilities related to Dynamic Policy Control in the SAPC.

The complete parameter list and details of all configured options of the SAPC are included in separate documents, refer to Managed Object Model (MOM) and Provisioning REST API.

For general concepts about provisioning of policies, see the Configuration Guide for Subscription and Policies.

This document focuses on the data applicable to the Rx interface and the Dynamic Policy Control function.

Examples in this document cover the case of data configured in the SAPC internal repository. If an external repository is used, refer to Database Access.

1.1   Other Conventions

This document refers to some configuration and provisioning data.

To clarify which detailed data is managed by COM or by the REST API, this document uses the following conventions:

2   Configuration Prerequisites

Before configuring the SAPC in an operational network, make sure that:

3   Configuration

To configure the dynamic policy control functionality in the SAPC, perform the following tasks:

  1. Configure the network protocols: the node data to be able to send and receive messages over the network interfaces such as Gx and Rx.
  2. Set provisioning data:
  3. Configure the data applicable to dynamic policy control:
    1. Configure the rules and policies to identify the services that are dynamically activated through the Rx interface. This procedure is called dynamic service classification.
    2. Configure the conditions to authorize or deny subscriber access to the dynamic services. This procedure is called dynamic service authorization.
    3. Configure the QoS information and the charging parameters associated with the dynamic services. This procedure is called dynamic service qualification.
    4. Configure bearer QoS control for dynamic services (if necessary).
    5. Configure Access and Charging Policies based on Dynamic Service Establishment (if necessary).
  4. In case of integration with an external database, reconfigure the corresponding Entity Data Source, refer to Database Access.
    Note:  
    All objects and attributes in this document refer to the default configuration provided at installation time in the SAPC: Entity Data Source pointing to data in the SAPC internal database.

Note:  
The Origin-Host, Origin-Realm, IP address and diameter port values are set during the SAPC installation procedure. Diameter data related to capabilities exchange (application and vendor identifiers) are provided at installation time, so that no manual procedure is needed.

3.1   Configure Gx PCEF Nodes

The procedure to configure the set of policy controls that the SAPC applies for a PCEF node is detailed in Configuration Guide for Access and Charging Control (Gx). The dynamic policy control function refers to the following controls:

To enable support for dynamic PCC Rule in the GGSN/PDN-GW, set to true dynamicServiceSupport attribute in the corresponding DiameterNode MOC.

The following example shows the configuration of a GGSN/PDN-GW node to support dynamic PCC Rules and perform the policy controls IP-CAN session Access Control, Service Access Control, Bearer QoS Control and Service Charging Control.

Example 1   PCEF Configuration

<edit-config>
    <target>
        <running/>
    </target>
    <config>
    <ManagedElement xmlns="urn:com:ericsson:ecim:ComTop">
    <managedElementId>1</managedElementId>
    <dnPrefix>dc=ManagedElement</dnPrefix>
    <networkManagedElementId>1</networkManagedElementId>
    <userLabel>Managed Element</userLabel>
        <PolicyControlFunction xmlns="urn:com:ericsson:ecim:sapcmom">
        <policyControlFunctionId>1</policyControlFunctionId>
            <Network xmlns="urn:com:ericsson:ecim:networkmom">
            <networkId>1</networkId>
                <DiameterNodes>
                <diameterNodesId>1</diameterNodesId>
                    <DiameterNode xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0" nc:operation="merge">
                    <diameterNodeId>ggsnHostname.operator.com</diameterNodeId>
                        <controls>IP_CAN_SESSION_ACCESS</controls>
                        <controls>SERVICE_ACCESS_PCEF_TOD</controls>
                        <controls>BEARER_QOS</controls>
			<controls>SERVICE_CHARGING</controls>
                        <dynamicServiceSupport>true</dynamicServiceSupport>
                    </DiameterNode>		
                </DiameterNodes>        
            </Network>
        </PolicyControlFunction>
    </ManagedElement>
    </config>
</edit-config>
 

3.1.1   Configure Gx PCEF Nodes using IP-Domain-Id

In scenarios where IP-Domain-Id AVP is received in Rx AAR requests, to configure the mapping between IP-Domain-Id and the corresponding PCEF Origin-Host AVP, do configure the ipDomainId attribute of DiameterNode object with the IP-Domain-Id AVP value.

Example 2 shows how IP-Domain-Id ggsn01 is configured for the PCEF with Origin-Host ggsnNodeHostname.nodeHostRealm.com.

Example 2   PCEF configuration with ipDomainId.

<edit-config>
    <target>
        <running/>
    </target>
    <config>
    <ManagedElement xmlns="urn:com:ericsson:ecim:ComTop">
    <managedElementId>1</managedElementId>
        <PolicyControlFunction xmlns="urn:com:ericsson:ecim:sapcmom">
        <policyControlFunctionId>1</policyControlFunctionId>
            <Network xmlns="urn:com:ericsson:ecim:networkmom">
            <networkId>1</networkId>
                <DiameterNodes>
                <diameterNodesId>1</diameterNodesId>
                    <DiameterNode xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0" nc:operation="merge">
                    <diameterNodeId>ggsnNodeHostname.nodeHostRealm.com</diameterNodeId>
                        <controls>IP_CAN_SESSION_ACCESS</controls>                                      
                        <controls>BEARER_QOS</controls>
                        <controls>SERVICE_ACCESS_PCEF_TOD</controls>
                        <controls>SERVICE_CHARGING</controls>
                        <controls>SUBSCRIBER_CHARGING</controls>
                        <controls>USAGE_REPORTING</controls>
                        <dynamicServiceSupport>true</dynamicServiceSupport>
                        <ipDomainId>ggsn01</ipDomainId>
                    </DiameterNode>             
                </DiameterNodes>        
            </Network>
        </PolicyControlFunction>
    </ManagedElement>
    </config>
</edit-config>

3.2   Provision Dynamic Services

In addition to the static and preconfigured services handled in the Gx interface, the SAPC supports the following:

To provision a dynamic service (as for static or preconfigured ones), use the content URI in the Provisioning REST API.

Static or preconfigured services are activated through the Gx interface, while dynamic services are activated by procedures over the Rx reference point. However, static and preconfigured services may be also authorized and installed depending on whether a given dynamic service is running or not. Refer to Configuration Guide for Access and Charging Control (Gx) provisioning static and preconfigured services.

Next example shows the provisioning of dynamic services:

Example 3   Provisioning of Dynamic Services

PUT /contents/IMS_IPTV
{
	"contentName" : "IMS_IPTV"
}

PUT /contents/MMTel_audio
{
	"contentName" : "MMTel_audio"
}

PUT /contents/MMTel_video
{
	"contentName" : "MMTel_video"
}

PUT /contents/Video_Conferencing
{
	"contentName" : "Video_Conferencing"
}

The previous example shows the provisioning of the following dynamic services: Video_streaming, MMTel_video, MMTel_audio, IMS_IPTV and Video_Conferencing. The content identifier is used as a reference during service classification and service qualification.

3.3   Provision AF Signalling Path Profiles

To provision an AF signalling path profile, use the af-signalling-paths URI in the provisioning REST API. An AF signalling path profile consists of a profileId and a contentName.

The following example provisions the APN ims and default-service AF signalling path profiles. The AF signalling services are AfSignallingIms for the ims and AfSignallingService for the default-service, which is the default service for use when no other value can be used.

Example 4   Provisioning of AF Signalling Path Profiles

PUT /profiles/af-signalling-paths/ims
{
   "profileId" : "ims",
   "contentName" : "AfSignallingIms"
}

PUT /profiles/af-signalling-paths/default-service
{
   "profileId" : "default-service",
   "contentName" : "AfSignallingService"
}

3.4   Configure Classification of Dynamic Services

The SAPC needs to determine a service identifier corresponding to the dynamic service activated by AF events. Mentioned service identifier is relevant to perform afterward Service Authorization (Section 3.4) or Service Qualification (Section 3.5). This section details how to configure the conditions (Dynamic Service Classification policies) to determine such service identifier.

The input information to the classification is the information received from the AF over the Rx interface: the AF application identifier and media pattern (media type, flow direction, and source/destination ports) of the Real Time Protocol (RTP) media components (if present). The output result is the identifier of the service. The association between dynamic services and the information provided by the AF is flexible, and requires a detailed knowledge about the AF-Application-Id or media component data that trigger the activation of dynamic services in the SAPC.

The following video shows how to configure the SAPC for dynamic service classification.

Figure 2  

To provision policies for dynamic service classification, use the values summarized in the following figure:

Table 1    Summary to Configure Classification of Dynamic Services

Policy Type

Policy Locator

Output Attributes

Comments

Context

Resource

Subject

DynamicService Classification

service-classification

application

-

contentId

Only policies, no qaulification


Gx - Rx binding


Algorithms:


single match, multiple match


Conditions:


- AfData

The result of the service classification is only successful if the SAPC matches all the media components provided in the AA-Request command with the configured rules and policies.

Next example shows a global table for dynamic service classification, whose columns contain the input and output information elements mentioned in the video. The rows in the table are evaluated in order, so that the SAPC stops evaluating them when the first one is fulfilled.

Table 2    Dynamic Service Classification

Application Identifier

Media Pattern

Service Id

"urn:urn-7:3gpp-service.ims.icsi.mmtel"

One audio stream with optionally one video stream

MMTel_audio


MMTel_video

"urn:urn-7:3gpp-service.ims.icsi.iptv"

One media stream on port 554

IMS_IPTV

VisualCon

1 audio media stream and several video streams

Video_Conferencing

There are two ways to combine the rules defined in a policy, depending on the value set in the ruleCombiningAlgorithm of the policy:

Figure 3   Example configuration to classify the MMTel audio and video service

Figure 4   Example configuration to classify the Video_Conferencing

Following example shows the configuration corresponding to the services and conditions described in Table 2:

Example 5   Configuration of Classification policies for dynamic Services

PUT /rules/classifyAudio
{
	"condition" : "(AfData.appId == \"urn:urn-7:3gpp-service.ims.icsi.mmtel\")&&(AfData.media.type == \"audio\")",
	"outputAttributes" : 
	[
		{
			"attrName" : "service",
			"attrValue" : "\"MMTel_audio\"",
			"result" : "permit"
		}
	],
	"ruleName" : "classifyAudio"
}

PUT /rules/classifyVideo
{
	"condition" : "(AfData.appId == \"urn:urn-7:3gpp-service.ims.icsi.mmtel\")&&(AfData.media.type == \"video\")",
	"outputAttributes" : 
	[
		{
			"attrName" : "service",
			"attrValue" : "\"MMTel_video\"",
			"result" : "permit"
		}
	],
	"ruleName" : "classifyVideo"
}

PUT /policies/pClassifyMMTel
{
	"policyName" : "pClassifyMMTel",
	"ruleCombiningAlgorithm" : "single-match",
	"rules" : [ "classifyAudio", "classifyVideo" ]
}

PUT /rules/classifyIPTV
{
	"condition" : "(AfData.appId == \"urn:urn-7:3gpp-service.ims.icsi.iptv\")&&(AfData.media.port == \"554\")&&(AfData.media.type == \"media\")",
	"outputAttributes" : 
	[
		{
			"attrName" : "service",
			"attrValue" : "\"IMS_IPTV\"",
			"result" : "permit"
		}
	],
	"ruleName" : "classifyIPTV"
}

PUT /policies/pClassifyIPTV
{
	"policyName" : "pClassifyIPTV",
	"ruleCombiningAlgorithm" : "single-match",
	"rules" : [ "classifyIPTV" ]
}

PUT /rules/classifyVideoConferencing
{
	"condition" : "(AfData.appId == \"VisualCon\")",
	"outputAttributes" : 
	[
		{
			"attrName" : "service",
			"attrValue" : "\"Video_Conferencing\"",
			"result" : "permit"
		}
	],
	"ruleName" : "classifyVideoConferencing"
}

PUT /policies/pClassifyVideoConferencing
{
	"policyName" : "pClassifyVideoConferencing",
	"ruleCombiningAlgorithm" : "multiple-match",
	"rules" : [ "classifyVideoConferencing" ]
}

PUT /locators/resources/application/contexts/service-classification
{
	"policies" : [ "pClassifyMMTel", "pClassifyIPTV", "pClassifyVideoConferencing" ]
}

This configuration example results in the following classification for dynamic Services depending on the data received in the Rx requests:

Once the dynamic service is classified, a Charging Profile or QoS Profile, or both can be associated by using the dynamic service qualification process.

Quotes included in the Application Identifier

If the AF sends as Application Identifier a string including quotes, the tag AfData.appId in the condition should use the expression substr (details in Configuration Guide for Subscription and Policies).

If the Application Identifier is this: +g.3gpp.icsi-ref=\"urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel\", the condition to use in the rule should be this:

Example 6   How to use the AfData.appId and expression substr

     PUT /rules/r_MobileTvAuthorize
       {
         	"condition" : "(substr(AfData.appId,18,41) == \"urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel\")",
         	"ruleName" : "r_MobileTvAuthorize"
       }

3.5   Configure Dynamic Service Authorization

The SAPC offers the possibility to configure whether dynamic services are authorized for a given subscriber or subscriber group, under certain conditions (policies).

Authorization of dynamic services follows the same process as for preconfigured services. For details on how to configure authorization policies, refer to Configuration Guide for Access and Charging Control (Gx)

There are two ways to manage the authorization of dynamic services, by configuring a list of restricted services, or by dynamic policies and conditions.

Dynamic services are by default authorized and do not need to be set within subscribedContents in the group or subscriber profile, to be authorized. Dynamic services can be restricted if set in deniedContents.

Authorization policies for dynamic services can also be used, if restrictions are wanted to be applied (for example not authorizing a particular dynamic service when roaming). This allows the SAPC to use information received from the access network as input for the service authorization decision, such as the Radio Access Type and Subscriber Location Information.

To use policies for dynamic service authorization, create the needed policies using:

Where the <contentName> is the given name of the service to be authorized or not.

Table 3    Summary to Configure Dynamic Service Authorization

Policy Type

Policy Locator

Output Attributes

Comments

Context

Resource

Subject

Access Control (Dynamic Service Authorization


Access

access

<contentId>

<subscriberId>


<dataplanId>

-

Type II = Mixing policies and qualification


Conditions:


Subscriber Data


Access Data


ToD

In this example, the SAPC authorizes 'VoLTE' dynamic service if the Called Station ID is "ims", IMEI-SV Type Allocation Code is '99000235' and the country code is different from '072' (Botswana)

Example 7   Configuration of "VoLTE" Dynamic Service Authorization based on the model and APN given

PUT /rules/RUL_TerminalTypeIsValid
{
	"condition" : "(AccessData.userEquipmentInfo.model==99000235) && (AccessData.bearer.accessPoint == \"ims\") && (AccessData.subscriber.locationInfo.countryCode != 072)",
	"ruleName" : "RUL_TerminalTypeIsValid"
}

PUT /policies/POL_TerminalTypeIsValid
{
	"policyName" : "POL_TerminalTypeIsValid",
	"ruleCombiningAlgorithm" : "permit-overrides",
	"rules" : [ "RUL_TerminalTypeIsValid" ]
}

PUT /locators/resources/VoLTE/contexts/access
{
	"policies" : [ "POL_TerminalTypeIsValid" ]
}

3.6   Configure Dynamic Service Qualification

Dynamic services can be qualified with QoS or Charging data, or both, either statically or using policy conditions. The SAPC first evaluates the service qualification policies, but if there are not applicable policies, or the policies are not fulfilled, the SAPC obtains the QoS and Charging profile statically assigned to the dynamic service. In both cases, configure the QoS Profile identifier, Charging Profile identifier and related attributes by using the /profiles/content-qos or /profiles/content-charging URI in the Provisioning REST API, or both.

If the QoS profile associated with dynamic services or media components is not complete because some of the attributes in /profiles/content-qos are not present, the SAPC calculates the value of the omitted QoS parameters from the service information received over the Rx interface by using the 3GPP standard procedure defined in TS 29.213, Table 6.3.1. The usual configuration for dynamic services where bandwidth data is received from the AF, is not configuring the bit rate in the QoS Profiles.

3.6.1   Configure Static Qualification for Dynamic Services

The association of a static QoS or charging profile (or both) with a dynamic service follows the same process as for preconfigured services.

The following example shows the allocation of static QoS and charging profiles to a dynamic service:

Example 8   Static QoS and Charging assigned to dynamic service

PUT /contents/MMTel_video
{
	"contentName" : "MMTel_video",
	"staticQualification" : 
	{
		"contentChargingProfileId" : "Char_MMTel_video",
		"contentQosProfileId" : "QoS_MMTel_video"
	}
}

PUT /profiles/content-qos/QoS_MMTel_video
{
	"arpPriorityLevel" : 7,
	"profileId" : "QoS_MMTel_video",
	"qci" : 2
}

PUT /profiles/content-charging/Char_MMTel_video
{
	"chargingServiceId" : 301,
	"profileId" : "Char_MMTel_video",
	"ratingGroup" : 301,
	"reportingLevel" : 1
}

 

3.6.2   Configure Dynamic Qualification for Dynamic Services

Using policies, it is possible to use dynamic conditions to assign QoS and Charging Profiles to dynamic services.

To use policies for dynamic service qualification, create the needed policies using:

Where the <contentName> is the given name of the service to be qualified and <context type> is either charging or qos.

In addition, to define the conditions that need to be fulfilled to apply a given QoS or Charging Profile, define qualification rules and qualification policies by using the following tables:

Table 4    Summary to Configure Dynamic Service Qualification

Policy Type

Policy Locator

Output Attributes

Comments

Context

Resource

Subject

Bearer QoS Control (Dynamic Service Qualification)


QoS for Service

qos

<contentId>

<subscriberId>


<dataplanId>

permit


qos


ServiceQosProfile


["qosProfileName>"]

Mixing policies and qualification


Conditions:


media components (AfData


Access Data


ToD

(Dynamic Service Qualification)


Service Charging

charging

<contentId>

<subscriberId>


<dataplanId>

permit


charging


ServiceChargingProfile


["chargingProfileName>"]

Mixing policies and qualification


Conditions:


media components (AfData


Access Data


ToD

The next example presents how to assign a QoS Profile depending on policy conditions for a dynamic service "MMTel_audio":

Example 9   Configuration of QoS Profile for dynamic Services

PUT /profiles/content-qos/QosProfile_Default
{
        "arpPci" : false,
        "arpPriorityLevel" : 5,
        "arpPvi" : true,
        "gbrDownlink" : 2000,
        "gbrUplink" : 500,
        "mbrDownlink" : 2500,
        "mbrUplink" : 1000,
        "profileId" : "QosProfile_Default"
}

PUT /rules/qualifyMMTel_audio
{
	"condition" : "(AccessData.bearer.accessPoint == \"internet.network2.operatorX\")",
	"outputAttributes" : 
	[
		{
			"attrName" : "qos",
			"attrValue" : "ServiceQosProfile[\"QosProfile_Default\"]",
			"result" : "permit"
		}

	],
	"ruleName" : "qualifyMMTel_audio"
}

PUT /policies/pQualifyMMTel_audio
{
	"policyName" : "pQualifyMMTel_audio",
	"ruleCombiningAlgorithm" : "permit-overrides",
	"rules" : [ "qualifyMMTel_audio" ]
}

PUT /locators/resources/MMTel_audio/contexts/qos
{
	"policies" : [ "pQualifyMMTel_audio" ]
}

This example configures a QoS Profile named “QosProfile_Default” for the dynamic service "MMTel_audio" when the APN is internet.network2.operatorX.

The next example shows how to assign a Charging data Profile depending on conditions.

Example 10   Configuration of Charging Data for dynamic Services

PUT /profiles/content-charging/ChargingType1
{
	"meteringMethod" : 1,
	"offlineEnabled" : true,
	"onlineEnabled" : false,
	"profileId" : "ChargingType1",
	"ratingGroup" : 4,
	"reportingLevel" : 1
}

PUT /rules/qualifyVoLTE
{
	"condition" : "(AccessData.subscriber.locationInfo.countryCode == \"214\" && AccessData.subscriber.locationInfo.networkCode == \"07\")",
	"outputAttributes" : 
	[
		{
			"attrName" : "charging",
			"attrValue" : "ServiceChargingProfile[\"ChargingType1\"]",
			"result" : "permit"
		}
	],
	"ruleName" : "qualifyVoLTE"
}

PUT /policies/pQualifyVoLTE
{
	"policyName" : "pQualifyVoLTE",
	"ruleCombiningAlgorithm" : "permit-overrides",
	"rules" : [ "qualifyVoLTE" ]
}

PUT /locators/resources/VoLTE/contexts/charging
{
	"policies" : [ "pQualifyVoLTE" ]
}

The charging profile “ChargingType1” is configured for the dynamic service “VoLTE” when the user location information indicates MCC=214 and MNC=07.

Note:  
It is possible to qualify a particular media component (for example to assign a determined charging profile for the video component). This can be done including in the qualification rule condition tags related to the Rx received media components. This is an interesting alternative, in case other dynamic conditions are already used in Dynamic Qualification policies.

An example of rule condition: (expressionX && AfData.media.type == “video”).


3.7   Configure Bearer QoS Control for Dynamic Services

In scenarios where dynamic services do not require a dedicated bearer, but are installed on the default IP-CAN session bearer, it may be required to configure the QoS of the default bearer in relation to the establishment of dynamic services on the IP-CAN session.

Configuration of Bearer QoS Control is described in Configuration Guide for Bearer QoS and Bandwidth Management. In addition, the following specific QoS selection tags are defined in relation to dynamic services:

Table 5    Summary to Configure QoS for Bearer

Policy Type

Policy Locator

Output Attributes

Comments

Context

Resource

Subject

Bearer QoS Control


QoS for Bearer

qos

ip-can-session

<subscriberId>


<dataplanId>

permit


max-qos


BearerQosProfile


["qosProfileName>"] or qos_prof_expression


permit


min-qos


BearerQosProfile


["qosProfileName>"] or qos_prof_expression

Mixing policies and qualification


Special functions:


-maxQosProfile


-maxDynQosProfile


-sumQosProfile


-sumDynQosProfile

3.8   Configure Access and Charging Policies Based on Dynamic Service Establishment

The SAPC can be configured to reevaluate the access and charging policy decisions taken for the IP-CAN session based on the establishment of dynamic services. This is useful when the AF does not provide information about the IP flows required to deliver the service (the media component information is omitted). In this case, for example, a pre-configured PCC Rule can be defined in the SAPC, associated with the activation of a dynamic service, that initiates the establishment of a dedicated bearer.

Configuration of access and charging policy control is described in Configuration Guide for Access and Charging Control (Gx). In addition, the following policy tag is defined in relation to dynamic services:

3.9   Configure Event Triggers

The following event triggers value can be set in network deployments using Rx interface, if the AF requires to be notified of such events:

Note:  
The SAPC automatically subscribes to the ACCESS_NETWORK_INFO_REPORT event trigger when at least one AF associated to the IP-CAN session sends an AAR requiring NetLoc information and this event trigger is not configured yet. The subscription will last until the IP-CAN session is terminated.

For details on how to configure event triggers, refer to Configuration Guide for Access and Charging Control (Gx).

4   Configuration Examples for Use Cases

4.1   Prioritized Video Delivery

In this scenario, the operator offers a prioritized video delivery service for a group of premium subscribers. A DPI node (acting as AF) detects the start of a streaming service and reports this event to the SAPC over the Rx interface. Then the SAPC evaluates the applicable policies for the IP-CAN session, and upgrades the QoS of the default bearer.

The following configuration steps are needed:

Example 11   Define rule and policy for video streaming

PUT /rules/ClassifyVideoStreaming
{
	"condition" : "(AfData.appId == \"Video_streaming\")",
	"outputAttributes" : 
	[
		{
			"attrName" : "service",
			"attrValue" : "\"Video_streaming\"",
			"result" : "permit"
		}
	],
	"ruleName" : "ClassifyVideoStreaming"
}

PUT /policies/pClassifyVideoStreaming
{
	"policyName" : "pClassifyVideoStreaming",
	"ruleCombiningAlgorithm" : "single-match",
	"rules" : [ "ClassifyVideoStreaming" ]
}

PUT /locators/resources/application/contexts/service-classification
{
	"policies" : [ "pClassifyVideoStreaming" ]
}

Example 12   Define Bearer QoS "QosPremium"

PUT /profiles/ip-can-session-qos/QoSPremium
{
	"arpPriorityLevel" : 9,
	"mbrDownlink" : 10000,
	"mbrUplink" : 1000,
	"profileId" : "QoSPremium",
	"qci" : 7
}

Example 13   Define group "Premium", rule and policy for bearer Qos "QosPremium"

PUT /rules/rbearerPremium
{
	"condition" : "((AccessData.subscriber.service[\"Video_streaming\"].isRunning))",
	"outputAttributes" : 
	[
		{
			"attrName" : "max-qos",
			"attrValue" : "BearerQosProfile[\"QoSPremium\"]",
			"result" : "permit"
		},
		{
			"attrName" : "min-qos",
			"attrValue" : "BearerQosProfile[\"QoSPremium\"]",
			"result" : "permit"
		}
	],
	"ruleName" : "rbearerPremium"
}

PUT /policies/pbearerQoS
{
	"policyName" : "pbearerQoS",
	"ruleCombiningAlgorithm" : "permit-overrides",
	"rules" : [ "rbearerPremium" ]
}

PUT /dataplans/Premium/locators/resources/ip-can-session/contexts/qos
{
	"policies" : [ "pbearerQoS" ]
}

PUT /dataplans/Premium
{
	"dataplanName" : "Premium"
}


4.2   Multimedia Telephony over LTE

This section shows a configuration example that follows the standard requirements for IMS conversational voice or video, or both services over LTE access. The conversational video service is an extra complement to a conversational voice service in IMS, that can be added or removed by the end user during an ongoing session or can be established together with voice media at initial call establishment. Ericsson recommends to provision two different dynamic services (VoLTE and ViLTE) that are activated according to the media component information received from the AF.

Next a graphical sketch that explains the needed configuration:

Figure 5   VoLTE/ViLTE scenario

Example 14   Define Charging profile services "Char_VoLTE" and "Char_ViLTE"

PUT /profiles/content-charging/Char_ViLTE
{
	"chargingServiceId" : 301,
	"profileId" : "Char_ViLTE",
	"ratingGroup" : 301,
	"reportingLevel" : 1
}

PUT /profiles/content-charging/Char_VoLTE
{
	"chargingServiceId" : 302,
	"profileId" : "Char_VoLTE",
	"ratingGroup" : 302,
	"reportingLevel" : 1
}


Example 15   Define Qos Profile Services "QoS_VoLTE" and "QoS_ViLTE"

PUT /profiles/content-qos/QoS_ViLTE
{
	"arpPriorityLevel" : 7,
	"profileId" : "QoS_ViLTE",
	"qci" : 2
}

PUT /profiles/content-qos/QoS_VoLTE
{
	"arpPriorityLevel" : 6,
	"profileId" : "QoS_VoLTE",
	"qci" : 1
}


Example 16   Define Service "service_VoLTE" and "service_ViLTE"

PUT /contents/service_ViLTE
{
	"contentName" : "service_ViLTE",
	"staticQualification" : 
	{
		"contentChargingProfileId" : "Char_ViLTE",
		"contentQosProfileId" : "QoS_ViLTE"
	}
}

PUT /contents/service_VoLTE
{
	"contentName" : "service_VoLTE",
	"staticQualification" : 
	{
		"contentChargingProfileId" : "Char_VoLTE",
		"contentQosProfileId" : "QoS_VoLTE"
	}
}

Example 17   Define rules and policies for "service_VoLTE" and "service_ViLTE"

PUT /rules/rule_ViLTE
{
	"condition" : "((AfData.appId ==\"%3A3gpp-service.ims.icsi.mmtel\") &&(AfData.media.type==\"video\"))",
	"outputAttributes" : 
	[
		
		{
			"attrName" : "service",
			"attrValue" : "\"service_ViLTE\"",
			"result" : "permit"
		}
	],
	"ruleName" : "rule_ViLTE"
}

PUT /policies/policy_ViLTE
{
	"policyName" : "policy_ViLTE",
	"ruleCombiningAlgorithm" : "single-match",
	"rules" : [ "rule_ViLTE" ]
}

PUT /rules/rule_VoLTE
{
	"condition" : "((AfData.appId ==\"%3A3gpp-service.ims.icsi.mmtel\") &&(AfData.media.type==\"audio\"))",
	"outputAttributes" : 
	[
		
		{
			"attrName" : "service",
			"attrValue" : "\"service_VoLTE\"",
			"result" : "permit"
		}
	],
	"ruleName" : "rule_VoLTE"
}

PUT /policies/policy_VoLTE
{
	"policyName" : "policy_VoLTE",
	"ruleCombiningAlgorithm" : "single-match",
	"rules" : [ "rule_VoLTE" ]
}

PUT /policies/policy_VoLTE_ViLTE
{
	"policyName" : "policy_VoLTE_ViLTE",
	"ruleCombiningAlgorithm" : "single-match",
	"rules" : [ "rule_VoLTE", "rule_ViLTE" ]
}

PUT /locators/resources/application/contexts/service-classification
{
	"policies" : [ "policy_VoLTE", "policy_ViLTE", "policy_VoLTE_ViLTE" ]
}

4.3   Notification of Signalling Path Status

In this scenario, the operator provisions a static or preconfigured service used for notification of signalling path status. When accepting the AF's subscription, the SAPC identifies the service provisioned for the AF signalling. The SAPC can notify the AF of the release of signalling path when receiving from the PCEF the resource allocation failure for the AF signalling service. The SAPC can also evaluate applicable policies for the AF signalling service based on its subscription status.

The following configuration steps are needed:

Example 18   Provisioning an AF signalling service

PUT /contents/AfSignalService
{
	"contentName" : "AfSignalService",
	"flows" : 
	[
		{
			"destIpAddr" : "any",
			"destPort" : "",
			"direction" : "dl",
			"flowName" : "1",
			"protocol" : "ip",
			"sourceIpAddr" : "10.1.1.51",
			"sourcePort" : "5060"
		},
		{
			"destIpAddr" : "10.1.1.51",
			"destPort" : "5060",
			"direction" : "ul",
			"flowName" : "2",
			"protocol" : "ip",
			"sourceIpAddr" : "any",
			"sourcePort" : ""
		}
	],
	"pccRuleId" : 4001,
	"pccRuleType" : 2
}

PUT /dataplans/Gold
{
	"dataplanName" : "Gold",
	"subscribedContents" : 
	[
		
		{
			"contentName" : "AfSignalService",
			"redirect" : false
		}
	]
}

PUT /subscribers/346000000202
{
	"subscriberId" : "346000000202",
	"dataplans" : 
	[
		{
			"dataplanName" : "Gold"
		}
	]
}

PUT /profiles/af-signalling-paths/default-service
{
        "profileId" : "default-service",
        "contentName" : "AfSignalService"

}

Example 19   Provisioning the QoS Profiles for the AF Signalling Service

PUT /profiles/content-qos/QosProfile_no_subscription
{
	"arpPriorityLevel" : 4,
	"mbrDownlink" : 101,
	"mbrUplink" : 101,
	"profileId" : "QosProfile_no_subscription",
	"qci" : 9
}

PUT /profiles/content-qos/QosProfile_after_subscription
{
	"arpPriorityLevel" : 4,
	"mbrDownlink" : 31,
	"mbrUplink" : 31,
	"profileId" : "QosProfile_after_subscription",
	"qci" : 5
}

Example 20   Configuration for QoS Modification After Subscription to AF Signalling

PUT /rules/rQoS_after_subscription_AF_Signalling
{
	"condition" : "(AccessData.subscriber.service[\"AfSignalService\"].isAfSignallingSubscribed)",
	"outputAttributes" : 
	[
		{
			"attrName" : "qos",
			"attrValue" : "ServiceQosProfile[\"QosProfile_after_subscription\"]",
			"result" : "permit"
		}
	],
	"ruleName" : "rQoS_after_subscription_AF_Signalling"
}

PUT /rules/rQoS_no_subscription_AF_Signalling
{
	"condition" : "(not(AccessData.subscriber.service[\"AfSignalService\"].isAfSignallingSubscribed))",
	"outputAttributes" : 
	[
		{
			"attrName" : "qos",
			"attrValue" : "ServiceQosProfile[\"QosProfile_no_subscription\"]",
			"result" : "permit"
		}
	],
	"ruleName" : "rQoS_no_subscription_AF_Signalling"
}

PUT /policies/pQoS_AfSignalling
{
	"policyName" : "pQoS_AfSignalling",
	"ruleCombiningAlgorithm" : "permit-overrides",
	"rules" : [ "rQoS_after_subscription_AF_Signalling", "rQoS_no_subscription_AF_Signalling" ]
}

PUT /dataplans/Gold/locators/resources/AfSignalService/contexts/qos
{
	"policies" : [ "pQoS_AfSignalling" ]
}

The QoS of the AfSignalService changes from QosProfile_no_subscription to QosProfile_after_subscription when the AfSignalService is subscribed to AF signalling path (the AccessData.subscriber.service["AfSignalService"].isAfSignallingSubscribed tag evaluates to true).

5   Appendix A. Dynamic Policy Types

Next figures show the different policy types applicable to dynamic policy control that can be used.

Table 6   

Policy Type

Policy Locator

Output Attributes

Comments

Context

Resource

Subject

Dynamic Service Classification

service-classification

application

-

service


<contenId>

Only policies, no qualification


Gx - Rx binding


Algorithms:


single match, multiple match


Conditions:


- AfData

Access Control (Dynamic Service Authorization)


Access

access

<contentId

<subscriberId>


<dataplanId>

-

Mixing policies and qualification


Conditions:


Access Data


Subscriber


ToD

Bearer QoS Control


(Dynamic Service Qualification)


Access

qos

<contentId

<subscriberId>


<dataplanId>

permit


qos


ServiceQosProfile


["<qosProfileName>"]

Mixing policies and qualification


Conditions:


media components (AfData)


Access Data


Subscriber


ToD

(Dynamic Service Qualification)


Service Charging

charging

<contentId

<subscriberId>


<dataplanId>

permit


charging


ServiceChargingProfile


["<chargingProfileName>"]

Mixing policies and qualification


Conditions:


media components (AfData)


Access Data


Subscriber


ToD

Bearer QoS Control


QoS for Bearer

qos

ip-can-session

<subscriberId>


<dataplanId>

permit


max-qos


BearerQosProfile


["qosProfileName>"] or qos_prof_expression


permit


min-qos


BearerQosProfile


["qosProfileName>"] or qos_prof_expression

Mixing policies and qualification


Conditions:


media components (AfData)


Access Data


Subscriber


ToD

6   Appendix B. Policy Tags

6.1   Dynamic Policy Control Tags

The following tags regarding the content of an Rx request, can be used in the classification or qualification of dynamic services, that means when the SAPC receives Rx traffic messages from an AF.

They can be also used in any policy condition evaluated during Gx interactions for dynamic services related policies (that is, policies where the resource is a dynamic service).

Note:  
The SAPC does not evaluate these policy tags in any other IP-CAN session related policy types (such as IP-CAN Access Control or Subscriber Charging).

For the policy tags obtained from AVPs received in Rx messages (see Comments column), their values are kept during the session lifetime, unless new values of the AVPs are received in subsequent AAR messages. If the AVPs have defined a default value, the default value applies when these AVPs are not present in the AARs messages, instead of the values stored in the session.

Table 7    Application (Rx data) Tags

Tag

Return Type

Possible Values

Comments


AfData.
appId

String

any

The application Identifier. Its value can be returned at media component level if present.


If not received in any media component, but it is received at command level, the value at command level is returned.


If not received neither at media component nor command level, the value returned is ""(empty string).

AfData.
media.
type

String

"audio",


"video",


"data",


"application",


"control",


"text",


"message",


"other"

Media component type


(1)

AfData.
media.
typeAsInt

Integer

0: audio


1: video


2: data


3: application


4: control


5: text


6: message


7: other

Media component type expressed as a number.


(1)

AfData.
media.
flowDirection

String

"uplink",


"downlink",


"bidirectional",


""

The direction of the RTP flow (media subcomponent) of the media component. If no RTP flow is included inside the media component the value equals "".


(1)

AfData.
media.
flowUsage

String

"NO_INFORMATION",


"AF_SIGNALLING",


"RTCP",


""

The flow usage of the media subcomponents. If different media subcomponents within a media component contain a different value in the Flow-Usage AVP, the value equals "" (empty string).


Default value: “NO_INFORMATION”.


(1)

AfData.
media.port

Integer

any

The server-side port in the RTP flow from the media component.


(1)

AfData.
media.
reservationPriority

Integer

0-15

The reservation priority. Its value is returned at media component level if present.


If not received in any media component, but it is received at command level, the value at command level is returned.


Default value: 0 (lowest priority level).


(1)

AfData.mpsIdentifier

String

any

The service name for multimedia priority service.


If not received, the value returned is "" (empty string).

AfData.
requestType

Integer

0: initial


1: update


2: pcscf_restoration

Type of request that the AF sends to the SAPC.


If not received, 0 (initial) is assumed for the first AAR received in every Rx session, and 1 (update) for the rest.

AfData.
serviceStatus

Integer

0: final service information


1: preliminary service information

Status of the service information that the AF is providing to the SAPC.


Default value: 0 (final service information).

(1)  This tag iterates on each media component of the Rx message


The following tags can be used in any policy condition evaluated during Gx interactions according to the characteristics of the dynamic services or media components that are active in the IP-CAN session.

Table 8    Policy Tags Related to Dynamic Services

Tag

Return Type

Possible Values

Comments


AccessData.
subscriber.
service["serviceName"].
isRunning

Boolean

true


false


Indicates if the dynamic service is running on the Gx IP-CAN session.


The service name has to correspond to the name used in service classification.

AccessData.subscriber.service["serviceName"].media.type["mediaType"]isRunning

Boolean

true


false

Indicates if the dynamic service and media are running on the Gx IP-CAN session.


The service name has to correspond to the name used in service classification.


The media type can be one of the following values:


  • "audio",

  • "video",

  • "data",

  • "application",

  • "control",

  • "text",

  • "message",

  • "other"

AccessData.subscriber.service["serviceName"].media.type["mediaType"].reservationPriority

Integer

0-15

Indicates the reservation priority of the dynamic service and media component running on the Gx IP-CAN session.(1)


The service name has to correspond to the name used in service classification.


The media type can be any of the supported values in AfData.media.type.


The value returned corresponds to the value received from the AF at media component level, if present.


If not received at media component level, but it is received at command level, the value at command level is returned.


If not received at media component or command level, 0 (lowest priority level) is assumed.


(2)

AccessData.subscriber.service["serviceName"].reservationPriority

Integer

0-15

Indicates the reservation priority of the dynamic service running on the Gx IP-CAN session. (1)(3)


The service name has to correspond to the name used in service classification.


The value returned corresponds to the value received from the AF at media component level, if present.


If not received at media component level, but it is received at command level, the value at command level is returned.


If not received at media component or command level, 0 (lowest priority level) is assumed.

(1)  If the service is not running, rule evaluation results in false.

(2)  If a dynamic service has several media components of the same type (for example two video streams), the SAPC returns the same reservation priority value for all media components of the same media type.

(3)  If there are more than one instances of "serviceName" running on the IP-CAN session, the SAPC returns the maximum reservation priority values of all instances. This enables the use case of VoLTE priority call on-hold (call waiting).


The following tag can be used in any policy condition evaluated during IP-CAN session reauthorization according to the subscription status of the static or preconfigured service provisioned for AF signalling path.

Table 9    Policy Tag Related to Notification of Signalling Path Status

Tag

Return Type

Possible Values

Comments

AccessData.subscriber.service["serviceName"].isAfSignallingSubscribed

Boolean

true


false

Indicates if the specified (“serviceName”) service is subscribed to AF signalling path.


Evaluates to true when the service is set in the AF signalling profile and subscribed to notification of AF signalling path status.

The following policy tags related to dynamic information about mobile access (IP-CAN session) can also be used in Rx interactions:

Table 10    Incoming Message Tags

Tag

Return Type

Possible Values

Comments


AccessData.
bearer.
accessPoint

String

any

The Called Station ID. Address where the user is connected to. Network ID + Operator ID

AccessData.
bearer.
accessType

Integer

 

Radio Access Technology used:


  • 0: WLAN

  • 1000: UTRAN

  • 1001: GERAN

  • 1002: GAN

  • 1003: HSPA_EVOLUTION

  • 1004: E-UTRAN

  • 1005: E-UTRAN-NB-IoT

  • 2000: CDMA2000_1X

  • 2001: HRPD

  • 2002: UMB

  • 2003: EHRPD

AccessData.
bearer.
eventTriggers

Multivalued Integer

any

Received EventTriggers that causes the CCR update. Use this tag together with contains function: contains (AccessData.bearer.eventTriggers, "<value>")

AccessData.
bearer.
ipCanType

Integer

0-7

Connectivity access type technology used:


  • 0: 3GPP-GPRS

  • 1: DOCSIS

  • 2: xDSL

  • 3: WiMAX

  • 4: 3GPP2

  • 5: 3GPP-EPS

  • 6: Non 3GPP-EPS

  • 7: FBA

AccessData.
bearer.
isAnTrusted

Boolean

true


false

For non-3GPP access networks, indicates if the access is handled as trusted (true) or untrusted (false).

AccessData.
bearer.
controlMode

Integer

0-2

Indicates the applied bearer control mode:


  • 0: UE_ONLY

  • 2: UE_NW

AccessData.
subscriber.
chargingChars

Integer

any

Charging Characteristics received from the gateway.(1)

AccessData.
subscriber.
id

String

any

Subscriber identifier:


  • Content of the first Subscription-Id AVP received when subsIdType is not configured

  • AccessData.subscriber.imsi if subsIdType is set to IMSI, or

  • AccessData.subscriber.msisdn if subsIdType is set to MSISDN.

AccessData.
subscriber.
imsi

String

any

Subscriber identifier in international IMSI format.

AccessData.
subscriber.
msisdn

String

any

Subscriber identifier in international E.164 format (MSISDN).

AccessData.
subscriber.
ueIpAddress

String

any

Subscriber IPv4 address in dot notation format.

AccessData.
subscriber.
ueIpv6Prefix

String

any

Subscriber IPv6 Prefix, in colon notation, preferred form, without the length part.

AccessData.
subscriber.
ueIpAddressType

Integer

0-2

Type of UE allocated address:


  • 0: IPv4

  • 1: IPv6

  • 2: Dual (IPv4 and IPv6)

AccessData.
subscriber.
locationInfo.
sgsnAddress

IP Address

any

SGSN IP Address

AccessData.
subscriber.
locationInfo.
anGwIpAddress.v4

IP Address

any

SGW/AGW IPv4 address.

AccessData.
subscriber.
locationInfo.
anGwIpAddress.v6

IP Address

any

SGW/AGW IPv6 address.

AccessData.
userEquipmentInfo.
model

Integer

any

IMEI-SV Type Allocation Code

AccessData.
userEquipmentInfo.
serialNr

Integer

any

IMEI-SV Serial Number

AccessData.
userEquipmentInfo.
version

Integer

any

IMEI-SV Software Version Number

Apns.epsBearerIds

Multivalued String

any

Indicates APNs for EPS bearer priority services.

Apns.imsIds

Multivalued String

any

Indicates APNs for IMS priority services.

(1)  Ericsson recommends not using this value if charging characteristics for the subscriber has been provisioned.


Table 11    Subscriber Location Policy Tags

Tag

Return Type

Possible Values

Comments


AccessData.
subscriber.
locationInfo.
cellIdentity

Integer

0-65535 for GPRS,
0-268435455 for EPS

Cell identity where the user currently is registered.


For 3GPP-GPRS and 3GPP-EPS access types, the cell identity is obtained from the 3GPP-User-Location-Info AVP.


For non-LTE, the cell identity is obtained when geographic location type is Cell Global Identification (CGI).

For LTE scenarios, E-UTRAN Cell Identifier (ECI) is obtained when geographic location type is ECGI.

AccessData.
subscriber.
locationInfo.
countryCode

Integer

any

Mobile Country Code (MCC) part of the SGSN PLMN Id.


It is obtained from 3GPP-SGSN-MCC-MNC AVP.

AccessData.
subscriber.
locationInfo.
locationAreaCode

Integer

0-65535

Location area code where the user currently is registered, within the geographic location.


For 3GPP-GPRS and 3GPP-EPS, the location area code is obtained from 3GPP-User-Location-Info AVP, or if this AVP is not available, the location area code is obtained from RAI AVP.

AccessData.
subscriber.
locationInfo.
networkCode

Integer

any

Mobile Network Code part of the SGSN PLMN Id.


It is obtained from 3GPP-SGSN-MCC-MNC AVP.

AccessData.
subscriber.
locationInfo.
presenceReportingArea
[“presenceAreaName”].
isInArea

Boolean

true


false

PRA status of the UE received from the access network:


  • true: INSIDE the Area

  • false: OUTSIDE of the Area


It is obtained from the Presence-Reporting-Area-Status AVP.

AccessData.
subscriber.
locationInfo.
routingAreaCode

Integer

0-65535

For non-LTE scenarios, the routing area code is the code of routing area where the user currently is registered, within the Routing Area Identification (RAI) geographical location type.


The routing area code is obtained from 3GPP-User-Location-Info AVP, or if this AVP is not available, obtained from RAI AVP.

For LTE scenarios, the Tracking Area Code (TAC) obtained is from 3GPP-User-Location-Info AVP, when geographic location type is TAI.

AccessData.
subscriber.
locationInfo.
routingAreaIdentity

String

any

RAI of the SGSN where the UE is registered.


The RAI is obtained from RAI AVP. The value is encoded as a UTF-8 string on either 11 (if the MNC contains two digits) or 12 (if the MNC contains three digits) octets

AccessData.
subscriber.
locationInfo.
serviceAreaCode

Integer

0-65535

Service area code where the user is registered, within the Service Area Identification (SAI) geographical location type.


For 3GPP-GPRS and 3GPP-EPS, it is obtained from 3GPP-User-Location-Info AVP.

AccessData.
subscriber.
locationInfo.
timezone

Integer

Steps of 15 minutes


[-48, +56]

Offset between universal time and local time in steps of 15 minutes (900 seconds) of where the UE currently resides.

The following tags related to dynamic information about QoS can be used in the condition formula of rules:

Table 12    QoS related Policy Tags

Tag

Return Type

Possible Values

Comments

AccessData. requestedQos. classIdentifier

Integer

1–254

Requested QoS Class Identifier for the IP-CAN bearer.

AccessData. requestedQos. priorityLevel

Integer

1–15

Requested ARP priority level for the IP-CAN bearer.

Note:  
AccessData.requestedQos.xx tags refer to the values sent by the PCEF in CCR messages (QoS-Information AVP or Default-EPS-Bearer-QoS AVP, depending on the access type).

When the SAPC performs Bearer QoS Control, it is not recommended to use AccessData.requestedQos.xx tags, as such requested qos can be modified in upgrades or downgrades.


7   Appendix C. Tags for Output Attributes Used in Policies

7.1   QoS and Charging Selection Tags

The following set of tags may be used in an output attribute element to specify the method to select a QoS profile and Charging profile.

Table 13    QoS and charging Selection Tags

Tag

Return Type

Format

Comments

ServiceChargingProfile

Charging Profile

ServiceChargingProfile ["ChargingProfile Name"]

A Charging profile name previously configured

ServiceQosProfile

QoS Profile

ServiceQosProfile ["QosProfile Name"]

A QoS profile name previously configured.

maxDynQosProfile

QoS Profile

maxDynQosProfile

Maximum of the QoS Profiles associated to the dynamic PCC rules.

sumDynQosProfile

QoS Profile

sumDynQosProfile

Aggregation of QoS profiles of the dynamic PCC rules).