IpStatistics

SCPI Commands

SENSe:EVDO:SIGNaling<Instance>:RXQuality:IPSTatistics:STATe
SENSe:EVDO:SIGNaling<Instance>:RXQuality:IPSTatistics:RESet
SENSe:EVDO:SIGNaling<Instance>:RXQuality:IPSTatistics:RACK
SENSe:EVDO:SIGNaling<Instance>:RXQuality:IPSTatistics:NAK
SENSe:EVDO:SIGNaling<Instance>:RXQuality:IPSTatistics:SUMMary
SENSe:EVDO:SIGNaling<Instance>:RXQuality:IPSTatistics:PPPTotal
SENSe:EVDO:SIGNaling<Instance>:RXQuality:IPSTatistics:DRATe
class IpStatistics[source]

IpStatistics commands group definition. 7 total commands, 0 Sub-groups, 7 group commands

class DrateStruct[source]

Structure for reading output parameters. Fields:

  • Rx: float: Data rate in receive direction Range: 0 kbit/s to 0.999999E+6 kbit/s

  • Tx: float: Data rate in transmit direction Range: 0 kbit/s to 0.999999E+6 kbit/s

class NakStruct[source]

Structure for reading output parameters. Fields:

  • Rx: int: Number of packets received in the last update period Range: 0 to 0.999999E+6

  • Rx_Total: int: Total number of packets received since the beginning of the PPP connection Range: 0 to 0.999999E+6

  • Tx: int: Number of packets transmitted in the last update period Range: 0 to 0.999999E+6

  • Tx_Total: int: Total number of packets transmitted Range: 0 to 0.999999E+6

class PppTotalStruct[source]

Structure for reading output parameters. Fields:

  • Rx: int: Total size of data received Range: 0 KB to 0.999999E+6 KB

  • Tx: int: Total size of data transmitted Range: 0 KB to 0.999999E+6 KB

class RackStruct[source]

Structure for reading output parameters. Fields:

  • Rx: int: Number of packets received in the last update period Range: 0 to 0.999999E+6

  • Rx_Total: int: Total number of packets received since the beginning of the PPP connection Range: 0 to 0.999999E+6

  • Tx: int: Number of packets transmitted in the last update period Range: 0 to 0.999999E+6

  • Tx_Total: int: Total number of packets transmitted Range: 0 to 0.999999E+6

class ResetStruct[source]

Structure for reading output parameters. Fields:

  • Rx: int: Number of packets received in the last update period Range: 0 to 0.999999E+6

  • Rx_Total: int: Total number of packets received since the beginning of the PPP connection Range: 0 to 0.999999E+6

  • Tx: int: Number of packets transmitted in the last update period Range: 0 to 0.999999E+6

  • Tx_Total: int: Total number of packets transmitted Range: 0 to 0.999999E+6

class SummaryStruct[source]

Structure for reading output parameters. Fields:

  • Rx: int: Number of packets received in the last update period Range: 0 to 0.999999E+6

  • Rx_Total: int: Total number of packets received since the beginning of the PPP connection Range: 0 to 0.999999E+6

  • Tx: int: Number of packets transmitted in the last update period Range: 0 to 0.999999E+6

  • Tx_Total: int: Total number of packets transmitted Range: 0 to 0.999999E+6

get_drate()DrateStruct[source]
# SCPI: SENSe:EVDO:SIGNaling<instance>:RXQuality:IPSTatistics:DRATe
value: DrateStruct = driver.sense.rxQuality.ipStatistics.get_drate()

Current received data rate in kbit/s, averaged over the update period.

return

structure: for return value, see the help for DrateStruct structure arguments.

get_nak()NakStruct[source]
# SCPI: SENSe:EVDO:SIGNaling<instance>:RXQuality:IPSTatistics:NAK
value: NakStruct = driver.sense.rxQuality.ipStatistics.get_nak()

Number of NAK control packets, requesting the retransmission of one or more data octets.

return

structure: for return value, see the help for NakStruct structure arguments.

get_ppp_total()PppTotalStruct[source]
# SCPI: SENSe:EVDO:SIGNaling<instance>:RXQuality:IPSTatistics:PPPTotal
value: PppTotalStruct = driver.sense.rxQuality.ipStatistics.get_ppp_total()

Total number of bytes the R&S CMW received (Rx) and sent (Tx) since the beginning of the PPP connection.

return

structure: for return value, see the help for PppTotalStruct structure arguments.

get_rack()RackStruct[source]
# SCPI: SENSe:EVDO:SIGNaling<instance>:RXQuality:IPSTatistics:RACK
value: RackStruct = driver.sense.rxQuality.ipStatistics.get_rack()

Number of packets associated with RLP reset ACK messages, which are sent between AT and AN to complete the RLP reset procedure.

return

structure: for return value, see the help for RackStruct structure arguments.

get_reset()ResetStruct[source]
# SCPI: SENSe:EVDO:SIGNaling<instance>:RXQuality:IPSTatistics:RESet
value: ResetStruct = driver.sense.rxQuality.ipStatistics.get_reset()

Number of packets associated with RLP reset messages, which are sent between AT and AN to reset RLP.

return

structure: for return value, see the help for ResetStruct structure arguments.

get_state()str[source]
# SCPI: SENSe:EVDO:SIGNaling<instance>:RXQuality:IPSTatistics:STATe
value: str = driver.sense.rxQuality.ipStatistics.get_state()

Status of the RLP & IP statistics

return

status: See table below

get_summary()SummaryStruct[source]
# SCPI: SENSe:EVDO:SIGNaling<instance>:RXQuality:IPSTatistics:SUMMary
value: SummaryStruct = driver.sense.rxQuality.ipStatistics.get_summary()

Total number of packets from the measured RLP messages. As the list contains all packet types, this value is equal to the total number of RLP packets received.

return

structure: for return value, see the help for SummaryStruct structure arguments.