• squid auth AD NTLM option

    1
    0 Votes
    1 Posts
    239 Views
    No one has replied
  • TCP_MISS/0

    2
    0 Votes
    2 Posts
    354 Views
    KOMK
    You get that response when the object requested is not in the cache and must be fetched from its source.
  • Releasing a single website in Target categories (solved)

    Moved
    3
    0 Votes
    3 Posts
    529 Views
    M
    Thank you. was using "---" in target so this is not going.
  • Squid Proxy Reports left after Squid pkg removal

    6
    0 Votes
    6 Posts
    1k Views
    chudakC
    ... and then the remove (de install). did that with no luck :(
  • I need urgent help with the squid server and squid server filter

    1
    0 Votes
    1 Posts
    243 Views
    No one has replied
  • Access home assistant externally through Duckdns with squid proxy sever

    1
    0 Votes
    1 Posts
    675 Views
    No one has replied
  • HAProxy causes failure to operate properly after 2.4.4 upgrade

    1
    0 Votes
    1 Posts
    523 Views
    No one has replied
  • Pfsense 2.4.4 can't install / reinstall Squid Package 0.4.44_4

    4
    0 Votes
    4 Posts
    1k Views
    G
    I fixed the problem with backup config, cut out the Squid-Reverse Proxy section and Restore the modified backup file. Then the Squid-Package installed without problem. Also does the new package 0.4.44_5. the problem was inside this section: <squidreverse> <config> <reverse_interface>wan</reverse_interface> <reverse_external_fqdn>server11.xxx.xx</reverse_external_fqdn> <reverse_http></reverse_http> <reverse_http_port></reverse_http_port> <reverse_http_defsite></reverse_http_defsite> <reverse_https></reverse_https> <reverse_https_port></reverse_https_port> <reverse_https_defsite></reverse_https_defsite> <reverse_ssl_cert></reverse_ssl_cert> <reverse_int_ca></reverse_int_ca> <deny_info_tcp_reset>on</deny_info_tcp_reset> <reverse_ignore_ssl_valid></reverse_ignore_ssl_valid> <reverse_owa></reverse_owa> <reverse_owa_ip>192.168.10.38</reverse_owa_ip> <reverse_owa_activesync></reverse_owa_activesync> <reverse_owa_rpchttp></reverse_owa_rpchttp> <reverse_cache_peer>SE9TVDE7MTkyLjE2OC4xMC4xMDs4MDtIVFRQ</reverse_cache_peer> <revrse_uri>VVJJMTtwdWJsaWM7d3d3Lnh4eC54eA=</revrse_uri> <reverse_acl>SE9TVDE7VVJJMQ==</reverse_acl> </config> </squidreverse>
  • HAProxy url-rewrite

    Moved
    1
    0 Votes
    1 Posts
    382 Views
    No one has replied
  • [2.4.x] Squid/ClamAV: Fix for C-ICAP 0.5.x not starting

    17
    4 Votes
    17 Posts
    10k Views
    jimpJ
    @eden said in [2.4.x] Squid/ClamAV: Fix for C-ICAP 0.5.x not starting: Hello all I am also having this issues with the ICAP service not starting. I have edited then config as requested above no joy. I then decided to reinstall the package but this did not make a difference. I have now uninstall the squid package completely and reinstalled it. Still the service will not start. If that is the case then your problem is not the same problem as this thread. Start a new thread with details about your configuration, any error messages from logs, etc.
  • RESOLVIDO

    1
    0 Votes
    1 Posts
    296 Views
    No one has replied
  • Package install error after latest patches

    4
    0 Votes
    4 Posts
    1k Views
    P
    OK fixed it.. Here is how I did it... Have WAN connectivity assigned via DHCP dhclient bce0 Update the pkg metadata pkg-static update -f Forcefully reinstall all packages pkg-static upgrade -fy Note: I have a broadcom NIC, thus BCE0, it might be different on your setup.
  • Update package Ha-Proxy Fails 0.59.11

    2
    0 Votes
    2 Posts
    530 Views
    P
    Fixed after upgrade tot 2.4.4
  • block all sites except some ones in squid

    1
    0 Votes
    1 Posts
    284 Views
    No one has replied
  • LDAP authentication with a Fusion LDAP server

    Moved
    3
    0 Votes
    3 Posts
    654 Views
    S
    I am doing LDAP authenthication with Zentyal AD [image: 1537789758514-pfsense-ldap-resized.png] Can anyone help.
  • Squid and OpenVPN - remote internet traffic proxying

    4
    0 Votes
    4 Posts
    6k Views
    T
    @zeureo1 said in Squid and OpenVPN - remote internet traffic proxying: add a FW rule on the OpenVPN iface to allow TCP/3128 from OpenVPN subnet to localhost. Can you please be clear on "adding a FW rule on the OpenVPN iface to allow TCP/3128 from OpenVPN subnet to localhost". I've been using pfsense for years and I don't believe I've heard of adding FW rule on OpenVPN
  • Bug in newest check_ip.php

    3
    0 Votes
    3 Posts
    918 Views
    M
    del /usr/local/bin/check_ip.php and use the following code. i solve #!/usr/local/bin/php-cgi -q <?php /* * check_ip.php * * part of pfSense (https://www.pfsense.org) * Copyright (c) 2016-2017 Rubicon Communications, LLC (Netgate) * Copyright (c) 2013-2016 Marcello Coutinho * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ require_once("config.inc"); require_once("globals.inc"); error_reporting(0); global $g; // stdin loop if (!defined(STDIN)) { define("STDIN", fopen("php://stdin", "r")); } if (!defined(STDOUT)) { define("STDOUT", fopen('php://stdout', 'w')); } while (!feof(STDIN)) { $check_ip = trim(fgets(STDIN)); $dbs = glob("{$g['vardb_path']}/captiveportal*.db"); $status = NULL; foreach ($dbs as $db) { if(!strpos($db, "_radius")) { $status = squid_check_ip($db, $check_ip); if (isset($status)){ break; } } } if (!is_null($status)) { fwrite(STDOUT, "OK user={$status}\n"); } else { fwrite(STDOUT, "ERR\n"); } } function squid_check_ip($db, $check_ip) { exec("/usr/local/bin/sqlite3 {$db} \"SELECT ip FROM captiveportal WHERE ip='{$check_ip}'\"", $ip); if ($check_ip == $ip[0]) { exec("/usr/local/bin/sqlite3 {$db} \"SELECT username FROM captiveportal WHERE ip='{$check_ip}'\"", $user); return $user[0]; } } ?>
  • block upload file ext.

    Moved
    1
    0 Votes
    1 Posts
    255 Views
    No one has replied
  • my home pfsense block outlook

    Moved
    1
    0 Votes
    1 Posts
    254 Views
    No one has replied
  • Last version of Squidguard not read/write target rules access

    3
    0 Votes
    3 Posts
    580 Views
    C
    @fabricioguzzy said in Last version of Squidguard not read/write target rules access: You are probably talking about this issue Exactly this problem Fabrizio. Thank you.
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.