TPM: Difference between revisions
imported>Erdnaxe How to get model info |
mNo edit summary |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 28: | Line 28: | ||
To tell OpenSSH to use the TPM2 during login, you may add the following line to your <code>~/.ssh/config</code>: | To tell OpenSSH to use the TPM2 during login, you may add the following line to your <code>~/.ssh/config</code>: | ||
<syntaxhighlight> | <syntaxhighlight>PKCS11Provider /run/current-system/sw/lib/libtpm2_pkcs11.so</syntaxhighlight>To load your ssh key into the running <code>ssh-agent</code>, use <code>ssh-add -s</code>:<syntaxhighlight lang="bash"> | ||
ssh-add -s /run/current-system/sw/lib/libtpm2_pkcs11.so | |||
</syntaxhighlight> | </syntaxhighlight>Note that by default, <code>ssh-agent</code> refuses to load PKCS#11 modules outside a whitelist of trusted paths, and <code>/nix/store</code> paths are not included in this default list. You may need to start the agent with the <code>-P</code> flag to allow the library paths:<syntaxhighlight lang="bash"> | ||
ssh-agent -P "/run/current-system/sw/lib/*,/nix/store/*/lib/*" | |||
</syntaxhighlight>For a persistent setup, you can configure the system-wide agent in your <code>configuration.nix</code>: <syntaxhighlight lang="nixos">programs.ssh = { | |||
startAgent = true; | |||
agentPKCS11Whitelist = "${config.security.tpm2.pkcs11.package}/lib/*,/run/current-system/sw/lib/*"; | |||
};</syntaxhighlight> | |||
== Frequently Asked Questions == | == Frequently Asked Questions == | ||
| Line 51: | Line 56: | ||
nix-shell -p tpm2-tools --run "tpm2_getekcertificate" | strings | nix-shell -p tpm2-tools --run "tpm2_getekcertificate" | strings | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Usually, you may find a vendor such as <code>STMicroelectronics</code> and a model such as <code>ST33HTPxAHB61</code>. | Usually, you may find a vendor such as <code>STMicroelectronics</code> or <code>Infineon Technologies</code> and a model such as <code>ST33HTPxAHB61</code>. | ||
To get firmware version information, you might want to look at: | To get firmware version information, you might want to look at: | ||