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

    2.0.2 ???

    Scheduled Pinned Locked Moved Problems Installing or Upgrading pfSense Software
    145 Posts 30 Posters 57.7k 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.
    • jimpJ
      jimp Rebel Alliance Developer Netgate
      last edited by

      Had to make yet another new set of images again…

      If you really want to test the images, they can be found here – but if you try them, do so knowing full well that you will need to manually do an upgrade to the official 2.0.2-RELEASE or subsequent image if this image is not the final one. If this is the actual release image, then no action will be needed. They are not yet signed, so the final hash values are also not available.

      There is no way to use auto update to upgrade to these images, but if you use the console upgrade by URL function you can feed it the URL of a firmware update file that way.

      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
      • I
        ingmthompson
        last edited by

        @jimp:

        Had to make yet another new set of images again…

        If you really want to test the images, they can be found here – but if you try them, do so knowing full well that you will need to manually do an upgrade to the official 2.0.2-RELEASE or subsequent image if this image is not the final one. If this is the actual release image, then no action will be needed. They are not yet signed, so the final hash values are also not available.

        There is no way to use auto update to upgrade to these images, but if you use the console upgrade by URL function you can feed it the URL of a firmware update file that way.

        Cheers Jim, much appreciated :) Going to give this a try now.

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

          Just installed on one of my remote offices.  (no danger if goes down.)

          MLPPP bonding 2 dsl connections.

          Open VPN to primary data center.

          Port forwards for backup email server, private company web server, and security camera's.

          Upgraded just fine!

          :)

          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
          • I
            ingmthompson
            last edited by

            I'm having some issues with pfBlocker on this version. Is it just a matter of the package maintainers fixing it up for 2.0.2?

            1 Reply Last reply Reply Quote 0
            • P
              phil.davis
              last edited by

              pfBlocker is working for me in 2.1-BETA0 as well as 2.0.1 - the same code, and I can't see any version-specific checks in the code. So it is a bit surprising that something happens with an in-between version like 2.0.2. What are the issues?
              (if it's more than a quick issue and fix, then probably start a separate thread)

              As the Greek philosopher Isosceles used to say, "There are 3 sides to every triangle."
              If I helped you, then help someone else - buy someone a gift from the INF catalog http://secure.inf.org/gifts/usd/

              1 Reply Last reply Reply Quote 0
              • I
                ingmthompson
                last edited by

                @phil.davis:

                pfBlocker is working for me in 2.1-BETA0 as well as 2.0.1 - the same code, and I can't see any version-specific checks in the code. So it is a bit surprising that something happens with an in-between version like 2.0.2. What are the issues?
                (if it's more than a quick issue and fix, then probably start a separate thread)

                Seems like a memory error similar to what you'd see when you forget to increase the number of firewall table entries, even though I did set that to about 2,000,000. I also don't see any rules when I visit the alias URL.

                EDIT: The exact error message is below. Firewall table entries limit currently set to 10 million.

                There were error(s) loading the rules: /tmp/rules.debug:22: cannot define table pfBlockerlist1: Cannot allocate memory
                pfctl: Syntax error in config file: pf rules not loaded The line in question reads [22]: table <pfblockerlist1>persist file "/var/db/aliastables/pfBlockerlist1.txt"

                I strongly suspect this commit to be the culprit.</pfblockerlist1>

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

                  Except the exact opposite would be true - that commit actually allowed the limits to be set, without that only the default values were being used.

                  Check pfctl -sm

                  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
                  • I
                    ingmthompson
                    last edited by

                    @jimp:

                    Except the exact opposite would be true - that commit actually allowed the limits to be set, without that only the default values were being used.

                    Check pfctl -sm

                    Here's the output:

                    $ pfctl -sm
                    states        hard limit   194000
                    src-nodes     hard limit   194000
                    frags         hard limit     5000
                    tables        hard limit     3000
                    table-entries hard limit   200000

                    This is with Advanced > Firewall/NAT set to this. Something's obviously up.

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

                      ok, found the problem. Had a couple other things come in overnight anyhow, will make a new set later today.

                      It's an easy fix if you want to do it manually…

                      diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
                      index 87401cc..d30ed24 100644
                      --- a/etc/inc/filter.inc
                      +++ b/etc/inc/filter.inc
                      @@ -257,7 +257,7 @@ function filter_configure_sync($delete_states_if_needed = true) {
                              $limitrules .= "set limit tables {$maxtables}\n";
                              /* User defined maximum table entries in Advanced menu. */
                              if ($config['system']['maximumtableentries'] <> "" && is_numeric($config['system']['maximumtableentries']))
                      -               $rules .= "set limit table-entries {$config['system']['maximumtableentries']}\n";
                      +               $limitrules .= "set limit table-entries {$config['system']['maximumtableentries']}\n";
                      
                              if ($config['system']['optimization'] <> "") {
                                      $limitrules .= "set optimization {$config['system']['optimization']}\n";
                      

                      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
                      • I
                        ingmthompson
                        last edited by

                        @jimp:

                        ok, found the problem. Had a couple other things come in overnight anyhow, will make a new set later today.

                        No worries, thanks for the prompt response :)

                        1 Reply Last reply Reply Quote 0
                        • I
                          ingmthompson
                          last edited by

                          @maverick_slo:

                          Hi!

                          Can someone on 2.0.2 run this command: mpd5 -v
                          And post output here?

                          Thanks a lot!

                          I'm getting a blank output.

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

                            Hi!

                            Sorry to bother you all, I totally forgot I asket SAME question in other forum…
                            Sorry again, 2.0.2 uses 5.6 version of MPD5 package...

                            1 Reply Last reply Reply Quote 0
                            • I
                              ingmthompson
                              last edited by

                              Tested the new build today, it's working perfectly. Looking forward to an official release!

                              1 Reply Last reply Reply Quote 0
                              • S
                                Supermule Banned
                                last edited by

                                NICE!!

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

                                  Yes I meant to post about that new build last night. We had a couple issues come up (you can see the RELENG_2_0 commit log on github) that required some fixes, and I put in the limit fix for the table entries as well when I did that.

                                  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
                                  • E
                                    ezyclie
                                    last edited by

                                    Thanks Jim for the unofficial release.

                                    Btw my LCDProc won't run after upgrade from 2.0.1 to 2.0.2 but there is nothing from System Logs

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

                                      hello,

                                      where can i download the new 2.0.2 Image?

                                      And can i upgrade from my new installed 2.0.1 ?

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

                                        @eviltrooper:

                                        where can i download the new 2.0.2 Image?

                                        And can i upgrade from my new installed 2.0.1 ?

                                        See my link and explanation here: http://forum.pfsense.org/index.php/topic,52810.msg290463.html#msg290463

                                        And yes you can upgrade from 2.0.1 or any older release.

                                        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
                                        • E
                                          eviltrooper
                                          last edited by

                                          :) ahh okay.. thanks..

                                          1 Reply Last reply Reply Quote 0
                                          • ?
                                            A Former User
                                            last edited by

                                            Hi. Just a note about the new upgrade, the "WOL" seems missing from the drop down list of "Services". I noticed you updated the downloads you mentioned above today and tried it out just now. Everything else seems great just the one glitch so far. The widget on the dashboard works and shows my listed machines for "WOL" so I am guessing it is only a navigation, or webpage error. Nice job though so far. Great firewall. :)
                                            FYI, tried default theme "pfsense_ng" and still no joy. was originally set at "the_wall"

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