Introduction
This script (auto_ssh_batch.sh) is used to quickly configure SSH password-free login between multiple hosts, and supports remote transfer of scripts/files and execution of commands. passpass
The document provides unified authentication credentials, passednodes
The file defines the target host list to achieve batch automation.
download
git clone /wesley_li0/
Special Note (Company):
Using non-root users requires creating a user and adding a root group, and configuring trusted sudo permissions. You can use commands to implement it
USER: Username
PASSWORD: Password
USER=your_user && PASSWORD=your_password && useradd -m -G root -s /bin/bash "$USER" && echo "$USER:$PASSWORD" | chpasswd && echo "$USER ALL=(ALL) NOPASSWD:ALL" >> /etc//$USER
Prerequisites
-
operating system: The target host must be a RHEL/CentOS 7 system (due to dependency
sshpass-1.06-2.el7.x86_64.rpm
)。 -
Permission Requirements:
- The host that executes the script must have root permissions to install
sshpass
。 - The SSH service for all target hosts is started and the firewall allows SSH ports (default 22) to communicate.
- All host usernames and passwords are the same (the password needs to be changed after the password is completed and it will not affect the password exemption)
- The host that executes the script must have root permissions to install
Document preparation: Ensure the following files and directory structures exist:
/root/NoPassword/ # Script storage and user's home directory
├── auto_ssh_batch.sh # main execution script
├── bin
│ └── generate_ssh_key.sh # Remote execution script to be distributed
├── config
│ └── nodes # Store the target host IP and node ID
└── main
└── sshpass-1.06-2.el7.x86_64.rpm # sshpass installation package
Configuration file format
**nodes**
** document**
Each line defines the IP and node ID of the target host (the ID should be consistent with the subsequent cluster automation script ID. If there is no need to execute the cluster script, the ID is customized and used only as the output machine identifier), separated by spaces:
IP_Address Node_ID User Password
Example:
192.168.1.10 1 root root123
192.168.1.11 2 root root123
How to use scripts
SSH custom port
- SSH port specification, modify the `SSH_PORT` variable in the `auto_ssh_batch.sh` script
- `SSH_PORT` This variable is used to specify the SSH link port, default 22
Place dependent files
- Put the `sshpass` RPM package into the `main/` directory (already existed by default).
- Make sure that the `generate_ssh_key.sh` script is located in the `bin/` directory.
Give execution permissions and execute scripts
sudo chmod +x auto_ssh_batch.sh
sudo sh auto_ssh_batch.sh
# Use ssh verification after the script is run
# Default ssh port
ssh username@ip
# Specify the ssh port
ssh -p xx username@ip
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Script execution process
-
File Check
verifyconfig/pass
andconfig/nodes
Whether it exists and whether the format is correct. -
Initialize the environment
- Generate the local SSH key pair (if not present).
- Install
sshpass
(If not installed).
-
Batch operation
Traversalnodes
Each IP in the file:-
Distribution of public keys:use
sshpass
Copy the public key to the target host to achieve password-free login. -
Transfer files:Will
generate_ssh_key.sh
、pass
、nodes
、sshpass
Uploaded to the target host/tmp
。 -
Remote execution: Run on the target host
generate_ssh_key.sh
。
-
Distribution of public keys:use
Things to note
-
Safety warning
- Passwords in nodes files are stored in plain text and are recommended to be used only in trusted environments.
- Script usage
-o StrictHostKeyChecking=no
, automatically trust the host key, and there may be a risk of man-in-the-middle attack.
-
Error handling
- If the public key distribution of a host fails, the script will skip the host and continue execution.
- When a file transfer or a remote command fails, view the error output and check network connectivity.
-
Log output
During execution, detailed logs will be displayed, including the successful/failed host IP and operation status.
Through the above steps, you can quickly complete multi-host SSH password-free login configuration and batch remote operation.