49 | | || '''Setting''' || '''Description''' || '''Since''' || |
50 | | || no-yubikey || Comma- or whitespace- separated list of application ids for which !YubiKey login should be disabled.[[BR]] For example, if you have installed the [wiki:net.sf.basedb.ftp FTP server] but do not want to use !YubiKey for that: [[BR]] `no-yubikey=net.sf.basedb.clients.ftp` || !YubiKey 1.1 || |
51 | | || require-yubikey || Comma- or whitespace- separated list of application ids for which !YubiKey login is required.[[BR]] Users without a !YubiKey will not be able to use those clients. || !YubiKey 1.3 || |
| 49 | ==== no-yubikey (since 1.1) ==== |
| 50 | Comma- or whitespace- separated list of application ids for which !YubiKey login should be disabled. For example, if you have installed the [wiki:net.sf.basedb.ftp FTP server] but do not want to use !YubiKey for that: |
| 51 | {{{ |
| 52 | no-yubikey = net.sf.basedb.clients.ftp |
| 53 | }}} |
| 54 | |
| 55 | ==== require-yubikey (since 1.3) ==== |
| 56 | Comma- or whitespace- separated list of application ids for which !YubiKey login is required. Users without a !YubiKey will not be able to use those clients. For example, to force all users of the web client to use !YubiKey: |
| 57 | {{{ |
| 58 | require-yubikey = net.sf.basedb.clients.web |
| 59 | }}} |
| 60 | |
| 61 | ==== allow-other-authentication (since 1.5) ==== |
| 62 | Comma- or whitespace- separated list of other authentication methods that are allowed even if a user has configured a !YubiKey. Use `*` as a wildcard for all other authentication methods (including password authentication). Examples: |
| 63 | |
| 64 | {{{ |
| 65 | # Also allow password authentication even if a user has a YubiKey |
| 66 | allow-other-authentication = password |
| 67 | |
| 68 | # Allow all other authentication methods |
| 69 | allow-other-authentication = * |
| 70 | |
| 71 | # If the OTP login extension is also installed we can |
| 72 | # allow users to use either YubiKey or OTP (with or without password) |
| 73 | allow-other-authentication = otp-only otp+password |
| 74 | }}} |