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

info
Note

Note!

Values set in the Advanced Parameters tab will override those set in the General tab.

Example -

Json configuration of advanced parameter

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

Example -

Code Block
PUT Your code in here

This field supports parameterization using ${} syntax. For more information on parameterization see Appendix 1 - Profiles.

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
{
    "nfProfileChangesSupportInd": true,
    "nfProfileChangesInd": true,
    "allowedPlmns": [
                           {
        "mcc":"${5g.mcc}",
        "mnc":"${5g.mnc}"
                           }
    ],
    "allowedNfTypes": [
        "PCF",
        "CHF"
    ],
    "allowedNfDomains": [
        "${5g.nfDomains}"
    ]
}

Anchor
custom_spec
custom_spec
Custom Specification Enabled

...