SIM 引脚重试左 AT 命令

发布于 2024-09-03 01:45:13 字数 133 浏览 4 评论 0原文

有谁知道 AT 命令可以让我查询在 SIM 卡上重试多少次输入 PIN 码才会将我锁定?

我试过 AT+CPIN 吗?但这并没有告诉我在需要 PUK 之前可以输入 PIN 码多少次。 普通手机是如何做到的呢?

提前致谢。

Does anyone know an AT command that will allow me to query how many retries of entering PIN on a SIM card before it locks me out?

I've tried AT+CPIN? but that does not give me how many times I can enter the PIN before I need a PUK.
How do normal phones do it?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夜清冷一曲。 2024-09-10 01:45:13

最新的 3GPP 规范将您想要的命令列为 +CPINR

The latest 3GPP spec lists the command you want as +CPINR

意中人 2024-09-10 01:45:13

它不是 ETSI 规范的一部分,因此取决于您使用的设备。

它通常被称为“Pin Counter”,可以通过 AT^SPIC 读取,但最好的选择是在设备 AT 命令文档中查找“Pin Counter”。

It's not part of the ETSI spec so it depends on the equipment your using.

It's most often called the "Pin Counter" and can be read via AT^SPIC however your best bet is looking for "Pin Counter" in the devices AT command documentation.

仅冇旳回忆 2024-09-10 01:45:13

您可以使用 >=3G 的通用方法,这应该独立于调制解调器制造商工作,因为它直接与 SIM 卡 (UICC) 通信。
它从 UICC 读取 PIN 重试计数器

AT+CSIM=10,"0020000100"

AT+CSIM 命令向 SIM 卡发送一个(原始)命令。
SIM 卡的响应有点神秘,其中之一是:

  • +CSIM: 4,"63CX" X 是剩余重试的十六进制值
    pin1(范围 0-A=0-10 剩余重试)
  • +CSIM: 4,"6A88" pin1 未初始化/可用
  • +CSIM: 4,"6983" pin1
    被阻止。

You could use a generic approach for >=3G, this should work independent of the modem manufacturer, as it directly communicates with the sim card (UICC).
It reads the PIN retry counter from the UICC

AT+CSIM=10,"0020000100"

The AT+CSIM command sends a (raw) command to the sim card.
The sim card responds a bit cryptic with one of:

  • +CSIM: 4,"63CX" X is the hex-value of the remaining retries for
    pin1 (range 0-A=0-10 retries remaining)
  • +CSIM: 4,"6A88" pin1 is not initialized/available
  • +CSIM: 4,"6983" pin1
    is blocked.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文