ssh:distribute_public_keys
This is an old revision of the document!
SSH - Distribute public keys
A very easy solution, that does the same with firewall-rules
Example file hosts.conf:
- hosts.conf
192.168.0.1 192.168.2.99 192.168.2.100
- distribute.sh
#!/bin/bash for d in `cat ./hosts.conf`; do echo "copying to $d ..."; scp /root/.ssh./authorized_keys root@$d:/root/.ssh./authorized_keys done;
ssh/distribute_public_keys.1480951125.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)