Utilities for allowing and managing sudo with ssh agent authentication
To install, run curl -s https://raw.githubusercontent.com/CoolandonRS/sudokey/main/install | bash
- (Windows Only) Enable the Open SSH Authentication Agent service (ssh-agent.exe)
- (Optional) Run
ssh-add
(Will have to be redone on reboot, you no longer have to type in your ssh key passphrase) - Edit .ssh/config to include
ForwardAgent true
when connecting to your server, or usessh -A
whenever connecting.
Host server
Hostname 192.168.1.4
User user
ForwardAgent true