I use puppet to distribute my sshd configuration, including pre-generated ssh certificates.
Here's how I bulk create certificates for a bunch of new nodes named b001-b034:
for n in $(seq -w 1 34); do ssh-keygen -q -t rsa -f b0$n -C '' -N ''done
I use puppet to distribute my sshd configuration, including pre-generated ssh certificates.
Here's how I bulk create certificates for a bunch of new nodes named b001-b034:
for n in $(seq -w 1 34); do ssh-keygen -q -t rsa -f b0$n -C '' -N ''done
Comments