• URGENT | Need Suggestion - SG-4860 pfSense® Security Gateway Appliance

    3
    0 Votes
    3 Posts
    1k Views
    M
    I think TPTB would also like to know your expected load in terms of users and traffic and additional packages you intend to use. Also, there is a sort of consensus to try to use Intel NICs for best driver support and performance/stability.
  • NDIS driver for modem

    7
    0 Votes
    7 Posts
    4k Views
    ?
    https://forum.pfsense.org/index.php?topic=95003.0 Well if the modems are similar try this. Ignore UE0 interface and go to PPP and see if you have interfaces like this. cuaU0.1, cuaU0.2 ext…. If you do -then find the correct port(guessing game) and then at bottom of PPP setup page hit advanced and go to modem initialization string and put something like the above post for the string. I used "AT+CFUN=1" as mine. All this does is interrupt the default modem script and use a barebone config, which works with many modern modems...My Ericsson H5321HW had this type issue. Are you sure U3G is not picking it up? PPP Is the only way this will work in pfSense.
  • 0 Votes
    9 Posts
    1k Views
    C
    Looks like I'm back up!! Also completed a firmware update (was about 2 releases behind). Would still like to know what happened though so I can avoid it in the future.
  • MOVED: squid and squidguars

    Locked
    1
    0 Votes
    1 Posts
    443 Views
    No one has replied
  • Mtree usage in pfSense

    2
    0 Votes
    2 Posts
    855 Views
    jimpJ
    Some files are expected to change from the baseline, like the password files/databases, config files, and so on. It could be fine-tuned some more to ignore some of those. Long-term it would be nice to have some integrity verification but there is more work to do there yet.
  • MOVED: Need Advise on: pfsense + squid + nginx

    Locked
    1
    0 Votes
    1 Posts
    466 Views
    No one has replied
  • Apinger

    4
    0 Votes
    4 Posts
    933 Views
    MikeV7896M
    I don't, no… all the info I have is what's indicated in that bug I linked to before.
  • Send a notification email on login attempt

    2
    0 Votes
    2 Posts
    1k Views
    jimpJ
    Not currently, no. That sort of reporting is usually handled by a log or authentication server. If you have the system logs copied to an external syslog server, that may have a way to alert on login since it will cause a predictable entry in the OpenVPN log. If you have an external authentication system (RADIUS, LDAP) then it may have its own reporting.
  • Enforce stronger passwords for Local Database users?

    2
    0 Votes
    2 Posts
    388 Views
    jimpJ
    Not currently, no. It is something we reevaluate from time to time, however. It may show up eventually, but it's not there now.
  • Relayd https check problem after upgrade from 2.1.5 to 2.2.3

    1
    0 Votes
    1 Posts
    571 Views
    No one has replied
  • Monitor internet traffic in local network based on IP

    2
    0 Votes
    2 Posts
    635 Views
    KOMK
    If it's really that urgent, perhaps you should post this to the Traffic Monitoring forum… There are a number of packages available to pfSense that can monitor usage.  Cron is also one of the packages you can install, and it is fairly well-documented.
  • Unable to access the Gateway Router

    10
    0 Votes
    10 Posts
    1k Views
    johnpozJ
    And can you post your rules lan, and do you have any rules in the floating tab?  Is your internet actually working from a client connected to pfsense?  You didn't put any sort of gateway on lan interface did you?  You did not setup any sort of vpn did you? Your not using any proxy in your browser?
  • MOVED: Captive Portal with Proxy server

    Locked
    1
    0 Votes
    1 Posts
    454 Views
    No one has replied
  • Automated backup script (Moved)

    2
    0 Votes
    2 Posts
    973 Views
    E
    Hi Hydrian, I've created a simple one in PHP: // set PHP execution limits ini_set('max_execution_time', 60); set_time_limit(0); $startTime = time(); getPfsConfig("https://Your.URL.com:443", "YourUser", "YourPassWord"); $endTime = time(); echo " Runtime: " . ($endTime - $startTime) . " Seconds"; /**********************************************************************************************************/ function getPfsConfig($Url, $User, $Pass) { // Basic Config $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSLVERSION, CURL_SSLVERSION_DEFAULT); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_TIMEOUT, 20); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_COOKIEFILE, "");  // activate Session Cookies! // Login curl_setopt($ch, CURLOPT_URL, $Url . "/diag_backup.php"); curl_setopt($ch, CURLOPT_POSTFIELDS, "usernamefld=" . $User . "&passwordfld=" . $Pass . "&login=Login"); curl_exec($ch); // get the Config File XML curl_setopt($ch, CURLOPT_POSTFIELDS, "donotbackuprrd=yes&Submit=download"); $cOut = curl_exec($ch); // Logout curl_setopt($ch, CURLOPT_POST, 0); curl_setopt($ch, CURLOPT_HTTPGET, 1); curl_setopt($ch, CURLOPT_URL, $Url . "/index.php?logout"); curl_exec($ch); curl_close($ch); // Check if valid Config File     $checkXml = @simplexml_load_string($cOut);     if ($checkXml) { $rootPath = "data"; preg_match('@^https?://?([^:]+)@i', $Url, $matches); $filePath = $rootPath . "/" . $matches[1] . "_" . date("Ymd-His") . ".xml"; file_put_contents($filePath, $cOut); echo "Config File: " . $filePath . " saved.";     } else { echo "No valid XML file received!"; } } ?> Just copy the code to a file on a directory on any PHP capable server with cURL extension, create a subdirectory "data" with write permissions and edit URL and credetials. You then can run it by directly calling the file, or putting it in a cron job. Everyone feel free to use it. Any corrections and suggestions are welcome! Cheers, Harry
  • MOVED: Is this a good appliance for my setup?

    Locked
    1
    0 Votes
    1 Posts
    358 Views
    No one has replied
  • MOVED: Proxy server for only part of network

    Locked
    1
    0 Votes
    1 Posts
    349 Views
    No one has replied
  • 0 Votes
    2 Posts
    576 Views
    D
    You should assign the bridge, not the member interfaces. (And set the system tunables so that you packet filter the bridge and not the interfaces.) Answered about zillion times before.
  • UDP Max Datagram Size

    3
    0 Votes
    3 Posts
    3k Views
    J
    Well it's true the software was more designed to be used in a LAN environment, but it also is supposed to support remote phones with features, which ends up creating these huge packets. But my application aside, I am still curious what happens when a big packet hits the PFSense.
  • I can't login at pfsense 2.2.3

    8
    0 Votes
    8 Posts
    3k Views
    P
    @akong: Hello, I will upgrade from 2.1.5 to 2.2.3 at other server. What is this problem about loader.conf.local file? Could you tell me what's problem and how to fix it? It is only if you happen to have certain hardware where there seem to have been some regressions in disk things somewhere betwen FreeBSD 8.3 and 10.1. Since you have been running fine already on 2.2.* then you do not have hardware like that. For reference an example thread is: https://forum.pfsense.org/index.php?topic=87364.0
  • Boot error config.lib.inc ALIX.2D13 CF 2.2.2-RELEASE

    4
    0 Votes
    4 Posts
    1k Views
    S
    Was hoping to recover gracefully, but alas this was not to be so.  I've re-imaged and recovered from a previous backup. On another note 2.2.3-RELEASE has a smaller memory footprint from what I can see. Thanks
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.