The ssh_login_assistant.sh
script is a convenient tool designed to streamline the process of connecting to an SSH server. It simplifies the setup by guiding you through the required steps, including entering your username, selecting the network, and handling private key or password authentication. This script is ideal for users who frequently need to connect to different SSH servers and want to automate the process for efficiency and ease.
- Prompt for Username: Enter the SSH username.
- Select Network: Specify the network for connection.
- Handle Private Key: Provide a path to the private key if used for authentication.
- Password Option: Choose to enter a password if needed.
- Automatic SSH Login: Connects to the specified SSH server using the provided credentials.
Before using this script, ensure you have the following:
- Bash Shell: The script is designed to be executed in a Bash shell.
- SSH Client: Make sure the
ssh
command is available on your system. - Permissions: Ensure the script file has execution permissions.
-
Download the Script:
Save the script to your local machine OR clone the repository.
wget https://github.com/Purvapatel4725/Automated-SSH/blob/main/script.sh -O ssh_login_assistant.sh
OR
curl https://github.com/Purvapatel4725/Automated-SSH/blob/main/script.sh -O ssh_login_assistant.sh
OR
git clone https://github.com/Purvapatel4725/Automated-SSH
cd Automated-SSH/
-
Make the Script Executable:
Change the file permissions to make the script executable.
chmod +x ssh_login_assistant.sh
-
Run the Script:
Execute the script from your terminal.
./ssh_login_assistant.sh
-
Follow the Prompts:
- Username: Enter the SSH username when prompted.
- Network: Specify the network (e.g.,
192.168.1.0/24
orhome_network
). - Private Key: If you use a private key for authentication, provide the path to the key file. If not, skip this step.
- Password: If your SSH server requires a password, choose
yes
and enter the password when prompted. Otherwise, chooseno
.
-
Automatic Connection:
The script will attempt to connect to the specified SSH server using the provided details.
Here's how the interaction might look when you run the script:
$ ./ssh_login_assistant.sh
Enter your SSH username: johndoe
Enter the network you are on: 192.168.1.0/24
Do you have a private key for SSH authentication? (yes/no): yes
Enter the path to your private key: /path/to/private_key
Do you require a password for SSH authentication? (yes/no): no
Connecting to SSH server...
- Permission Denied: Ensure the script has execution permissions (
chmod +x ssh_login_assistant.sh
). - SSH Client Missing: Install the SSH client package for your OS.
- Invalid Private Key Path: Verify the path to the private key is correct.
Feel free to fork the repository, submit issues, or create pull requests to improve the script.
Purva Patel