SSH Key Pair Generation for SFTP
SSH KEY GENERATION FOR SFTP
SSH key authentication provides a way to securely connect to the PlayerLync SFTP server without a password. This allows system-to-system connectivity with secure access. To facilitate this, PlayerLync requires a public SSH key to be provided. These instructions will walk you through how to create your public / private key-pair.
KEY GENERATION: WINDOWS 10/11
Use the following steps to generate a private and public key-pair in Windows 10 or 11.
- Search for and open PowerShell on Windows (as an Administrator)
- Note the location of where you are in the system (most likely the C drive and your user folder)
- Enter the following: ssh-keygen -t rsa -b 4096 -f ./playerlync-sftp -C "playerlync sftp" -N ""
- Using Windows Explorer, navigate to the location where the command was entered (the location in step 2)
- If the files were generated correctly, you will see both of them in the directory, the file “playerlync-sftp” is the private key and should be kept private. Do not send that to anyone. The second file is called “playerlync-sftp.pub”. This file is the public key and should be sent to PlayerLync.
KEY GENERATION: MacOS
Use the following steps to generate a private and public key-pair on MacOS.
- Open a new Terminal window
- Enter the following: ssh-keygen -t rsa -b 4096 -f ./playerlync-sftp -C "playerlync sftp" -N ""
- The files will have saved in your user directory, navigate there now
- If the pair of files was generated correctly, you will see two files in the directory, the file “playerlync-sftp” is the private key and should be kept private. Do not send that to anyone. The second file is called “playerlync-sftp.pub”. This file is the public key and should be sent to PlayerLync.
Note: Please keep your private key in a safe location. If this is ever lost or compromised, follow the steps above to generate a new key-pair for connecting to PlayerLync SFTP.
On this page