Skip to content

Instantly share code, notes, and snippets.

@maietta
Forked from Juul/ssh-copy-id-openwrt
Created October 4, 2021 05:07
Show Gist options
  • Save maietta/69fdedfdf16e5893fc3eec42831a7938 to your computer and use it in GitHub Desktop.
Save maietta/69fdedfdf16e5893fc3eec42831a7938 to your computer and use it in GitHub Desktop.
ssh-copy-id but for openwrt / dropbear
#!/bin/sh
if [ "$#" -ne 1 ]; then
echo "Example: ${0} root@192.168.1.1"
exit 1
fi
cat ~/.ssh/id_rsa.pub | ssh ${1} "cat >> /etc/dropbear/authorized_keys && chmod 0600 /etc/dropbear/authorized_keys && chmod 0700 /etc/dropbear"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment