Last active
December 29, 2023 20:40
-
-
Save ilumos/f6861ea879889146ce9ad61a956ba801 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# In Diagnostics > Command Prompt, run: | |
mkdir -p /root/.ssh # Create a .ssh folder for the pfSense root user | |
ssh-keygen -t rsa -q -b 2048 -N "" -f /root/.ssh/id_rsa # Generate a public/private key pair for pfSense | |
cat /root/.ssh/id_rsa.pub # Get pfSense's public key for adding to the remote server | |
ssh -oStrictHostKeyChecking=no [email protected] # Add the remote host's host key to pfsense's "known_hosts" file | |
# Run this command in Diagnostics > Command Prompt | |
# and if it succeeds, add it as a cron job in Services > Cron | |
/usr/bin/scp -i /root/.ssh/id_rsa /cf/conf/config.xml [email protected]:~/config-`date +\%Y-\%m-\%d`.xml 2>&1 | /usr/bin/logger -t config-backup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment