Eps

SCPI Commands :

CREate:SIGNaling:TOPology:EPS
CREate:SIGNaling:TOPology:EPS:BEARer
class EpsCls[source]

Eps commands group definition. 2 total commands, 0 Subgroups, 2 group commands

class BearerStruct[source]

Structure for setting input parameters. Contains optional set arguments. Fields:

  • Linked_Bearer_Id: int: ID of the default bearer to which the dedicated bearer is linked. To get a list of all default bearer IDs, see [CMDLINKRESOLVED Catalog.Signaling.Lte.Ue.Dbearer#get_ CMDLINKRESOLVED].

  • Qci: enums.Qi: Optional setting parameter. Value of the quality of service class identifier. Values defined in 3GPP TS 23.203, table 6.1.7. The GUI shows the designation of each value.

  • Rlc_Mode: enums.RlcMode: Optional setting parameter. ACK: acknowledged UACK: unacknowledged

  • Max_Dl_Bitrate: int: Optional setting parameter. Maximum DL bit rate allowed in the network.

  • Max_Ul_Bitrate: int: Optional setting parameter. Maximum UL bit rate allowed in the network.

  • Gtd_Dl_Bitrate: int: Optional setting parameter. DL bit rate guaranteed by the network for the bearer.

  • Gtd_Ul_Bitrate: int: Optional setting parameter. UL bit rate guaranteed by the network for the bearer.

  • Local_Port_Lower: int: Optional setting parameter. The minimum of the local port range in the traffic flow template.

  • Local_Port_Upper: int: Optional setting parameter. The maximum of the local port range in the traffic flow template.

  • Remote_Port_Lower: int: Optional setting parameter. The minimum of the remote port range in the traffic flow template.

  • Remote_Port_Upper: int: Optional setting parameter. The maximum of the remote port range in the traffic flow template.

set(name_ta: str, name_plmn: str, ta_code: int = None, time_3412: float = None) None[source]
# SCPI: CREate:SIGNaling:TOPology:EPS
driver.create.signaling.topology.eps.set(name_ta = 'abc', name_plmn = 'abc', ta_code = 1, time_3412 = 1.0)

Creates an EPS tracking area in a selected PLMN and optionally defines tracking area settings. Assign a unique name to each named object within the test environment. Assigning an already used name can be rejected with an error message, even if the other object has not the same type as the new object.

param name_ta:

Assigns a name to the tracking area. The string is used in other commands to select this tracking area.

param name_plmn:

PLMN containing the tracking area.

param ta_code:

Tracking area code (TAC) .

param time_3412:

No effect - for future use.

set_bearer(value: BearerStruct) None[source]
# SCPI: CREate:SIGNaling:TOPology:EPS:BEARer
structure = driver.create.signaling.topology.eps.BearerStruct()
structure.Linked_Bearer_Id: int = 1
structure.Qci: enums.Qi = enums.Qi.Q1
structure.Rlc_Mode: enums.RlcMode = enums.RlcMode.ACK
structure.Max_Dl_Bitrate: int = 1
structure.Max_Ul_Bitrate: int = 1
structure.Gtd_Dl_Bitrate: int = 1
structure.Gtd_Ul_Bitrate: int = 1
structure.Local_Port_Lower: int = 1
structure.Local_Port_Upper: int = 1
structure.Remote_Port_Lower: int = 1
structure.Remote_Port_Upper: int = 1
driver.create.signaling.topology.eps.set_bearer(value = structure)

Establishes a dedicated bearer.

param value:

see the help for BearerStruct structure arguments.