• Does pfSense use OpenVPN Management Interface?

    3
    0 Votes
    3 Posts
    2k Views
    pandafyP
    Hello @gertjan! Thank you very much for clearing out my doubts. This was troubling me for quite a while that why there's a restriction in changing management interface. Even after adding management 127.0.0.1 7505 directive using Custom Options, the OpenVPN instance on pfSense always used a UNIX socket. (It opens a UNIX socket with IP address as name) Because ..... that is the way how the Dashboard Server VPN widget 'scans' the OpenVPN server so it can update the dashboard info about a current connections. This is the crucial information I was missing. I will check the documentation again to confirm if it is already mentioned there. If not, I will open an issue/pull request to add this. But now, I want to take a dive into the implementation of the "scan client" feature and would like to investigate why usage of TCP ports has been ruled out completely. It will be really helpful if you can provide links to related code or documentation which can give me a starting point. Again, thanks a lot. :)
  • Is there a 21.05.1 release thread?

    13
    0 Votes
    13 Posts
    2k Views
    P
    @jimp Thank you, new thread is here
  • 2.5+/2.6-dev Bug(?) OpenVPN inactivity timeout default

    8
    0 Votes
    8 Posts
    2k Views
    jimpJ
    It does appear to be a similar case to exit notify for point-to-point modes. In "sever" mode (SSL/TLS with a tunnel network larger than /30) it considers Inactive to only apply to client sessions and not the server itself. In point-to-point mode (client or server are ambiguous to OpenVPN) it terminates the process on inactivity. https://redmine.pfsense.org/issues/12219
  • 2.5.2-release still has OpenVPN Site2Site Bug with explicit-exit-notify

    7
    0 Votes
    7 Posts
    3k Views
    JeGrJ
    @jimp said in 2.5.2-release still has OpenVPN Site2Site Bug with explicit-exit-notify: In the meantime, you can always use the Service Watchdog package to restart the service when it has stopped. Ah didn't think of that. Normally I'm more "solve the problem, don't restart" type of engineer but you're right, if the other side is "wrongdoing" and there's nothing we can do - so be it :/
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    16 Views
    No one has replied
  • 2.5.2 System Info still showing multiple /var paths with ufs in ram

    16
    0 Votes
    16 Posts
    3k Views
    4
    @jimp thanks jim
  • What is needed to tweak the code of the captive_portal.inc files?

    4
    0 Votes
    4 Posts
    1k Views
    jimpJ
    Normally you would not edit files in that way on the firewall directly. Many of us work in one of the following ways: Edit remotely by loading and saving over ssh or scp which is supported by many popular editors Edit a file in a local copy of the Git repository and then copy the edited file to the firewall by scp Edit a file in a local copy of the Git repository and then load the file in Diagnostics > Edit File and paste the new content Making minor/simple on the firewall directly changes using vi, ee, or Diagnostics > Edit File without extra steps
  • Guidelines on handling configuration upgrades in packages

    5
    0 Votes
    5 Posts
    2k Views
    I
    Thanks for the hint!
  • 0 Votes
    4 Posts
    2k Views
    JeGrJ
    @gabacho4 said in Way to track outstanding issues with 21.05 development for testing and verification?: @jegr this the reason I apologized in advance! Thanks for steering me too the right place. No offense taken :) It just happened I got the same question in the german subforum so knew where to link to right away ;)
  • The firewall has enountered an error - PHP Errors

    6
    0 Votes
    6 Posts
    3k Views
    G
    @Gertjan That can be seconds, minutes, or even days later. The date and time of the error is known : 16-May-2021 18:27:29 While the date is known, as presented by the given error, it doesn't present why this condition was given. For instance a long string or invalid string char or possibly mem exceeded error. I still missunder stood the question ? That can happen. Do you have more information ? It seems that way. I was asking how to proceed to report the bug, contrary to received a work around on how to do something that anyone with basic system knowledge can accomplished. You asked for it : a part of the diagnose is : you issued a command that had more then 500 Mbytes of text output. Look at the line 174 of that file : the output of the command you entered is redirected in a file, and the quantity of that output overflows 500+ Mbytes. PHP goes belly up. Thanks, this is very helpful and what I was looking for. An explanation of what cause a mem exhaustion is what I was looking for. There is no way of knowing how many bytes a (unknown) shell command produces upfront. So there is no safety net. Is it possible to check mem utilization and recycle the input to it? Or, perhaps, create a dynamic mem allocation instead of statically assigned? Unfortunately, PHP is not exactly my cup of tea. Actually : there is one : [image: 1621403268330-fd6e67a7-54cd-4357-9df0-84b464eda1e0-image.png] As amusing this might look, this is not exactly a checkpoint. The heading won't prevent the form from crashing!! Define advance user!! True. A GUI type of interface will never totally replace the usage of a command line interface. The console access (or SSH access) always exist, for that reason. Mac OS still has one, as Windows 10. Totally in agreement 1000%. Btw : what did you do on that "Diagnostics > Command Prompt" ? That is the million $$ question. The CLI is used instead of the diag page. Is there a way to trace back the commands ran on the given date? I'm not a Netgate employee or a pfSense coder, just a pfSense user like you. Understood! Thank you for all the info provided.
  • Can I Build This? Better GW Monitoring

    1
    0 Votes
    1 Posts
    818 Views
    No one has replied
  • package XML two menu entries with same name?

    2
    0 Votes
    2 Posts
    981 Views
    V
    Bump!
  • pfSense 2.5.1 multi-WAN routing restoration?

    1
    0 Votes
    1 Posts
    733 Views
    No one has replied
  • Any chance to cherrypick this fix for wpa-supplicant?

    Moved
    2
    0 Votes
    2 Posts
    977 Views
    S
    There does seem to be some testing being done. https://github.com/MonkWho/pfatt/issues/41#issuecomment-826134521 Redmine: https://redmine.pfsense.org/issues/11453 Positive/Negative responses to testing is encouraged. Request mod bump this over to dev category: https://forum.netgate.com/category/28/development
  • 2.5.1 RC - LAN traffic graph not working

    6
    0 Votes
    6 Posts
    2k Views
    L
    @patch said in 2.5.1 RC - LAN traffic graph not working: a drop down menu in "Traffic Graph" Graph Settings I was actually talking about the widgets in dashboard.
  • custom_php_pre_deinstall_command, how to prevent package removal?

    7
    0 Votes
    7 Posts
    1k Views
    cmcdonaldC
    Yea I'm not seeing any way to run code after pkg has released its lock on the database. Will keep thinking on it. Of course I can lock the package manually at some point later when pkg isn't also running an install, which might work.
  • Building a custom UI

    2
    0 Votes
    2 Posts
    1k Views
    P
    @zeronine have you looked at https://grafana.com/grafana/dashboards?search=Pfsense%20&orderBy=downloads&direction=desc
  • pf2.6 report

    17
    2 Votes
    17 Posts
    2k Views
    yon 0Y
    @yon-0 Crash report begins. Anonymous machine information: amd64 12.2-STABLE FreeBSD 12.2-STABLE devel-12-n226604-da3fcfc9b768 pfSense Crash report details: PHP Errors: [30-Mar-2021 07:44:47 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:44:47 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:44:52 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:44:52 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:44:57 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:44:57 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:02 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:02 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:07 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:07 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:12 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:12 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:17 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:17 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:22 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:22 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:27 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:27 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:32 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:32 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:37 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:37 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:42 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:42 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:47 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:47 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:53 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:53 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:45:58 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:45:58 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:03 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:03 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:08 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:08 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:13 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:13 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:18 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:18 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:23 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:23 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:28 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:28 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:33 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:33 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:38 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:38 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:43 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:43 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:48 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:48 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:54 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:54 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:46:59 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:46:59 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:47:04 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:47:04 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:47:09 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:47:09 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:47:14 Etc/GMT+8] PHP Warning: file(/cf/conf/upgrade_log.txt): failed to open stream: No such file or directory in /usr/local/www/pkg_mgr_install.php on line 629 [30-Mar-2021 07:47:14 Etc/GMT+8] PHP Warning: end() expects parameter 1 to be array, bool given in /usr/local/www/pkg_mgr_install.php on line 636 [30-Mar-2021 07:47:14 Etc/GMT+8] PHP Warning: sprintf(): Too few arguments in /usr/local/www/pkg_mgr_install.php on line 664 [30-Mar-2021 07:47:14 Etc/GMT+8] PHP Warning: gettext() expects exactly 1 parameter, 2 given in /usr/local/www/pkg_mgr_install.php on line 665 No FreeBSD crash data found.
  • Page Fault causing restart?

    1
    0 Votes
    1 Posts
    617 Views
    No one has replied
  • Custom Dynamic DNS refresh rate

    1
    0 Votes
    1 Posts
    614 Views
    No one has replied
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.