User Tools

Site Tools


ssh:distribute_public_keys

This is an old revision of the document!


SSH - Distribute public keys

Any generic configuration management software like Puppet, Chef, Bcfg2 or cfengine could accomplish the task.

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.1480951225.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki