Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

sepp2.client.sepp

SEPP client configuration

Type: null or (list of (submodule))

Default:

[
  {
    n32f = {
      resolve = "127.0.1.252";
      uri = "https://sepp1.localdomain:7777";
    };
    receiver = "sepp1.localdomain";
    resolve = "127.0.1.251";
    uri = "https://sepp1.localdomain:7777";
  }
]

Declared by:

sepp2.client.sepp.*.cacert

Path to CA certificate

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/ca.crt"

Declared by:

sepp2.client.sepp.*.client_cert

Path to client certificate

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2.crt"

Declared by:

sepp2.client.sepp.*.client_private_key

Path to client private key

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2.key"

Declared by:

sepp2.client.sepp.*.n32f

N32 forwarding client configuration

Type: null or (submodule)

Default:

null

Declared by:

sepp2.client.sepp.*.n32f.cacert

Path to CA certificate for N32F

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/ca.crt"

Declared by:

sepp2.client.sepp.*.n32f.client_cert

Path to N32F client certificate

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2-n32f.crt"

Declared by:

sepp2.client.sepp.*.n32f.client_private_key

Path to N32F client private key

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2-n32f.key"

Declared by:

sepp2.client.sepp.*.n32f.resolve

IP address to resolve the N32F URI to

Type: null or string

Default:

null

Example:

"127.0.2.252"

Declared by:

sepp2.client.sepp.*.n32f.uri

N32F URI

Type: string

Example:

"https://sepp2.localdomain:7777"

Declared by:

sepp2.client.sepp.*.receiver

Receiver domain name

Type: string

Example:

"sepp2.localdomain"

Declared by:

sepp2.client.sepp.*.resolve

IP address to resolve the URI to

Type: null or string

Default:

null

Example:

"127.0.2.251"

Declared by:

sepp2.client.sepp.*.uri

SEPP URI

Type: string

Example:

"https://sepp2.localdomain:7777"

Declared by:

sepp2.default.tls.client.cacert

Path to CA certificate file

Type: null or string

Default:

"@sysconfdir@/open5gs/tls/ca.crt"

Example:

"open5gs-unstable/etc/open5gs/tls/ca.crt"

Declared by:

sepp2.default.tls.client.client_cert

Path to client certificate file

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2.crt"

Declared by:

sepp2.default.tls.client.client_private_key

Path to client private key file

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2.key"

Declared by:

sepp2.default.tls.client.client_sslkeylogfile

Path to client SSL key log file for Wireshark debugging

Type: null or string

Default:

null

Example:

"open5gs-unstable/var/log/open5gs/tls/sepp2-client-sslkeylog.log"

Declared by:

sepp2.default.tls.server.cert

Path to server certificate file

Type: null or string

Default:

"@sysconfdir@/open5gs/tls/sepp2.crt"

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2.crt"

Declared by:

sepp2.default.tls.server.private_key

Path to server private key file

Type: null or string

Default:

"@sysconfdir@/open5gs/tls/sepp2.key"

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2.key"

Declared by:

sepp2.default.tls.server.sslkeylogfile

Path to SSL key log file for Wireshark debugging

Type: null or string

Default:

null

Example:

"open5gs-unstable/var/log/open5gs/tls/sepp2-server-sslkeylog.log"

Declared by:

sepp2.default.tls.server.verify_client

Enable client certificate verification

Type: null or boolean

Default:

null

Example:

true

Declared by:

sepp2.default.tls.server.verify_client_cacert

Path to CA certificate for client verification

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/ca.crt"

Declared by:

sepp2.generated

Path to generated sepp2.yaml

Type: absolute path

Declared by:

sepp2.global.max.peer

Maximum number of peer connections.

Type: null or (positive integer, meaning >0)

Default:

null

Example:

64

Declared by:

sepp2.global.max.ue

Maximum number of UE connections. Can be increased depending on memory size.

Type: positive integer, meaning >0

Default:

1024

Example:

2048

Declared by:

sepp2.info.port.http

SEPP HTTP port number. Present if SEPP uses non-default HTTP port.

Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)

Default:

null

Example:

7777

