UeIdentity

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:UEIDentity:FILTer
CONFigure:WCDMa:SIGNaling<Instance>:CELL:UEIDentity:IMSI
CONFigure:WCDMa:SIGNaling<Instance>:CELL:UEIDentity:USE
class UeIdentity[source]

UeIdentity commands group definition. 3 total commands, 0 Sub-groups, 3 group commands

get_filter_py()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:UEIDentity:FILTer
value: bool = driver.configure.cell.ueIdentity.get_filter_py()

If enabled, the R&S CMW allows only the default IMSI to execute location update and attach.

return

enable: OFF | ON

get_imsi()str[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:UEIDentity:IMSI
value: str = driver.configure.cell.ueIdentity.get_imsi()

Specifies the default IMSI that the instrument can use before the UE is registered.

return

value: String value, containing 15 digits.

get_use()RsCmwWcdmaSig.enums.Enable[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:UEIDentity:USE
value: enums.Enable = driver.configure.cell.ueIdentity.get_use()

Specifies whether the default IMSI is used. The default IMSI is defined via method RsCmwWcdmaSig.Configure.Cell. UeIdentity.imsi. You can only enable the default IMSI but not disable it. Instead it is disabled automatically when registration is performed with a different IMSI.

return

enable: ON

set_filter_py(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:UEIDentity:FILTer
driver.configure.cell.ueIdentity.set_filter_py(enable = False)

If enabled, the R&S CMW allows only the default IMSI to execute location update and attach.

param enable

OFF | ON

set_imsi(value: str)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:UEIDentity:IMSI
driver.configure.cell.ueIdentity.set_imsi(value = '1')

Specifies the default IMSI that the instrument can use before the UE is registered.

param value

String value, containing 15 digits.

set_use(enable: RsCmwWcdmaSig.enums.Enable)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:UEIDentity:USE
driver.configure.cell.ueIdentity.set_use(enable = enums.Enable.ON)

Specifies whether the default IMSI is used. The default IMSI is defined via method RsCmwWcdmaSig.Configure.Cell. UeIdentity.imsi. You can only enable the default IMSI but not disable it. Instead it is disabled automatically when registration is performed with a different IMSI.

param enable

ON