HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

ykman config — Enable or disable YubiKey applications. Note: You can use `ykman info` to see currently enabled appl

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandnoteyubikeycliapplicationsenabledisableykman config

Problem

How to use the ykman config command: Enable or disable YubiKey applications. Note: You can use ykman info to see currently enabled applications. More information: <https://docs.yubico.com/software/yubikey/tools/ykman/Base_Commands.html#ykman-config-options-command-args>.

Solution

ykman config — Enable or disable YubiKey applications. Note: You can use ykman info to see currently enabled applications. More information: <https://docs.yubico.com/software/yubikey/tools/ykman/Base_Commands.html#ykman-config-options-command-args>.

Enable an application over USB or NFC (--enable can be used multiple times to specify more applications):
ykman config {{usb|nfc}} {{[-e|--enable]}} {{otp|u2f|fido2|oath|piv|openpgp|hsmauth}}


Disable an application over USB or NFC (--disable can be used multiple times to specify more applications):
ykman config {{usb|nfc}} {{[-d|--disable]}} {{otp|u2f|fido2|oath|piv|openpgp|hsmauth}}


Disable all applications over NFC:
ykman config nfc {{[-D|--disable-all]}}

Code Snippets

Enable an application over USB or NFC (`--enable` can be used multiple times to specify more applications)

ykman config {{usb|nfc}} {{[-e|--enable]}} {{otp|u2f|fido2|oath|piv|openpgp|hsmauth}}

Disable an application over USB or NFC (`--disable` can be used multiple times to specify more applications)

ykman config {{usb|nfc}} {{[-d|--disable]}} {{otp|u2f|fido2|oath|piv|openpgp|hsmauth}}

Disable all applications over NFC

ykman config nfc {{[-D|--disable-all]}}

Context

tldr-pages: common/ykman config

Revisions (0)

No revisions yet.