Declared by:

sepp2.info.port.https

SEPP HTTPS port number. Present if SEPP uses non-default HTTPS port.

Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)

Default:

null

Example:

8888

Declared by:

sepp2.logger.file.path

Path to the SEPP2 log file.

Type: string

Default:

"/var/log/open5gs/sepp2.log"

Example:

"/var/log/open5gs/sepp2.log"

Declared by:

sepp2.logger.level

Log level: fatal, error, warn, info (default), debug, or trace.

Type: null or one of “fatal”, “error”, “warn”, “info”, “debug”, “trace”

Default:

null

Example:

"info"

Declared by:

sepp2.n32.server

N32 server configuration

Type: list of (submodule)

Default:

[
  {
    address = "127.0.2.251";
    n32f = {
      address = "127.0.2.252";
      port = 7777;
      scheme = "https";
    };
    port = 7777;
    scheme = "https";
    sender = "sepp2.localdomain";
  }
]

Declared by:

sepp2.n32.server.*.address

N32 server address

Type: null or string

Default:

null

Example:

"127.0.2.251"

Declared by:

sepp2.n32.server.*.cert

Path to N32 server certificate

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2.crt"

Declared by:

sepp2.n32.server.*.n32f

N32 forwarding configuration

Type: null or (submodule)

Default:

null

Declared by:

sepp2.n32.server.*.n32f.address

N32 forwarding address

Type: string

Example:

"127.0.2.252"

Declared by:

sepp2.n32.server.*.n32f.cert

Path to N32F certificate

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2-n32f.crt"

Declared by:

sepp2.n32.server.*.n32f.port

N32 forwarding port

Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)

Default:

null

Example:

7777

Declared by:

sepp2.n32.server.*.n32f.private_key

Path to N32F private key

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2-n32f.key"

Declared by:

sepp2.n32.server.*.n32f.scheme

URI scheme for N32 forwarding

Type: null or one of “http”, “https”

Default:

null

Example:

"https"

Declared by:

sepp2.n32.server.*.n32f.verify_client

Enable N32F client certificate verification

Type: null or boolean

Default:

null

Example:

true

Declared by:

sepp2.n32.server.*.n32f.verify_client_cacert

Path to CA certificate for N32F client verification

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/ca.crt"

Declared by:

sepp2.n32.server.*.port

N32 server port

Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)

Default:

null

Example:

7777

Declared by:

sepp2.n32.server.*.private_key

Path to N32 server private key

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/sepp2.key"

Declared by:

sepp2.n32.server.*.scheme

URI scheme for N32 server

Type: null or one of “http”, “https”

Default:

null

Example:

"https"

Declared by:

sepp2.n32.server.*.sender

Sender domain name

Type: string

Example:

"sepp2.localdomain"

Declared by:

sepp2.n32.server.*.verify_client

Enable N32 client certificate verification

Type: null or boolean

Default:

null

Example:

true

Declared by:

sepp2.n32.server.*.verify_client_cacert

Path to CA certificate for N32 client verification

Type: null or string

Default:

null

Example:

"open5gs-unstable/etc/open5gs/tls/ca.crt"

Declared by:

sepp2.sbi.client.nrf

NRF client configuration

Type: null or (list of (submodule))

Default:

null

Declared by:

sepp2.sbi.client.nrf.*.uri

NRF URI

Type: string

Example:

"http://127.0.0.10:7777"

Declared by:

sepp2.sbi.client.scp

SCP client configuration

Type: null or (list of (submodule))

Default:

[
  {
    uri = "http://127.0.0.200:7777";
  }
]

Declared by:

sepp2.sbi.client.scp.*.uri

SCP URI

Type: string

Example:

"http://127.0.0.200:7777"

Declared by:

sepp2.sbi.server

SBI server configuration

Type: list of (submodule)

Default:

[
  {
    address = "127.0.2.250";
    port = 7777;
  }
]

Declared by:

sepp2.sbi.server.*.address

SBI server address

Type: string

Example:

"127.0.2.250"

Declared by:

sepp2.sbi.server.*.port

SBI server port

Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)

Example:

7777

Declared by: