• MOVED: Plain password issue on Freeradius ?

    Locked
    1
    0 Votes
    1 Posts
    427 Views
    No one has replied
  • Has the Radius issue been resolve? Can't find a fix

    3
    0 Votes
    3 Posts
    795 Views
    L
    Thank you jimp for the info.
  • 0 Votes
    7 Posts
    1k Views
    H
    I have the opposite issue with my ISP. If I get my IP to change by changing my MAC, I will still receive traffic for my old IP including the old MAC until the DHCP lease ends, which is like a week.
  • Issue with pfsense and juniper

    3
    0 Votes
    3 Posts
    1k Views
    T
    Tried that. Changed the MTU on the wan interface (as well, didn't take immediately in the gui either, had to force it from the shell). Frustrated that the (older) sonicwall works fine in similar setup but pfsense fails. This leads me to believe (hope?) that a setting needs changed. Still looking for suggestions! Thanks all.
  • Ssh access by using certificates

    3
    0 Votes
    3 Posts
    636 Views
    N
    short and crisp … and it works. - Thanks!
  • 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
    856 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
    934 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
    637 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
    974 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
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.