如何禁用 Yubikey 的 OTP?

如何禁用 Yubikey 的 OTP?

我正在使用 Yubikey,它变得很疯狂:由于接触不良,它每 3 秒钟就会在我的界面上输入类似这样的代码:

cccjgjgkhcbbirdrfdnlnghhfgrtnnlgedjlftrdafe

我怎样才能禁用此行为?

答案1

我这样做了:

  1. 安装 yubikey-manager:

    sudo apt install yubikey-manager
    
  2. 将 Yubikey 插入 USB 端口

  3. 添加 yubikey

  4. 最后:

    $ ykman config usb --disable otp  # for Yubikey version > 4
    Disable OTP.
    Configure USB interface? [y/N]: y
    

    我有一个 Yubikey 4,对于这个版本,上述命令不起作用:

    Error: Configuring applications is not supported on this YubiKey. Use the `mode` command to configure USB interfaces.
    

    做就是了:

    $ ykman mode FIDO+CCID  # for Yubikey version == 4
    Set mode of YubiKey to FIDO+CCID? [y/N]: y
    Mode set! You must remove and re-insert your YubiKey for this change to take effect.
    

相关内容