Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If you want to use 5G with HTTP/2 agents, you require a 5G profile configuration. You can select the profile that you configure in the HTTP/2 Server agent configuration.

...

Advanced Parameters Tab

...

In this tab, you can add settings in a JSON configuration in accordance with 6.2.6.2.3 "Type: NFProfile" as defined the specification 3GPP TS 29.510, https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=3345. See the example below:

Examples for Advanced Parameters

...

Parameterized Json Configuration of Advanced Parameter

Info

Example - Parameterized Json configuration of advanced parameter

Code Block
{
	"nfProfileChangesSupportInd": true,
	"nfProfileChangesInd": true,
	"allowedPlmns": [
                           {
		"mcc":"262-01",
		"mnc":"302-720"
                           }
	],
	"allowedNfTypes": [
		"PCF",
		"CHF"
	],
	"allowedNfDomains": [
		"www.domainname.com"
	]
}

...

Code Block
languagejson
{
    "nfProfileChangesSupportInd": true,
    "nfProfileChangesInd": true,
    "allowedPlmns": [
                           {
        "mcc":"${5g.mcc}",
        "mnc":"${5g.mnc}"
                           }
    ],
    "allowedNfTypes": [
        "PCF",
        "CHF"
    ],
    "allowedNfDomains": [
        "${5g.nfDomains}"
    ]
}

This example would result in three dynamic fields being generated and configurable per workflow:

5g - mcc

5g - mnc

5g - nfDomains

Anchor
custom_spec
custom_spec
Custom Specification Enabled

...