Subcategories

  • Discussions about packages which handle caching and proxy functions such as squid, lightsquid, squidGuard, etc.

    4k Topics
    21k Posts
    E
    I even tried deleting and creating a new certificate. Any suggestions?
  • Discussions about packages whose functions are Intrusion Detection and Intrusion Prevention such as snort, suricata, etc.

    2k Topics
    16k Posts
    S
    @Smeg.Head I'd think the main question would be whether it's a one-off or reproducible. Obviously that situation isn't correct but it's a question of why, and I haven't seen any other recent posts about it. Was the install done on 2.7.2 or is it older? I don't recall offhand when the bug was, but I'd guess 5-8 years ago.
  • Discussions about packages that handle bandwidth and network traffic monitoring functions such as bandwidtd, ntopng, etc.

    572 Topics
    3k Posts
    keyserK
    @Antibiotic No it’s not possible with NtopNG as it is not a Netflow collector. You need nProbe for that which will “translate” recieved netflows into flows that NtopNG understands and can visualize (with very very little detail might I add as Netflows has no additonal information apart from sender/reciever and volume). The NtopNG package and the product in general is more geared towards visualising and recording traffic details from actual packet captures. This contains MUCH more metadata about the sessions than netflows (DNS names, protocol information and myriads of other things). But pffSense Plus has a builtin Netflow exporter if you have an external netflow collector on hand.
  • Discussions about the pfBlockerNG package

    3k Topics
    20k Posts
    tinfoilmattT
    @BiloxiGeek said in DNSBL and IPv6: Does it just follow the IPv4 address that is listed above that? In my case it would end up being ::10.0.0.86 Yes. In this specific context that's the notation being used. (Full IPv6 web server address, for reference then, would be: http://[0000:0000:0000:0000:0010:0000:0000:0086]) Nota bene: I use 0.0.0.0 which renders the DNSBL webserver useless and inaccessible, but otherwise returns 0.0.0.0 or ::/NOERROR answers to all blocked lookups.
  • Discussions about Network UPS Tools and APCUPSD packages for pfSense

    101 Topics
    2k Posts
    dennypageD
    @jhg said in NUT fails to start after 2.7.2 -> 2.8.0 upgrade: Interesting. I would have thought the initial reboot, which occurred as part of the upgrade, would have done the trick, but it took a second reboot, just now, to get things working. Glad you have it sorted. There was no difference in the output of usbconfig show_ifdrv at any point -- before or after unplugging/replugging the USB cable, nor after rebooting. ... Question: What would tell me whether or not a driver was loaded? If there were an attached driver, it should have shown up with the show_ifdrv command. If you use the command and look at the other usb devices, I think they will show attached drivers. I don't expect to see a driver attached to the ups, because there is a quirk that tells the OS to ignore that device (and not attach a driver). Look for idVendor and idProduct in the above output. The Vendor ID for your device is 0764, which corresponds to Cyber Power Systems, and the Product ID for your device is 0601, which is registered as "PR1500LCDRT2U UPS" (don't sweat an exact match for the name). You can see the quirk with the following command: [25.07-RC][root@fw]/root: usbconfig dump_device_quirks | grep 0764 VID=0x0764 PID=0x0005 REVLO=0x0000 REVHI=0xffff QUIRK=UQ_HID_IGNORE VID=0x0764 PID=0x0501 REVLO=0x0000 REVHI=0xffff QUIRK=UQ_HID_IGNORE VID=0x0764 PID=0x0601 REVLO=0x0000 REVHI=0xffff QUIRK=UQ_HID_IGNORE [25.07-RC][root@fw]/root: Your device is third on the list. The HID_IGNORE quirk says to ignore the device and not attach a driver. @jhg said in NUT fails to start after 2.7.2 -> 2.8.0 upgrade: You might consider adding this resolution to the release notes for 2.8. LOL... sorry, I don't have input to the release notes (I don't work here). While I wrote and maintain various packages, including NUT, I'm still just a volunteer. Most packages are actually written by volunteers.
  • Discussions about the ACME / Let’s Encrypt package for pfSense

    501 Topics
    3k Posts
    A
    Hi, Please help to forward / report the bugs in ACME 1.0 package. Thanks.
  • Discussions about the FRR Dynamic Routing package on pfSense

    294 Topics
    1k Posts
    yon 0Y
    said in Please update frr on Pfsense+ to FRR 10.3: https://redmine.pfsense.org/issues/15785 now frr 10.4.1
  • Discussions about the Tailscale package

    90 Topics
    610 Posts
    E
    Updated CE 2.7.2 to 1.86.4_1 Changelog pkg add -f https://pkg.freebsd.org/FreeBSD:14:amd64/latest/All/tailscale-1.86.4_1.pkg Freshports
  • Discussions about WireGuard

    700 Topics
    4k Posts
    Bob.DigB
    @HFADmin said in Wireguard Multi VPN Tunnels: Can I have the main pfsense monitor all the gateways That is the default.
  • Trying to install SpeedTest-CLI on 2.6.0-RELEASE (amd64)

    1
    0 Votes
    1 Posts
    286 Views
    No one has replied
  • How to run script from the persistant directory /conf or /cf/conf/?

    2
    0 Votes
    2 Posts
    402 Views
    bmeeksB
    Don't do that! That directory is "no execute" for a very good reason. Instead, put your custom shell scripts in /usr/local/etc/rc.d/ or perhaps /usr/local/bin/.
  • Check_MK on pfSense 2.4 w/ Update-persistence

    Moved
    2
    2 Votes
    2 Posts
    3k Views
    M
    Hi calebh, thanks for writing all this up. Just to say, I've been looking into alternative ways of doing this, which don't need xinetd or the filter cronjob. One way is to add an SSH key to the User's Authorized Keys, e.g. `restrict,command="/opt/bin/check_mk_agent" ssh-rsa AAAAB...` And then set up an Agents > Other integrations > Individual program call instead of agent access rule, like: ssh admin@$HOSTADDRESS$ -i mysshkey (Some more parameters might be needed to disable TTY or something, I can't remember.) I've decided against this approach though, because the SSH connections end up spamming the System Logs. I think a better way is to create a simple .php file that calls the agent: /usr/local/www/check_mk_agent.php <?php header('Content-Type: text/plain; charset=utf-8'); system('/opt/bin/check_mk_agent'); ?> Then the Individual Program Call should look something like: curl -ks https://$HOSTADDRESS$/check_mk_agent.php It would be possible to modify the PHP to add some more security, perhaps some IP address filtering or to check for a secret parameter. But even without those steps, it at least has the advantage of encrypting the traffic over SSL so it can't be read by third parties. Note, this will end up spamming the nginx log (System > GUI Service). Arguably that's better than spamming the System Log, but may still not be appreciated.
  • HAProxy GUI error after upgrade to pfSense+ 23.01

    23
    1 Votes
    23 Posts
    5k Views
    G
    Happy to confirm the error has been resolved by upgrading to pfSense+ 23.05. That release includes the upgraded package haproxy-devel 0.62_13 (was haproxy-devel 0.62_12). Hope this helps someone.
  • Bandwidthd legend/logo pics not showing

    3
    2 Votes
    3 Posts
    997 Views
    A
    Same problem after so many years
  • udpbroadcastrelay wont start

    Moved
    3
    0 Votes
    3 Posts
    667 Views
    B
    @stephenw10 thanks for your answer. looks like you have to configure a forward to be able to start the service, thanks
  • No available packges (2)

    Moved
    9
    0 Votes
    9 Posts
    915 Views
    S
    @Dobby_ this one actually works. thank you so much for your help!
  • Block layer 7 on websites

    13
    0 Votes
    13 Posts
    2k Views
    M
    @ammar177 Using pfBlockerNG. Create an alias of ASNs you want to block (netflix,hulu,peacock,etc..). Apply that alias to the IPs that should be blocked. There isnt a clean way to block streaming sites on pfsense. Snort openapp.id rules have not been updated in some time (over 5 years) so they will not account for the latest streaming sites. You will need to write your own rules for that. If you are looking to block streaming media sites on a phone its probably best to point that client to openDNS or NextDNS where you can do category-based blocking and not use pfSense for DNS. That's the best recommendation i can give.
  • Freeradius not taking new ACME certificate

    18
    0 Votes
    18 Posts
    2k Views
    A
    There’s nothing more expensive about providing a wildcard. But, if they were the same price nobody would buy a single domain certificate, because it would be simpler and as cheap to buy the wildcard. People who provide certificates have invested time and money to be in that club. Therefore they want to get back as much as they can from selling them. People are willing to pay more for wildcards so they are charged more. It’s just ordinary economics.
  • node_exporter failing uname collector

    1
    0 Votes
    1 Posts
    266 Views
    No one has replied
  • FreeRADIUS config file exposure/preservation feature request

    1
    0 Votes
    1 Posts
    355 Views
    No one has replied
  • radsecproxy package

    1
    0 Votes
    1 Posts
    243 Views
    No one has replied
  • Enabling/disabling interfaces creates issues for ntopng

    1
    0 Votes
    1 Posts
    263 Views
    No one has replied
  • System Patches package version 2.2.4

    1
    10 Votes
    1 Posts
    572 Views
    No one has replied
  • Should I uninstall a patch before/after an upgrade?

    Moved
    5
    0 Votes
    5 Posts
    1k Views
    jimpJ
    If you added a patch manually and that fix is included in the new release, then just delete the entry from the package without touching it. If you revert a patch after upgrading you undo the fix and put back the bad code. Manual patch entries are never automatically removed. Only the "recommended" list changes automatically by version.
  • pkg repository update fall

    1
    0 Votes
    1 Posts
    419 Views
    No one has replied
  • lcdproc crystalfontz problem

    11
    0 Votes
    11 Posts
    2k Views
    Dobby_D
    @fireodo said in lcdproc crystalfontz problem: @Dobby_ said in lcdproc crystalfontz problem: Thank you very much indeed, would be one of my next options (project) to enrich my small APU´s. If you like to look here too: https://lcdstore.de/CF635TMFKU Cool after installing the Power and reset button in/on the APU I would assume that could be the next "project" or perhaps later if the Bluetooth serial port is ready installed.
  • [Solved] pfSense-pkg-System_Patches reinstallation failed!

    8
    0 Votes
    8 Posts
    1k Views
    F
    @SteveITS said in [Solved] pfSense-pkg-System_Patches reinstallation failed!: @furom They’re working on something. There’s an open redmine from a couple years ago but I don’t have the URL handy. At least it blocks it now. Per my sig it was… worse. That is great. And fully agree, this is much to prefer over ruining your system, no doubt at all so with some more insight, only grateful it (as usual with pfSense) turned out well :)
  • Several vulnerable packages without update

    16
    0 Votes
    16 Posts
    2k Views
    Dobby_D
    @fadinzr [23.05-RELEASE][root@xx xx xx]/root: pkg audit -F vulnxml file up-to-date libxml2-2.10.3_1 is vulnerable: libxml2 -- multiple vulnerabilities CVE: CVE-2023-29469 CVE: CVE-2023-28484 WWW: https://vuxml.FreeBSD.org/freebsd/0bd7f07b-dc22-11ed-bf28-589cfc0f81b0.html curl-8.0.1 is vulnerable: curl -- multiple vulnerabilities CVE: CVE-2023-28322 CVE: CVE-2023-28321 CVE: CVE-2023-28320 CVE: CVE-2023-28319 WWW: https://vuxml.FreeBSD.org/freebsd/a4f8bb03-f52f-11ed-9859-080027083a05.html py39-setuptools-63.1.0 is vulnerable: py39-setuptools -- denial of service vulnerability CVE: CVE-2022-40897 WWW: https://vuxml.FreeBSD.org/freebsd/1b38aec4-4149-4c7d-851c-3c4de3a1fbd0.html redis-7.0.10 is vulnerable: redis -- HINCRBYFLOAT can be used to crash a redis-server process CVE: CVE-2023-28856 WWW: https://vuxml.FreeBSD.org/freebsd/96b2d4db-ddd2-11ed-b6ea-080027f5fec9.html 4 problem(s) in 4 installed package(s) found. [image: 1685297038850-27latest.jpg] [image: 1685297038896-27latestpkg.jpg]
  • Minor UI bug in udpbroadcastrelay

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