Skip to content

saswatasarkar13/PfSense-Auto-Reboot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

PfSense-Auto-Reboot (Tested on PfSense 2.6.0)

A simple script to reboot you PfSnse box when it is not connected to the internet.

This guide is extremely beginner friendly. I wish I had it, When I was starting out.

  • Copy the script to the local pfsense router.

    1. Login via ssh using root user and password.

    2. Select shell command 8.

    3. Change your directory to /usr/local/bin.

    cd /usr/local/bin
    
    1. Download the script file.
    curl -LJO https://raw.githubusercontent.com/saswatasarkar13/PfSense-Auto-Reboot/main/PfReboot.sh
    
    1. Install nano file editor
    pkg update
    pkg install nano
    
    1. Change your wan adapter name, if required (mine is re0) using nano
    nano PfReboot.sh
    
    1. (OPTONAL) Change the script to customize your experience.

      • Change the public ip of cloudflare to your liking (public server). But make sure it is a always on public ip address and does respond to ping (ICMP).
      • Uncomment the print lines. if you want to see feedback on the console. But by-default it is off.
    2. After Pasting the Script. Press ESC then :x to exit from the vi editor.

  • To test the script on your local pfsense box.

    1. Install bash, if not installed already.
    pkg install bash
    
    1. Change permisson to executable.
    chmod +x PfReboot.sh
    
    1. Run it as "bash PfReboot.sh".
    bash PfReboot.sh
    
  • To run the the script on your local pfsence box on schedule.

    1. Install cron, if not installed already.

    System > Package Manager > Available Packages > Search "cron" > install.

    1. Configure the cron service.

    Services > corn > add

    Then type as follows

    - Minute - *
    - Hour - *
    - Day of the month - *
    - Month of the year - *
    - Day of the week - *
    - User -  root 
    - Command - ``` bash /usr/local/bin/PfReboot.sh ``` 
    
    1. Click on Save.

Now we are done. You can sleep peacefully and dont have to press the reset button when the internet is goes down. It will automatically reboot itself within sometime of going offline.

Feedback is always welcome.

About

A simple script to reboot you pfsense box while there is not internet.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages