-
Notifications
You must be signed in to change notification settings - Fork 3
OpenSSH authentication agent
Palo Alto Networks SSH Manager · vSSH CLI
The OpenSSH authentication agent (ssh-agent) is a program that stores SSH keys used for authentication in a process memory, so users are not prompted for passphrase when using ssh or scp to connect to hosts.
You can check if OpenSSH agent is running by executing the following command:
$ vssh openssh agent statusLinux or macOS
You can start OpenSSH agent by executing the following command:
$ eval `ssh-agent`Windows
By default, the service of OpenSSH agent is disabled. You have to enable and start it by executing the following command:
# Make sure you're running as an Administrator.
Get-Service ssh-agent | Set-Service -StartupType Manual
# Start the service
Start-Service ssh-agent
# This should return a status of Running
Get-Service ssh-agentOnce you verify that the service is running, you can use the command below to set the agent to start automatically on boot.
# Make sure you're running as an Administrator.
Get-Service ssh-agent | Set-Service -StartupType AutomaticFor detailed information on how to start OpenSSH agent on Windows, please refer to this article.
Palo Alto Networks SSH Manager · vSSH CLI. Licensed under the Apache License, Version 2.0. To report a problem or share an idea, use Issues.
Getting started
Configuration
Authentication
Guides
Tutorials
- Interactive user access
- Machine identity for apps and hosts
- CI/CD pipeline enrollment
- Enroll for interactive logins
- Enroll for an application or host
- Renew a certificate
- Retrieve SSH CA public keys
Command reference
- Overview and global options
- login
- logout
- certificate
- profile
- service
- openssh
- status
- update
- version
- help
Reference