• PfSense randomly blocking web sites

    5
    0 Votes
    5 Posts
    2k Views
    G

    All i can say, most possibly its your configuration.

  • Proxy and Traffic Graph

    2
    0 Votes
    2 Posts
    519 Views
    Raffi_R

    @dotslashniks I think you should still be able to see LAN addresses under the Status/Traffic Graph/. Make sure the Interface selected is LAN. I personally don't find the traffic graph extremely useful. Try installing the ntopng package. It's a great package for checking traffic. Look it up on YouTube, there are great tutorials on what it can do.

  • Landing Page for Pfsense Proxy after User Authentication

    Moved
    1
    0 Votes
    1 Posts
    230 Views
    No one has replied
  • HAProxy - Log host name

    3
    0 Votes
    3 Posts
    1k Views
    A

    @piba said in HAProxy - Log host name:

    @aeleus
    Use the 'Advanced pass thru' textbox to put that config setting into ?

    Thanks, Piba!

    That works.

  • This topic is deleted!

    Moved
    3
    0 Votes
    3 Posts
    229 Views
    No one has replied
  • Is it possible to use haproxy for DNS over TLS?

    2
    0 Votes
    2 Posts
    1k Views
    jimpJ

    A client has to explicitly know it's using DNS over TLS, it isn't as simple as forwarding 53 to 853. Running that on 53 may just confuse clients.

    Even so I'm not sure HAProxy can be used to present a certificate and work with DNS over TLS. Maybe as a simple TCP frontend to a real DNS over TLS backend like Unbound.

    But if you want something local to answer on 53 and then send the requests out to an upstream DNS over TLS server, then the DNS Resolver on pfSense can handle that. It can also act directly as a DNS over TLS server. It's possible to do with the custom options for DNS Resolver but there are native GUI controls for it in 2.4.4.

  • Groups based access to certian websites

    2
    0 Votes
    2 Posts
    417 Views
    S

    any help in this regard ?

  • HAProxy 0.59_7 not working with SSL. :(

    8
    0 Votes
    8 Posts
    1k Views
    S

    @piba said in HAProxy 0.59_7 not working with SSL. :(:

    it does seem that backend-exch80_ipvANY isnt 'up' yet.. Have you checked what the stats page says in LastChk column

    That's the next thing I have to fix on the server side it seems. The server reports a 503 server when I do HTTP to it. I think in the past I had it setup to redirect to HTTPs but after CU10 it might have broke. So no worries right now. 443 works, so does the webserver on 443 and 80. autodiscover is on the same server as OWA so it too is broke on 80.

  • haproxy - not working with ProfileManager (certificate problem?)

    9
    0 Votes
    9 Posts
    1k Views
    R

    @PiBa
    Yes, I can at least access the macOS Server portal / Profile Manager externally now. SCEP device enrollment isn't working externally for me, though it is internally. I'm not sure how important that is--I think that's (mostly) an enroll once kind of deal. It looks like someone else beat me to experiencing this trouble, and found at least a sledge hammer style workaround. ;-)
    Thanks for all your help!

  • Need to block email attachment

    2
    0 Votes
    2 Posts
    415 Views
    GertjanG

    Hi,

    This is something that has to be implemented into the mail server. Every mail server. Thus impossible.

    Sending and retrieving mails is being done using SSL connections more and more often, so pfSense can't "see" in the data stream that it is an "email".

    And even if you pulled it off, people stopped using their fat mail client, to browse to their web mail, and then download or upload the attachment. All this will be done over https;//, leaving you out of the game completely.

    Read also, for example, https://security.stackexchange.com/questions/14120/open-source-tool-to-block-email-attachments

    edit : if you have people on your network(s) that are capable of downloading (or sending) unknown, potentially dangerous files as attachments, then you throw them on a captive portal and Wifi , using AP's with client isolating activated (== no more local network sharing) and if there is more then one AP, also enforce sharing among these AP's.
    Only then people (clients, visitors) can mess up badly, and only have their device being fckd up without exposing others on your local net(s).

  • Speed Test

    3
    0 Votes
    3 Posts
    539 Views
    D

    Ooohh. I see. Thank you, Periko 👌

  • ICAP error casued by Squid AV

    Moved
    1
    1 Votes
    1 Posts
    287 Views
    No one has replied
  • odd problem with squidguard and lan ip addresses

    1
    0 Votes
    1 Posts
    370 Views
    No one has replied
  • Hard disk is getting full due to /var/log/c-icap/access.log

    Moved
    3
    0 Votes
    3 Posts
    615 Views
    N

    Hi periko,

    Thank you for the advise. I am able to clear the log with the command suggested and my hard disk is now at 60%.

  • Squid Transparent Mode MITM doubt?

    3
    0 Votes
    3 Posts
    502 Views
    perikoP

    clean and simple, thanks _neok.

  • squidguard URL filtering not working

    Moved
    4
    0 Votes
    4 Posts
    717 Views
    _neok_

    You need enable MIT feature. This link could be help you.
    https://turbofuture.com/internet/Intercepting-HTTPS-Traffic-Using-the-Squid-Proxy-in-pfSense

    Hand up if it was useful.

    Gabriel

  • HTTP Health check backend with HAProxy package via GET request

    3
    0 Votes
    3 Posts
    2k Views
    K

    Hi, PiBa!

    Or perhaps you want to configure a 'port' option on the server to make it check on a different port than the regular traffic >>go's to? Could add that on the server-pass-thru option.

    This is exactly what I need! Thanks, it works for me with the server-pass-thru option :)

  • HAProxy OSCP stapling possibly broken

    15
    0 Votes
    15 Posts
    2k Views
    M

    Dear PiBa,

    Again, thank you very much! The complaint did not exist in previous versions. Your way does work. Placing the statement in the "Advanced pass thru" box does work also. I would not have understood this without your explanation!

    Regards,

    Michael

  • HAProxy reverse proxy with host headers

    11
    0 Votes
    11 Posts
    8k Views
    P

    @piba

    Thanks a lot for all your help.

  • Squid non-transparent mode: apple iphone siri problem

    5
    0 Votes
    5 Posts
    954 Views
    U

    I got Siri to work by adding the following to my wpad files:

    if (shExpMatch(url, "guzzoni.apple.com")) ||
    shExpMatch(url, ".guzzoni-apple.com.akadns.net"))
    return "DIRECT";

    Basically, it's bypassing the proxy but that's all I could find.

    This is where I found it:
    https://apple.stackexchange.com/questions/253843/siri-on-macos-behind-a-corporate-proxy#253947

    and

    https://blog.mansshardt.net/siri-ios-macos-hinter-squid-proxy-zum-laufen-bringen/

    You will need to use google translate unless you know how to read German.

Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.