• Pfsense or package not working as expected

    3
    0 Votes
    3 Posts
    1k Views
    KOMK
    LightSquid is just a reporting tool that slurps Squid logs and formats them into charts.
  • No internet connectivity on WAN with valid public IP

    Locked
    13
    0 Votes
    13 Posts
    16k Views
    P
    Sorry for the delayed reply. After reading this: @Derelict: This stuff just works. (which were my thoughts precisely!) we exchanged cables, changed the patching, and did tons of other stuff… in the end we had the network guys check the built-in cabling in the room we were working in: there were only four network sockets, two (!) of which were faulty...! A week earlier they said they had tested and everything had been fine!? So: thanks everyone for your help and your time and sorry about the waste of time on your parts. Regards Karl
  • Some questions on configuring NAT 1:1

    2
    0 Votes
    2 Posts
    803 Views
    C
    most of your questions are answered here. https://doc.pfsense.org/index.php/1:1_NAT https://doc.pfsense.org/index.php/Why_can't_I_access_forwarded_ports_on_my_WAN_IP_from_my_LAN/OPTx_networks
  • Can I run this as a UTM appliance? APU 1C 4GB (3NIC+USB+RTC)

    11
    0 Votes
    11 Posts
    3k Views
    O
    Thats great, thanks for all the fast responses. If I buy this I will bench test and report back. Thanks :)
  • WebConfigurator fails after restore on new hardware / Certificates broken

    6
    0 Votes
    6 Posts
    2k Views
    C
    @Starko: Sorry I never replied! The error I got was selfmade. There has never been an issue with pfsense. I worked through our backupped config.xml with Notepad++ and did an Replace all for the changed interface names (vr1 became em1 .. etc) I was so lucky that out certs had the part "vr1" in it. So literally replaced parts of our certs, no wonder they were broken. After I replaced the interface names manually, the import worked fine on the new hardware. Thanks for the follow up. Yeah be very careful doing "replace all", as cert contents commonly will match any short string you're replacing, which will of course break the cert. When I edit configs like that, I always make sure to confirm every instance of the string that's being replaced, as there are a variety of possibilities to break things like that.
  • Fatal trap 12: page fault while in kernel mode

    5
    0 Votes
    5 Posts
    2k Views
    H
    that's what we are here for ;)
  • The dreaded root mount error - no fix found

    2
    0 Votes
    2 Posts
    760 Views
    T
    just in case anyone else stumbles across this here is the fix. type ? and press enter, this will give the real drive partition number. then type ufs:/dev/adxs1a where x is the number from above. boot. shell into pfsense and edit \etc\fstab and make it match what you entered.
  • Cannot install PfSense APU

    2
    0 Votes
    2 Posts
    1k Views
    chrismacmahonC
    Issue is resolved. It was user error…..Make sure your connection speed is 9600 and not the apu default.
  • Samba on pfsense 2.1.5 not installing

    2
    0 Votes
    2 Posts
    2k Views
    I
    Sorry, forgot to insert command. After setting up squid+dansguardian when i execute the following command in ssh to install samba I am getting error please see attached log file for the error. pkg_add http://e-sac.siteseguro.ws/packages/amd64/8/All/samba36-3.6.3.tbz
  • PFs under HP Proliant ML350p Gen8 E5-2620

    2
    0 Votes
    2 Posts
    1k Views
    H
    pfsense 2.2 is not based on freebsd 8.3 , its based on Freebsd 10.1 2.2 is in beta and might have issues … it might be better to post them in the "2.2 Snapshot Feedback and Problems" - section of the forum
  • 0 Votes
    5 Posts
    1k Views
    L
    Thank you very much I will try this out.
  • Install help/build questions

    4
    0 Votes
    4 Posts
    1k Views
    W
    pfBlocker is what you want.
  • Pfsense 2.1.5 64bit Install

    5
    0 Votes
    5 Posts
    2k Views
    stephenw10S
    There appear to be a number of issues that can cause the 38% issue, all of them corner cases. It's hard to say what might be causing problems for you. However 2.2 is built on FreeBSD 10.1 so a lot has changed. There's a good chance that whatever is causing it will have been updated. Try a 2.2 snapshot and find out. Steve
  • How to run Non-Nano Version on USB Stick

    3
    0 Votes
    3 Posts
    965 Views
    I
    That's strange, I had the exact opposite problem, my flash drives were failing, I installed a $20 WD blue  3.5" HDD and never looked back. Do you know for sure that your USB stick will boot on your motherboard? I only ask because I have seen several instances where I could not boot from a USB drive, trying a different USB stick with the same setup; the system would boot.
  • Removing Packages

    3
    0 Votes
    3 Posts
    914 Views
    P
    Most packages leave their settings in the config file. That way you can uninstall them and then reinstall to clean up an issue with the installation and not have to input the settings again. That can work both ways - sometimes you really want to clean out all settings and get a really fresh start at setting things up! So yes, it would be nice if package uninstall had an option to also remove all settings.
  • 30GB max partition size limit for install

    16
    0 Votes
    16 Posts
    3k Views
    A
    30GB will do the job, thanks all :)
  • Duplex Problem

    11
    0 Votes
    11 Posts
    3k Views
    DerelictD
    I put my cable and dsl modems on blank, untagged vlans with my WAN ports.  That might enable you to go back to the realtek and hard-set the switchport to 100-Full to the cable modem. (Security issues aside (I'd rather have a dedicated outside switch), I do it so I can put a sniffer on the outside on a mirror port.)
  • Pfsense is not connecting to internet

    2
    0 Votes
    2 Posts
    1k Views
    P
    Short answer: edit your /etc/inc/globals.inc, change the xmlrpcbaseurl from https to http. "xmlrpcbaseurl" => "http://packages.pfsense.org/", Long answer: In order to retrieve package updates for pfsense from behind an upstream web proxy, you may need to change the base URL used by the package manager.  The pfsense updater and the package manager work differently, so system updates may work fine. Your upstream proxy probably doesn't support the mechanism that the package manager's XML_RPC client is trying to use. The package manager connects to your upstream web proxy and says something like: POST https://packages.pfsense.org:443/xmlrpc.php HTTP/1.0 User-Agent: PEAR XML_RPC Host: packages.pfsense.org Content-Type: text/xml ... Most clients would usually start their request out like this: CONNECT https://packages.pfsense.org:443/xmlrpc.php HTTP/1.0 ... Many proxies choke on the type of request that the XML_RPC client uses, but disabling the HTTPS gets around it.  The xmlrpc_client checks the URL from globals.inc, and changes it from port 443/SSL to 80 in its xmlrpc_client.inc logic.
  • MOVED: Atualização de Regras.

    Locked
    1
    0 Votes
    1 Posts
    483 Views
    No one has replied
  • Vanilla install PFSense Business Test – no internet

    31
    0 Votes
    31 Posts
    6k Views
    K
    Enjoy (-;
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.