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

    The link state of an interface (bridge member) goes up/down continuously

    Scheduled Pinned Locked Moved General pfSense Questions
    55 Posts 15 Posters 29.9k 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.
    • M
      Mavy
      last edited by

      Fixed it for me aswell  :)

      1 Reply Last reply Reply Quote 0
      • stephenw10S
        stephenw10 Netgate Administrator
        last edited by

        Thought I'd report back that this worked for me too.
        I have another bridge of fxp(4) NICs that didn't have that problem so as you say it's not all NICs that are affected.

        First chance I've had to try the System Patches package. Nice.  :)

        Steve

        1 Reply Last reply Reply Quote 0
        • E
          ESPNSTI
          last edited by

          @jimp:

          Try this fix:
          https://github.com/pfsense/pfsense/commit/f3a4601c85c4de78caa4f12fefd64067fd83dbe8

          It seems to only affect certain NICs that bounce their link on some configuration operations.

          This worked on some interfaces for me, but not others.
          Looking at the system logs and the patch code, I could see that it was still going through the same path, and the IP address was empty:

          Oct 17 16:59:32 	php: rc.newwanip: rc.newwanip: Informational is starting em1.
          Oct 17 16:59:32 	php: rc.newwanip: rc.newwanip: on (IP address: ) (interface: opt1) (real interface: em1).
          Oct 17 16:59:32 	php: rc.newwanip: rc.newwanip: Failed to update opt1 IP, restarting...
          

          I then looked at /cf/conf/config.xml and found that there were empty <ipaddr>xml tags on the interfaces that still had problems.
          The IP address was set at some point on those in the process of creating the bridge.
          I removed the empty tags from the config.xml file, rebooted, and the problem went away:

          Oct 17 19:09:16 	php: rc.newwanip: rc.newwanip: Informational is starting em1.
          Oct 17 19:09:16 	php: rc.newwanip: Interface does not have an IP address, nothing to do.
          

          I'm not familiar with php at all, but I assume the isset function perhaps doesn't account for empty tags and returns true:

            if (($curwanip == "") && !(isset($config['interfaces'][$interface]['ipaddr']))) {
              log_error("Interface does not have an IP address, nothing to do.");
              return;
            } 
          

          FYI, I'm running the same configuration as the OP:
          pfSense 2.1 on a Soekris net6501-50 (Intel 82574L Gigabit Ethernet ports)
          I have WAN assigned to em0, OPT1-7 assigned to em1-7 with IPv4 and IPv6 set to none, and LAN is assigned to Bridge0, consisting of OPT1-7.

          Anyway, thanks for the patch, that made things work a lot better. ;D

          Also, the way that system patches process works is rather impressive.</ipaddr>

          1 Reply Last reply Reply Quote 0
          • stephenw10S
            stephenw10 Netgate Administrator
            last edited by

            Interesting, thanks for the heads up.  :)

            No spurious tags left in my config file. I don't think I ever had them set as anything but bridged on that box though.

            Steve

            1 Reply Last reply Reply Quote 0
            • C
              ceama
              last edited by

              Thanks Steve.
              I'll try it.  Some others tried the system patches feature.  I guess that's the way to do it.  There I go re-inventing the wheel again.

              1 Reply Last reply Reply Quote 0
              • C
                ceama
                last edited by

                The official fix works for the msk driver.  I like the system patch tool.  It lets you use your own patches or official github links.

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

                  @/CS:

                  @jimp:

                  Try this fix:
                  https://github.com/pfsense/pfsense/commit/f3a4601c85c4de78caa4f12fefd64067fd83dbe8

                  It seems to only affect certain NICs that bounce their link on some configuration operations.

                  Many thanks jimp! It works fine for me.  ;D

                  Please pardon my ignorance, but how do I apply this fix?

                  Do I just replace my existing /etc/rc.newwanip with this file?

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

                    @mattlach:

                    Please pardon my ignorance, but how do I apply this fix?

                    Do I just replace my existing /etc/rc.newwanip with this file?

                    So, I just tried doing this, rebooted the pfSense box, but my devices keep going up and down.

                    My configuration is an AMD E350 board with two Intel Pro/1000 dual NIC's and the on board Realtek 8111C junk.

                    Any thoughts?

                    1 Reply Last reply Reply Quote 0
                    • chpalmerC
                      chpalmer
                      last edited by

                      I added the 4 highlighted lines to my existing file.

                      Otherwise you could chance it and gitsync…

                      Triggering snowflakes one by one..
                      Intel(R) Core(TM) i5-4590T CPU @ 2.00GHz on an M400 WG box.

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

                        @mattlach:

                        @mattlach:

                        Please pardon my ignorance, but how do I apply this fix?

                        Do I just replace my existing /etc/rc.newwanip with this file?

                        So, I just tried doing this, rebooted the pfSense box, but my devices keep going up and down.

                        My configuration is an AMD E350 board with two Intel Pro/1000 dual NIC's and the on board Realtek 8111C junk.

                        Any thoughts?

                        So, making these changes to /etc/rc.newwanip did not fix the problem on it's own, but then I decided to try to just disable the onboard ethernet (Realtek 8111C) and that actually did the trick.  They are no longer cycling for me.

                        I left the Realtek interface on just as an extra port in case I ever needed it, not something to rely on, as I know they are garbage, but I hadn't considered that it could interfere with the proper working of my good NIC's

                        Thanks for the help folks.

                        1 Reply Last reply Reply Quote 0
                        • stephenw10S
                          stephenw10 Netgate Administrator
                          last edited by

                          Just for reference using the system patches package takes away the possibility of typo errors. You just enter the commit number and everything is done for you.

                          Steve

                          1 Reply Last reply Reply Quote 0
                          • C
                            ceama
                            last edited by

                            @stephenw10:

                            Thought I'd report back that this worked for me too.
                            I have another bridge of fxp(4) NICs that didn't have that problem so as you say it's not all NICs that are affected.

                            First chance I've had to try the System Patches package. Nice.  :)

                            Steve

                            I have an issue that has almost the same symptoms with Sun hardware part 501-5406-07.  I know there has to be hundreds of units out there with this hardware in them.  I have personally built about 25 units with this quad fast Ethernet card.  I tried to submit it to Redmine but it was rejected.  I can fix it myself but I was wondering if it should be fixed in the pfSense code or in the hme driver.  Also, being new at reporting bugs, I am curious if I should try to contact the author of the driver if Redmine rejects it?  It is a real bug in my opinion.  I am a little surprised I haven't heard any one else complaining.  Here is the Redmine issue with the reject by Chris Buechler. https://redmine.pfsense.org/issues/3373
                            It defines the issue.

                            1 Reply Last reply Reply Quote 0
                            • stephenw10S
                              stephenw10 Netgate Administrator
                              last edited by

                              Sounds exactly like this thread: http://forum.pfsense.org/index.php/topic,69125.15.html
                              Unfortunately that wasn't really resolved usefully in my opinion.

                              Steve

                              1 Reply Last reply Reply Quote 0
                              • jimpJ
                                jimp Rebel Alliance Developer Netgate
                                last edited by

                                If you are using the system patches package make sure that not only you get patch  58ee84b4b2f9daba87e44abf663026c6266a7cd8 but also 793299b8f5bdc0fd167093cc5ab9f3f30f0d77ac

                                Both could be relevant to similar issues, but it would still only apply for interfaces that were set to an IP type of "none" (typically bridged interfaces)

                                Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                                Need help fast? Netgate Global Support!

                                Do not Chat/PM for help!

                                1 Reply Last reply Reply Quote 0
                                • J
                                  jdp0418
                                  last edited by

                                  I would like to chime in and also confirm this fix worked for me.

                                  I am using a Soekris Net6501-50 with the Intel 82574L 4 port Gigabit Ethernet card.  I experienced the same issue with an interface configured into a bridge group bouncing continuously when connecting a device and establishing link.  This patch worked for me.

                                  I applied it using the System Patch package.  For anyone who is unfamiliar with it, it's pretty easy.  Install the "System Patch" package, and then under the Patches screen, add the link from jimp.  Fetch the patch, test it (making sure it doesn't have any issues applying), and then apply the patch.  It seemed to work without rebooting, but I did anyway just for good measure.

                                  Thanks for those who contributed to this thread and thanks to jimp for the fix!

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

                                    I have a bridged setting (WAN - DMZ) on a asus server rs300-e7 with 4 NIC. i have done this patch https://github.com/pfsense/pfsense/commit/f3a4601c85c4de78caa4f12fefd64067fd83dbe8

                                    unfortunatly i still recieve a lot of time outs on every server behind the DMZ.

                                    the first rule in the WAN is Allow ICMP from all to all. Are there any options which i can test?

                                    p.s. it looks like the more data is beeing processed by pfsense the more time outs it gets…. all loggings are out on the rules. pftop is showing ok status

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

                                      i am almost certain that if there are more connections through the pfsense firewall the more time outs we get, the server hardware is 3 years old with 32GB of ram… states counts is now 6125 and a recieve some pings traffic in is 1MB traffic out is 3MB ..

                                      1 Reply Last reply Reply Quote 0
                                      • stephenw10S
                                        stephenw10 Netgate Administrator
                                        last edited by

                                        Where are yoy seeing these 'timeouts'?

                                        Steve

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

                                          when i ping to servers behind the pfsense firewall. ( i have now 2 servers behind that)

                                          the pfsense box itselfs does not give time out, when i ping to other servers (not behind the pfsense ) no time out occurs.

                                          I have also got a server, when i put this behind the pfsense firewall ping time outs occurrs , and when i put it back behind the sonicwall firewall no ping time out occurs

                                          Like i said, the more traffic over the pfsense the more time out occurs…. the hardware should not be a problem:

                                          24GB memory Intel Xeon 3470 Raid 4x 1TB raid 10

                                          When ping time outs also apache etc is connecting

                                          1 Reply Last reply Reply Quote 0
                                          • stephenw10S
                                            stephenw10 Netgate Administrator
                                            last edited by

                                            That doesn't sound like the interface flapping problem described in this thread. Are you seeing the interface going up and down in the logs?

                                            Steve

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