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

    Now Available: pfSense® CE 2.8.1-RELEASE

    Scheduled Pinned Locked Moved Messages from the pfSense Team
    13 Posts 8 Posters 1.5k Views 11 Watching
    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.
    • fireodoF Online
      fireodo @pfGeorge
      last edited by stephenw10

      @pfGeorge

      Hi,

      update 2.8.0 -> 2.8.1 went smooth (except lcdproc that was "running wild" filling the syslog) - after another warm reboot all was fine!

      Thanks,
      fireodo

      Kettop Mi4300YL CPU: i5-4300Y @ 1.60GHz RAM: 8GB Ethernet Ports: 4
      SSD: SanDisk pSSD-S2 16GB (ZFS) WiFi: WLE200NX
      pfsense 2.8.1 CE
      Packages: Apcupsd, Cron, Iftop, Iperf, LCDproc, Nmap, pfBlockerNG, RRD_Summary, Shellcmd, Snort, Speedtest, System_Patches.

      1 Reply Last reply Reply Quote 1
      • TommyMooT Offline
        TommyMoo
        last edited by

        I also updatet from 2.8.0 -> 2.8.1, went without any problems, and I didnt had to de-install aynthing... Thanks to developers and Beta testers!

        Didnt had any issue, and Im seeing now, that SNORT shows finally in Dashboard the correct Description row with content...before update, its was showing the Description Row, but empty. Found no issue so far! Thanks!

        1 Reply Last reply Reply Quote 0
        • W Offline
          Waqar.UK @sokeada
          last edited by

          @sokeada

          I just upgraded to 2.8.1. Had to restart pfgblocker. Rebooted again as CPU was hovering at 59%. Once reboot took place it is now at 1%

          1 Reply Last reply Reply Quote 0
          • randombitsR Offline
            randombits
            last edited by

            I've a couple of random crash restarts since the update and this is the report of the last one.

            Crash report begins.  Anonymous machine information:
            
            amd64
            15.0-CURRENT
            FreeBSD 15.0-CURRENT #21 RELENG_2_8_1-n256095-47c932dcc0e9: Thu Aug 28 16:27:48 UTC 2025     root@pfsense-build-release-amd64-1.eng.atx.netgate.com:/var/jenkins/workspace/pfSense-CE-snapshots-2_8_1-main/obj/amd64/AupY3aTL/var/jenkins/workspace/pfSense-CE-
            
            Crash report details:
            
            PHP Errors:
            [06-Sep-2025 01:06:00 Europe/London] PHP Fatal error:  Uncaught TypeError: posix_kill(): Argument #1 ($process_id) must be of type int, string given in /etc/inc/openvpn.inc:1552
            Stack trace:
            #0 /etc/inc/openvpn.inc(1552): posix_kill()
            #1 /etc/inc/openvpn.inc(1575): openvpn_stop_process()
            #2 /etc/inc/openvpn.inc(2494): openvpn_restart()
            #3 /etc/inc/service-utils.inc(774): openvpn_restart_by_vpnid()
            #4 /usr/local/pkg/servicewatchdog.inc(96): service_control_start()
            #5 /usr/local/pkg/servicewatchdog_cron.php(30): servicewatchdog_check_services()
            #6 {main}
              thrown in /etc/inc/openvpn.inc on line 1552
            
            
            
            No FreeBSD crash data found.
            			
            
            fireodoF 1 Reply Last reply Reply Quote 0
            • fireodoF Online
              fireodo @randombits
              last edited by

              @randombits said in Now Available: pfSense® CE 2.8.1-RELEASE:

              Hi, as many posters have told this

              servicewatchdog

              is not a good Idea - watchdog is a "dumb" tool that creates more trouble than it resolves.

              Another thing is - take a look at openvpn.inc on line 1552 to see whats there.
              To the rest may a Specialist take a look.

              My 2 cents,
              fireodo

              Kettop Mi4300YL CPU: i5-4300Y @ 1.60GHz RAM: 8GB Ethernet Ports: 4
              SSD: SanDisk pSSD-S2 16GB (ZFS) WiFi: WLE200NX
              pfsense 2.8.1 CE
              Packages: Apcupsd, Cron, Iftop, Iperf, LCDproc, Nmap, pfBlockerNG, RRD_Summary, Shellcmd, Snort, Speedtest, System_Patches.

              randombitsR 1 Reply Last reply Reply Quote 1
              • N Offline
                nimrod
                last edited by

                Performed dirty upgrade from 2.8.1 RC to 2.8.1-RELEASE with zero issues.

                1 Reply Last reply Reply Quote 0
                • randombitsR Offline
                  randombits @fireodo
                  last edited by

                  @fireodo
                  Line 1552

                  		posix_kill($pid, SIGTERM);
                  

                  And in some context

                  function openvpn_stop_process($mode, $settings) {
                  	global $g;
                  
                  	$mode_id = openvpn_name($mode, $settings, 'generic');
                  	$pfile = g_get('varrun_path')."/openvpn_{$mode_id}.pid";
                  	if (file_exists($pfile)) {
                  
                  		/* read the pid file */
                  		$pid = rtrim(file_get_contents($pfile));
                  		unlink($pfile);
                  		syslog(LOG_INFO, "OpenVPN terminate old pid: {$pid}");
                  
                  		/* send a term signal to the process */
                  		posix_kill($pid, SIGTERM);
                  
                  		/* wait until the process exits, or timeout and kill it */
                  		$i = 0;
                  		while (posix_kill($pid, 0)) {
                  			usleep(250000);
                  			if ($i > 10) {
                  				log_error(sprintf(gettext('OpenVPN ID %1$s PID %2$s still running, killing.'), $mode_id, $pid));
                  				posix_kill($pid, SIGKILL);
                  				usleep(500000);
                  			}
                  			$i++;
                  		}
                  	}
                  }
                  

                  I'll stop the watchdog for the time being, it's never been a problem before.

                  fireodoF 1 Reply Last reply Reply Quote 0
                  • fireodoF Online
                    fireodo @randombits
                    last edited by

                    @randombits said in Now Available: pfSense® CE 2.8.1-RELEASE:

                    I'll stop the watchdog for the time being, it's never been a problem before.

                    As I read the code (with my humble knowledge) the killing of the openvpn process was konflicting with watchdogtrying to restart the process (that was dead in his eyes). IMHO

                    Kettop Mi4300YL CPU: i5-4300Y @ 1.60GHz RAM: 8GB Ethernet Ports: 4
                    SSD: SanDisk pSSD-S2 16GB (ZFS) WiFi: WLE200NX
                    pfsense 2.8.1 CE
                    Packages: Apcupsd, Cron, Iftop, Iperf, LCDproc, Nmap, pfBlockerNG, RRD_Summary, Shellcmd, Snort, Speedtest, System_Patches.

                    randombitsR 1 Reply Last reply Reply Quote 1
                    • randombitsR Offline
                      randombits @fireodo
                      last edited by

                      @fireodo
                      It appears something like that, I've removed the Watchdog anyway and I'll see how it goes.

                      1 Reply Last reply Reply Quote 1
                      • S Offline
                        sandrinho1976
                        last edited by

                        Any news for the Zabbix Proxy 7 package?

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