pfmb will connect to one or more remote pfSense installs and backup the configuration XML file. The resulting backup will enable you to roll back to a previous configuration or replace failed hardware. pfmb will keep the number of backups that you specify in config, rotating out the old ones.
The script works over SSH with SSH public keys for secure authentication and transport.
Each line of the config file should contain the hostname or IP of a pfSense router/firewall. Optionally follow the hostname with colon port numnber if SSH is not on the default TCP port 22.
Format of the hosts.conf entries <hostname>:<port>:<description>
10.10.1.1:80
10.11.1.1:8100:pfsense2
pfsense.example.com
207.123.123.4
10.20.1.1::pfsense
If SSH keys are new to you, there are lots of good resources just a Google away ;)
- Run ssh-keygen from the command line on the [Mac / Linux] box doing the backups.
- Copy the content from id_rsa.pub and paste it into the "Authorized keys" field in pfSense (see below.)
Host *
User backup
IdentityFile ~/.ssh/backup-user.rsa
- Log into your pfSense via the web interface.
- Advanced -> Secure Shell Server -> Check the "Enable Secure Shell" box.
- Note the port, if this is not the default, you will need to specify it in the hosts config.
- Save your changes.
- Log into your pfSense via the web interface.
- System -> User Manager
- Click the + to add new user.
- Enter username and a secure password (you don't need to remember the password but it is required by the form.)
- Full Name -> Enter "Backup User"
- Click on "admins" under "Not Member Of" and move it to the "Member of" box to make your backup user an admin.
- Authorized keys -> Check this box and paste in your SSH public key from above.
- Save your changes.
If you can SSH into each pfSense box as the backup user without having to enter a password then you are ready to run the script.
Backups are created from the description and host name (from the config file) followed by a timestamp.
Enjoy :)
Greg Lawler