Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    Auto-renew DHCP after outage

    Scheduled Pinned Locked Moved DHCP and DNS
    53 Posts 21 Posters 28.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • T
      tomashk
      last edited by

      I have exactly the same problem (UPC, Poland). Also while searching for solution I saw that there was many people with this problem here, on reddit, etc. Thank you for that solution. But still I will try to find different and easier fix too. Maybe it is possible to somehow do this without cron and scripts.

      1 Reply Last reply Reply Quote 0
      • T
        tomashk
        last edited by

        One question for people being longer in pfSense community. Because it won't fix by itself. Looking at descriptions from this topic is it enough to create a task in https://redmine.pfsense.org/ ? If not then what should be added? If yes, then should it be a bug (pfSense doesn't react in such a situation) or a feature (detection of such situation should be added).

        At the same time, I would be grateful for the suggestion about pfSense code. Could somebody point me the code (if it exists) responsible for the detection of network problems? Even without help, I will check it for myself because this problem is killing me ;) and having some suggestions will make it easier. And if by chance I find even a partial/not perfect solution then I will be more then happy. (I know that here we have a working workaround but it should be addressed in pfSense code)

        1 Reply Last reply Reply Quote 0
        • N
          nkaminski
          last edited by

          @e4ch @tomashk
          I have seen exactly this behavior where specifically a DHCP-assigined IP is lost for an amount of time equal to the last cached lease time if a DHCP timeout occurs.

          I was able to narrow down the root cause to a (confirmed: https://lists.freebsd.org/pipermail/freebsd-net/2019-February/052894.html) bug in the FreeBSD DHCP client, dhclient, as well as an apparent bug in the associated dhclient-script provided with pfSense that both involve handling DHCP protocol timeouts improperly.

          I have opened a pfSense bug ticket containing the technical details of my findings as well as a working patch set which addresses this at: https://redmine.pfsense.org/issues/9267

          1 Reply Last reply Reply Quote 2
          • e4chE
            e4ch
            last edited by

            Thanks @tomashk! Looks like you found the underlying root cause! I looked at your changes and they sound reasonable, at least the wrong byte that was returned (I don't fully understand the script). Thanks a ton for providing such fixes and posting them at the right place; that helps the maintainers a lot to integrate such fixes more easily into the main branch. Unfortunately, even though you reported this already in January 2019, it doesn't seem to be included in version 2.5 and isn't even in the open issues list, but it is still in the list "new issues". So it might take a while until we can see this in a standard update. There are several threads about this, so this will help many people and I can then finally get rid of my repair script.

            N 1 Reply Last reply Reply Quote 0
            • N
              nkaminski @e4ch
              last edited by

              @e4ch It is fairly easy to hack this fix in to an existing pfSense install; with the toughest/most involved part being getting dhclient rebuilt. Patching the dhclient-script such that it (correctly) returns nonzero when the default gateway in the cached lease is not pingable is trivially doable with the "system patches" package and the patch from the bug ticket.

              The easiest way I have found to build the patched dhclient is to just setup a FreeBSD 11.2 VM, build the patched dhclient and copy over the binary to the pfSense host. This will persist until an update is performed. I am more than willing to share my dhclient binary if desired as well.

              You might also be able to use the FreeBSD 12 stable branch dhclient verbatim as well, since such contains the exit status patch, however I haven't tested this personally.

              1 Reply Last reply Reply Quote 0
              • M
                mariyan
                last edited by

                I have the same DHCP issue here. ISP is Net1, Bulgaria. Thanks for the script. It helps with mitigating the problem.

                1 Reply Last reply Reply Quote 0
                • O
                  ohbobva @e4ch
                  last edited by

                  @e4ch Thanks for the script. Just what I needed. I modified it to log to system.log, which uses the clog system, so the log won't get big...

                  #!/bin/sh
                  wan="em5"
                  
                  currip=$(ifconfig $wan | grep "inet " | cut -d " " -f 2)
                  if test -z "$currip"; then
                  	logger `date +%Y%m%d.%H%M%S` "pingtest - Detected empty IP on $wan! Will try again in 120 seconds."
                  	sleep 120
                  	currip=$(ifconfig $wan | grep "inet " | cut -d " " -f 2)
                  	if test -z "$currip"; then
                  		logger `date +%Y%m%d.%H%M%S` "pingtest - 2nd try: Still empty IP on $wan! Will fix now."
                  		ifconfig $wan down
                  		sleep 10
                  		ifconfig $wan up
                  		sleep 20
                  		dhclient $wan
                  		logger `date +%Y%m%d.%H%M%S` "pingtest - Fixing done!"
                  	else
                  		logger `date +%Y%m%d.%H%M%S` "pingtest - 2nd try: $wan has IP $currip; ok"
                  	fi
                  else
                  	logger `date +%Y%m%d.%H%M%S` "pingtest - $wan has IP $currip; ok"
                  fi
                  
                  A E 2 Replies Last reply Reply Quote 3
                  • A
                    axxxxe @ohbobva
                    last edited by

                    Thank you @e4ch and @ohbobva! I am also on UPC in Switzerland and the script has fixed it for me.

                    1 Reply Last reply Reply Quote 0
                    • E
                      EricE @ohbobva
                      last edited by

                      @ohbobva @e4ch thanks for your scripts! This just hit my parents pfSense install - stupid cable went out (and of course they insist nothing is wrong) and pfSense did not automatically reconnect the WAN. I had my mom manually refresh the WAN interface and it came right back up. How annoying! Hopefully they can permanently fix it now that the root cause appears to be evident; in the meantime hopefully this script will take care of it the next time they flake out and swear nothing is wrong but then it magically starts working right after they complain.

                      1 Reply Last reply Reply Quote 0
                      • GertjanG
                        Gertjan
                        last edited by

                        @EricE : see https://forum.netgate.com/topic/148017/dhcp-client-issue

                        No "help me" PM's please. Use the forum, the community will thank you.
                        Edit : and where are the logs ??

                        1 Reply Last reply Reply Quote 0
                        • B
                          Brian Smit
                          last edited by

                          Thank You for the scripts!!
                          Are the scripts still needed in the latest version of PFsense or is this bug fixed?

                          Regards

                          Brian

                          E 1 Reply Last reply Reply Quote 0
                          • E
                            EricE @Brian Smit
                            last edited by

                            @Brian-Smit

                            @Brian-Smit said in Auto-renew DHCP after outage:

                            Thank You for the scripts!!
                            Are the scripts still needed in the latest version of PFsense or is this bug fixed?

                            I still needed them for my parents firewall.

                            1 Reply Last reply Reply Quote 1
                            • B
                              Brian Smit
                              last edited by

                              Then i indeed also keep using them. I didn't have any issues anymore with Ziggo

                              1 Reply Last reply Reply Quote 0
                              • W
                                Wirepower
                                last edited by Wirepower

                                So I tried your script, works well.
                                Pings and says in log that IP is up. However gateway monitor still says down. Have changed monitor IP to Google and still says down. I would need to renew wan lease in order to get it back up. Keep in mind that when gateway monitor is down, the script can still ping and says it’s ok.

                                So I’m confused why on status/interface it says up but in gateway monitor it says down.
                                Is there a script that would automatically release and renew if either gateway monitor shows down or interface?

                                1 Reply Last reply Reply Quote 0
                                • A
                                  axxxxe
                                  last edited by

                                  Can someone tell me if the patch to dhclient is still needed for 2.4.5? I just upgraded to 2.4.5 and am wondering if I now need to include the patch mentioned at the link below, or if the patch is already included in the 2.4.5 I just installed.

                                  https://redmine.pfsense.org/issues/9267

                                  1 Reply Last reply Reply Quote 0
                                  • GertjanG
                                    Gertjan
                                    last edited by

                                    Click on your own link, find the line that says :

                                    Patch to pfSense-dhclient-script was applied on 2.4.5 as well
                                    

                                    That was 8 month ago.

                                    No "help me" PM's please. Use the forum, the community will thank you.
                                    Edit : and where are the logs ??

                                    A 1 Reply Last reply Reply Quote 0
                                    • A
                                      axxxxe @Gertjan
                                      last edited by

                                      Yes, I was uncertain about if this meant it was included in version 2.4.5 or if he was reporting that when he applied the patch to 2.4.5 it worked. I assume from your response it's the former.

                                      GertjanG 1 Reply Last reply Reply Quote 0
                                      • GertjanG
                                        Gertjan @axxxxe
                                        last edited by

                                        @axxxxe said in Auto-renew DHCP after outage:

                                        uncertain

                                        The patch was initially targeted for 2.5.0, but finally back ported to 2.4.5(-p1).
                                        I had to read the patch story twice also ;)

                                        No "help me" PM's please. Use the forum, the community will thank you.
                                        Edit : and where are the logs ??

                                        1 Reply Last reply Reply Quote 0
                                        • T
                                          tsmalmbe
                                          last edited by

                                          Setting timeouts and other options worked well on 2.4.5 but after updating to 2.6.0 my WAN does not survive even the first change in DHCP. It goes down and stays down until I reboot the modem. This really really sucks again.

                                          Security Consultant at Mint Security Ltd - www.mintsecurity.fi

                                          T 1 Reply Last reply Reply Quote 1
                                          • T
                                            tsmalmbe @tsmalmbe
                                            last edited by

                                            @tsmalmbe I tweaked and poked with the custom values and it sorta works again. That said, the ip changes very rarely (not even weekly) so it is hard do say if this works or not. Seems like something that nevertheless should be easy to fix.

                                            Security Consultant at Mint Security Ltd - www.mintsecurity.fi

                                            A 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.