I use a Yubikey to store a GPG key pair and I like to use this key pair as my SSH key too. GPG on Windows exposes a Pageant style SSH agent and I wanted a way to use this key within WSL2.
In order to use wsl2-ssh-bridge
you must have installed socat
and ss
on
your machine.
For example, on Ubuntu you can install these by running the following command:
sudo apt install --yes socat iproute2
-
Download latest version from release page and copy
wsl2-ssh-bridge.exe
to your windows home directory (or other location within the windows file system). Then simlink to your$HOME/.ssh
directory for easy accesswindows_destination="/mnt/c/Users/Public/Downloads/wsl2-ssh-bridge.exe" linux_destination="$HOME/.ssh/wsl2-ssh-bridge.exe" wget -O "$windows_destination" "https://github.com/KerickHowlett/wsl2-ssh-bridge/releases/latest/download/wsl2-ssh-bridge.exe" # Set the executable bit. chmod +x "$windows_destination" # Symlink to linux for ease of use later ln -s $windows_destination $linux_destination
-
Add one of the following to your shell configuration (for e.g.
.bashrc
,.zshrc
orconfig.fish
). For advanced configurations consult the documentation of your shell.
SSH:
export SSH_AUTH_SOCK="$HOME/.ssh/agent.sock"
if ! ss -a | grep -q "$SSH_AUTH_SOCK"; then
rm -f "$SSH_AUTH_SOCK"
wsl2_ssh_bridge_bin="$HOME/.ssh/wsl2-ssh-bridge.exe"
if test -x "$wsl2_ssh_bridge_bin"; then
(setsid nohup socat UNIX-LISTEN:"$SSH_AUTH_SOCK,fork" EXEC:"$wsl2_ssh_bridge_bin" >/dev/null 2>&1 &)
else
echo >&2 "WARNING: $wsl2_ssh_bridge_bin is not executable."
fi
unset wsl2_ssh_bridge_bin
fi
GPG:
export GPG_AGENT_SOCK="$HOME/.gnupg/S.gpg-agent"
if ! ss -a | grep -q "$GPG_AGENT_SOCK"; then
rm -rf "$GPG_AGENT_SOCK"
wsl2_ssh_bridge_bin="$HOME/.ssh/wsl2-ssh-bridge.exe"
if test -x "$wsl2_ssh_bridge_bin"; then
(setsid nohup socat UNIX-LISTEN:"$GPG_AGENT_SOCK,fork" EXEC:"$wsl2_ssh_bridge_bin --gpg S.gpg-agent" >/dev/null 2>&1 &)
else
echo >&2 "WARNING: $wsl2_ssh_bridge_bin is not executable."
fi
unset wsl2_ssh_bridge_bin
fi
SSH:
set -x SSH_AUTH_SOCK "$HOME/.ssh/agent.sock"
if not ss -a | grep -q "$SSH_AUTH_SOCK";
rm -f "$SSH_AUTH_SOCK"
set wsl2_ssh_bridge_bin "$HOME/.ssh/wsl2-ssh-bridge.exe"
if test -x "$wsl2_ssh_bridge_bin";
setsid nohup socat UNIX-LISTEN:"$SSH_AUTH_SOCK,fork" EXEC:"$wsl2_ssh_bridge_bin" >/dev/null 2>&1 &
else
echo >&2 "WARNING: $wsl2_ssh_bridge_bin is not executable."
end
set --erase wsl2_ssh_bridge_bin
end
GPG:
set -x GPG_AGENT_SOCK "$HOME/.gnupg/S.gpg-agent"
if not ss -a | grep -q "$GPG_AGENT_SOCK";
rm -rf "$GPG_AGENT_SOCK"
set wsl2_ssh_bridge_bin "$HOME/.ssh/wsl2-ssh-bridge.exe"
if test -x "$wsl2_ssh_bridge_bin";
setsid nohup socat UNIX-LISTEN:"$GPG_AGENT_SOCK,fork" EXEC:"$wsl2_ssh_bridge_bin --gpg S.gpg-agent" >/dev/null 2>&1 &
else
echo >&2 "WARNING: $wsl2_ssh_bridge_bin is not executable."
end
set --erase wsl2_ssh_bridge_bin
end
If this is the first time you using YubiKey with Windows and Gpg4Win, please follow these instructions from Yubico's Official Website: https://developers.yubico.com/PGP/SSH_authentication/Windows.html
| Make sure ssh support is enabled in the gpg-agent.conf
and restart
gpg-agent
with the following command
gpg-connect-agent killagent /bye
gpg-connect-agent /bye
If you find commands like ssh
, ssh-add
, or gpg
are slow (i.e., about
15-25 seconds) check that wsl2-ssh-bridge
resides on Windows file system.
This is due to an issue with the WSL interop documented
here
and here
- The original branch I forked this repo from: BlackReloaded/wsl2-ssh-pageant
- Some of BlackReloaded's code is copied from benpye/wsl-ssh-pageant. This code shows how to communicate to pageant.