Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    Unofficial E2guardian package for pfSense

    Scheduled Pinned Locked Moved Cache/Proxy
    1.2k Posts 70 Posters 1.4m Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • marcellocM
      marcelloc
      last edited by

      @pfsensation:

      Is there any way to turn off Tiny proxy once and for all? It's really frustrating because I use Squid and it keeps starting up when I change any configurations on E2Guardian.

      I'll split it in two packages when I have time.

      Treinamentos de Elite: http://sys-squad.com

      Help a community developer! ;D

      1 Reply Last reply Reply Quote 0
      • P
        pfsensation
        last edited by

        @marcelloc:

        @pfsensation:

        Is there any way to turn off Tiny proxy once and for all? It's really frustrating because I use Squid and it keeps starting up when I change any configurations on E2Guardian.

        I'll split it in two packages when I have time.

        Thanks Marcello! Or you could create a off switch? :P

        1 Reply Last reply Reply Quote 0
        • C
          Cino
          last edited by

          @pfsensation:

          @marcelloc:

          @pfsensation:

          Is there any way to turn off Tiny proxy once and for all? It's really frustrating because I use Squid and it keeps starting up when I change any configurations on E2Guardian.

          I'll split it in two packages when I have time.

          Thanks Marcello! Or you could create a off switch? :P

          I can't remember what I did but I think I commented out a few lines in /usr/local/etc/rc.d/tinyproxy so it wouldnt started

          
          #!/bin/sh
          
          # $FreeBSD: branches/2017Q1/www/tinyproxy/files/tinyproxy.in 340872 2014-01-24 00:14:07Z mat $
          #
          # PROVIDE: tinyproxy
          # REQUIRE: LOGIN
          #
          # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to enable tinyproxy:
          # tinyproxy_enable (bool): Set to "NO" by default.
          #                          Set it to "YES" to enable tinyproxy 
          # tinyproxy_config (path): Set to "/usr/local/etc/tinyproxy.conf" by default.
          
          . /etc/rc.subr
          
          name="tinyproxy"
          rcvar=tinyproxy_enable
          
          load_rc_config $name
          
          # Make sure the pidfile matches what's in the config file.
          : ${tinyproxy_enable="NO"}
          : ${tinyproxy_pidfile="/var/run/tinyproxy.pid"}
          : ${tinyproxy_config="/usr/local/etc/tinyproxy.conf"}
          
          # pidfile=${tinyproxy_pidfile}
          # command=/usr/local/sbin/tinyproxy
          # command_args="-c $tinyproxy_config 2> /dev/null"
          
          # run_rc_command "$1"
          
          

          Thank you for sharing your block page!

          1 Reply Last reply Reply Quote 0
          • marcellocM
            marcelloc
            last edited by

            @marcelloc:

            False positive. I got the testing repo from e2guardian but compiled a 3.5.1 version instead of 4.1. :(

            I've include the dump of the crash on e2guardian git

            I could stop it from crashing but did not had time to see why this 4.1.1 BSD amd64 e2g binaries is not intercepting ssl.

            Not sure if all http workers from 4.1.1 needs to be running or it's something that will happen with traffic.

            https://github.com/e2guardian/e2guardian/pulls

            Treinamentos de Elite: http://sys-squad.com

            Help a community developer! ;D

            1 Reply Last reply Reply Quote 0
            • P
              pfsensation
              last edited by

              @marcelloc:

              @marcelloc:

              False positive. I got the testing repo from e2guardian but compiled a 3.5.1 version instead of 4.1. :(

              I've include the dump of the crash on e2guardian git

              I could stop it from crashing but did not had time to see why this 4.1.1 BSD amd64 e2g binaries is not intercepting ssl.

              Not sure if all http workers from 4.1.1 needs to be running or it's something that will happen with traffic.

              https://github.com/e2guardian/e2guardian/pulls

              Great we're making progress. Your pull was merged. :)

              Don't worry, look at it when you have time. I'm very happy to see so much interest in E2Guardian now. Even at the stage it's in, it's way surpassed what SquidGuard could even hope to achieve.

              That being said. On 4.1.1 the 'error too many redirects' issue was fixed and Philip Pearce, blamed the time out for Squid etc. I've tried messing with it, but still get the message from time to time although less so now after increasing time out to 60 secs.

              1 Reply Last reply Reply Quote 0
              • P
                pfsensation
                last edited by

                @Cino:

                I can't remember what I did but I think I commented out a few lines in /usr/local/etc/rc.d/tinyproxy so it wouldnt started

                
                #!/bin/sh
                
                # $FreeBSD: branches/2017Q1/www/tinyproxy/files/tinyproxy.in 340872 2014-01-24 00:14:07Z mat $
                #
                # PROVIDE: tinyproxy
                # REQUIRE: LOGIN
                #
                # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to enable tinyproxy:
                # tinyproxy_enable (bool): Set to "NO" by default.
                #                          Set it to "YES" to enable tinyproxy 
                # tinyproxy_config (path): Set to "/usr/local/etc/tinyproxy.conf" by default.
                
                . /etc/rc.subr
                
                name="tinyproxy"
                rcvar=tinyproxy_enable
                
                load_rc_config $name
                
                # Make sure the pidfile matches what's in the config file.
                : ${tinyproxy_enable="NO"}
                : ${tinyproxy_pidfile="/var/run/tinyproxy.pid"}
                : ${tinyproxy_config="/usr/local/etc/tinyproxy.conf"}
                
                # pidfile=${tinyproxy_pidfile}
                # command=/usr/local/sbin/tinyproxy
                # command_args="-c $tinyproxy_config 2> /dev/null"
                
                # run_rc_command "$1"
                
                

                Thank you for sharing your block page!

                No problem, happy to give back to the community! :)

                I'm not an expert with this, so I went with the safest method and set the bool tinyproxy_enable "NO" at the end of the script. Now Tinyproxy doesn't start up anymore! :D

                1 Reply Last reply Reply Quote 0
                • C
                  Cino
                  last edited by

                  @pfsensation:

                  No problem, happy to give back to the community! :)

                  I'm not an expert with this, so I went with the safest method and set the bool tinyproxy_enable "NO" at the end of the script. Now Tinyproxy doesn't start up anymore! :D

                  That works too =D, and a lot cleaner/safer

                  1 Reply Last reply Reply Quote 0
                  • marcellocM
                    marcelloc
                    last edited by

                    Added e2guardian4 to Unofficial repo  8)

                    tinyproxy may not install by default.

                    Also testing on 2.4(looks faster)

                    But I'm seeing only one e2guardian process. I'm not sure if it's the correct behavior or still has things to fix to run correctly under Freebsd

                    e2guardian4.PNG
                    e2guardian4.PNG_thumb

                    Treinamentos de Elite: http://sys-squad.com

                    Help a community developer! ;D

                    1 Reply Last reply Reply Quote 0
                    • P
                      pfsensation
                      last edited by

                      @marcelloc:

                      Added e2guardian4 to Unofficial repo  8)

                      tinyproxy may not install by default.

                      Also testing on 2.4(looks faster)

                      But I'm seeing only one e2guardian process. I'm not sure if it's the correct behavior or still has things to fix to run correctly under Freebsd

                      Does SSL interception and all work? Are the bugs you found squashed? Is the dependencies in the package manager meant to be  e2guardian_35-3.5.1? It seems exactly the same as the old 3.5.1 version, but I haven't installed it yet.

                      Also it's threaded now right? Maybe that's why you're seeing only one process.

                      EDIT: So I ended updating E2Guardian via SSH by typing "13". Now it won't even start up. I am getting this error in logs

                      /pkg_edit.php: The command '/usr/local/etc/rc.d/e2guardian.sh start' returned exit code '1', the output was 'kern.ipc.somaxconn: 16384 -> 16384 kern.maxfiles: 131072 -> 131072 kern.maxfilesperproc: 104856 -> 104856 kern.threads.max_threads_per_proc: 4096 -> 4096 Starting e2guardian. Shared object "libssl.so.9" not found, required by "e2guardian" /usr/local/etc/rc.d/e2guardian.sh: WARNING: failed to start e2guardian'
                      

                      Also pfsense doesn't seem to be able to load the repo anymore. :(

                      Error:

                      
                      >>> Updating repositories metadata...
                      Updating Unofficial repository catalogue...
                      Fetching meta.txz: . done
                      Fetching packagesite.txz: . done
                      Processing entries: . done
                      Unofficial repository update completed. 8 packages processed.
                      Updating pfSense-core repository catalogue...
                      pkg: Repository pfSense-core load error: access repo file(/var/db/pkg/repo-pfSense-core.sqlite) failed: No such file or directory
                      pkg: https://pkg.pfsense.org/pfSense_v2_3_4_amd64-core/meta.txz: No route to host
                      repository pfSense-core has no meta file, using default settings
                      pkg: https://pkg.pfsense.org/pfSense_v2_3_4_amd64-core/packagesite.txz: No route to host
                      Unable to update repository pfSense-core
                      Updating pfSense repository catalogue...
                      pkg: Repository pfSense load error: access repo file(/var/db/pkg/repo-pfSense.sqlite) failed: No such file or directory
                      pkg: https://pkg.pfsense.org/pfSense_v2_3_4_amd64-pfSense_v2_3_4/meta.txz: No route to host
                      repository pfSense has no meta file, using default settings
                      pkg: https://pkg.pfsense.org/pfSense_v2_3_4_amd64-pfSense_v2_3_4/packagesite.txz: No route to host
                      Unable to update repository pfSense
                      Error updating repositories!
                      
                      

                      Being kinda screwed and out of choices… I changed Squid's port to 8080. Otherwise I get no connection at all, due to WPAD and settings on devices.

                      1 Reply Last reply Reply Quote 0
                      • marcellocM
                        marcelloc
                        last edited by

                        @pfsensation:

                        Does SSL interception and all work?

                        Yes.

                        @pfsensation:

                        Are the bugs you found squashed?

                        Not sure yet. youtube looks like was working better with 3.5 but it's to early to make a conclusion about it. I've tested only few minutes

                        @pfsensation:

                        Is the dependencies in the package manager meant to be  e2guardian_35-3.5.1? It seems exactly the same as the old 3.5.1 version, but I haven't installed it yet.

                        Maybe because both are e2guardian packages. To change it on ports to a e2guardian4 takes some time

                        @pfsensation:

                        Also it's threaded now right? Maybe that's why you're seeing only one process.

                        Yes, I need to test it to see how far it can go  with processing multiple cores, memory and throughput

                        @pfsensation:

                        EDIT: So I ended updating E2Guardian via SSH by typing "13". Now it won't even start up. I am getting this error in logs

                        /pkg_edit.php: The command '/usr/local/etc/rc.d/e2guardian.sh start' returned exit code '1', the output was 'kern.ipc.somaxconn: 16384 -> 16384 kern.maxfiles: 131072 -> 131072 kern.maxfilesperproc: 104856 -> 104856 kern.threads.max_threads_per_proc: 4096 -> 4096 Starting e2guardian. Shared object "libssl.so.9" not found, required by "e2guardian" /usr/local/etc/rc.d/e2guardian.sh: WARNING: failed to start e2guardian'
                        

                        e2guardian4 needs openssl. On my 2.4 test vm it installed as a dependence. I'll test again on a clean 2.3
                        you can try pkg install openssl from console

                        @pfsensation:

                        Also pfsense doesn't seem to be able to load the repo anymore. :(

                        Error:

                        
                        pkg: https://pkg.pfsense.org/pfSense_v2_3_4_amd64-core/meta.txz: No route to host
                        pkg: https://pkg.pfsense.org/pfSense_v2_3_4_amd64-core/packagesite.txz: No route to host
                        pkg: https://pkg.pfsense.org/pfSense_v2_3_4_amd64-pfSense_v2_3_4/meta.txz: No route to host
                        pkg: https://pkg.pfsense.org/pfSense_v2_3_4_amd64-pfSense_v2_3_4/packagesite.txz: No route to host
                        
                        

                        I've removed the previous package and then installed the e2guardian4 package

                        I have no idea why you are getting no route to host.

                        Treinamentos de Elite: http://sys-squad.com

                        Help a community developer! ;D

                        1 Reply Last reply Reply Quote 0
                        • marcellocM
                          marcelloc
                          last edited by

                          Also, the gui package files form 3.5.1 to 4 are different (e2guardian to e2guardian4)

                          • pfSense-pkg-E2guardian-0.9.2.txz

                          • pfSense-pkg-E2guardian4-0.1.txz

                          EDIT

                          Got this removing 3.5.1 and then instaling 4

                          >>> Installing pfSense-pkg-E2guardian4... 
                          Updating Unofficial repository catalogue...
                          Fetching meta.txz: . done
                          Fetching packagesite.txz: . done
                          Processing entries: . done
                          Unofficial repository update completed. 8 packages processed.
                          Updating pfSense-core repository catalogue...
                          pfSense-core repository is up to date.
                          Updating pfSense repository catalogue...
                          pfSense repository is up to date.
                          All repositories are up to date.
                          The following 3 package(s) will be affected (of 0 checked):
                          
                          New packages to be INSTALLED:
                          	pfSense-pkg-E2guardian4: 0.1 [Unofficial]
                          	e2guardian: 4.1.1 [Unofficial]
                          	openssl: 1.0.2l,1 [Unofficial]
                          
                          Number of packages to be installed: 3
                          
                          The process will require 15 MiB more space.
                          3 MiB to be downloaded.
                          [1/3] Fetching pfSense-pkg-E2guardian4-0.1.txz: ...... done
                          [2/3] Fetching e2guardian-4.1.1.txz: .......... done
                          [3/3] Fetching openssl-1.0.2l,1.txz: .......... done
                          Checking integrity... done (0 conflicting)
                          [1/3] Installing e2guardian-4.1.1...
                          [1/3] Extracting e2guardian-4.1.1: .......... done
                          [2/3] Installing pfSense-pkg-E2guardian4-0.1...
                          [2/3] Extracting pfSense-pkg-E2guardian4-0.1: .......... done
                          Saving updated package information...
                          done.
                          Loading package configuration... done.
                          Configuring package components...
                          Loading package instructions...
                          Custom commands...
                          Executing custom_php_install_command()...Checking E2guardian Blacklists... One moment please...Hmm...  Looks like a unified diff to me...
                          The text leading up to this was:
                          --------------------------
                          |--- /usr/local/www/pkg_edit.orig.php	2017-04-05 17:12:56.478730000 -0300
                          |+++ /usr/local/www/pkg_edit.php	2017-04-05 17:13:51.614222000 -0300
                          --------------------------
                          Patching file /usr/local/www/pkg_edit.php using Plan A...
                          Ignoring previously applied (or reversed) patch.
                          Hunk #1 ignored at 656.
                          1 out of 1 hunks ignored--saving rejects to /usr/local/www/pkg_edit.php.rej
                          done
                          Hmm...  Looks like a unified diff to me...
                          The text leading up to this was:
                          --------------------------
                          |--- /usr/local/www/pkg.orig.php	2017-04-05 17:18:25.349676000 -0300
                          |+++ /usr/local/www/pkg.php	2017-04-05 17:20:49.204578000 -0300
                          --------------------------
                          Patching file /usr/local/www/pkg.php using Plan A...
                          Ignoring previously applied (or reversed) patch.
                          Hunk #1 ignored at 329.
                          1 out of 1 hunks ignored--saving rejects to /usr/local/www/pkg.php.rej
                          done
                          

                          iniciodone.
                          Executing custom_php_resync_config_command()...```
                          iniciodone.
                          Menu items... done.
                          Services... done.
                          Writing configuration... done.
                          [3/3] Installing openssl-1.0.2l,1...
                          Extracting openssl-1.0.2l,1: .......... done
                          Message from e2guardian-4.1.1:
                          ===>  Please Note:


                          This port has created a log file named e2guardian.log that can get
                                quite large.  Please read the newsyslog(8) man page for instructions
                                on configuring log rotation and compression.

                          This port has been converted using old dansguardian-devel port
                                Let me know how it works (or not). (Patches always welcome.)


                          Message from pfSense-pkg-E2guardian4-0.1:
                          Please visit Services - E2guardian Server menu to configure the package and enable it.
                          Message from openssl-1.0.2l,1:
                          Edit /usr/local/openssl/openssl.cnf to fit your needs.

                          Cleaning up cache... done.
                          Success

                          
                          

                          Treinamentos de Elite: http://sys-squad.com

                          Help a community developer! ;D

                          1 Reply Last reply Reply Quote 0
                          • P
                            pfsensation
                            last edited by

                            @marcelloc:

                            Also, the gui package files form 3.5.1 to 4 are different (e2guardian to e2guardian4)

                            • pfSense-pkg-E2guardian-0.9.2.txz

                            • pfSense-pkg-E2guardian4-0.1.txz

                            EDIT

                            Got this removing 3.5.1 and then instaling 4

                            >>> Installing pfSense-pkg-E2guardian4... 
                            Updating Unofficial repository catalogue...
                            Fetching meta.txz: . done
                            Fetching packagesite.txz: . done
                            Processing entries: . done
                            Unofficial repository update completed. 8 packages processed.
                            Updating pfSense-core repository catalogue...
                            pfSense-core repository is up to date.
                            Updating pfSense repository catalogue...
                            pfSense repository is up to date.
                            All repositories are up to date.
                            The following 3 package(s) will be affected (of 0 checked):
                            
                            New packages to be INSTALLED:
                            	pfSense-pkg-E2guardian4: 0.1 [Unofficial]
                            	e2guardian: 4.1.1 [Unofficial]
                            	openssl: 1.0.2l,1 [Unofficial]
                            
                            Number of packages to be installed: 3
                            
                            The process will require 15 MiB more space.
                            3 MiB to be downloaded.
                            [1/3] Fetching pfSense-pkg-E2guardian4-0.1.txz: ...... done
                            [2/3] Fetching e2guardian-4.1.1.txz: .......... done
                            [3/3] Fetching openssl-1.0.2l,1.txz: .......... done
                            Checking integrity... done (0 conflicting)
                            [1/3] Installing e2guardian-4.1.1...
                            [1/3] Extracting e2guardian-4.1.1: .......... done
                            [2/3] Installing pfSense-pkg-E2guardian4-0.1...
                            [2/3] Extracting pfSense-pkg-E2guardian4-0.1: .......... done
                            Saving updated package information...
                            done.
                            Loading package configuration... done.
                            Configuring package components...
                            Loading package instructions...
                            Custom commands...
                            Executing custom_php_install_command()...Checking E2guardian Blacklists... One moment please...Hmm...  Looks like a unified diff to me...
                            The text leading up to this was:
                            --------------------------
                            |--- /usr/local/www/pkg_edit.orig.php	2017-04-05 17:12:56.478730000 -0300
                            |+++ /usr/local/www/pkg_edit.php	2017-04-05 17:13:51.614222000 -0300
                            --------------------------
                            Patching file /usr/local/www/pkg_edit.php using Plan A...
                            Ignoring previously applied (or reversed) patch.
                            Hunk #1 ignored at 656.
                            1 out of 1 hunks ignored--saving rejects to /usr/local/www/pkg_edit.php.rej
                            done
                            Hmm...  Looks like a unified diff to me...
                            The text leading up to this was:
                            --------------------------
                            |--- /usr/local/www/pkg.orig.php	2017-04-05 17:18:25.349676000 -0300
                            |+++ /usr/local/www/pkg.php	2017-04-05 17:20:49.204578000 -0300
                            --------------------------
                            Patching file /usr/local/www/pkg.php using Plan A...
                            Ignoring previously applied (or reversed) patch.
                            Hunk #1 ignored at 329.
                            1 out of 1 hunks ignored--saving rejects to /usr/local/www/pkg.php.rej
                            done
                            

                            iniciodone.
                            Executing custom_php_resync_config_command()...```
                            iniciodone.
                            Menu items... done.
                            Services... done.
                            Writing configuration... done.
                            [3/3] Installing openssl-1.0.2l,1...
                            Extracting openssl-1.0.2l,1: .......... done
                            Message from e2guardian-4.1.1:
                            ===>  Please Note:


                            This port has created a log file named e2guardian.log that can get
                                  quite large.  Please read the newsyslog(8) man page for instructions
                                  on configuring log rotation and compression.

                            This port has been converted using old dansguardian-devel port
                                  Let me know how it works (or not). (Patches always welcome.)


                            Message from pfSense-pkg-E2guardian4-0.1:
                            Please visit Services - E2guardian Server menu to configure the package and enable it.
                            Message from openssl-1.0.2l,1:
                            Edit /usr/local/openssl/openssl.cnf to fit your needs.

                            Cleaning up cache... done.
                            Success

                            
                            

                            Okay, I've installed the SSL. Rebooted, got the package installer working then installed version 4.1. And it still wasn't starting, then I disabled "log client hosnames" in the general tab. And it started. So far it seems to be working. I'll keep you updated. Thanks for getting this working! :)

                            EDIT: SSL interception isn't working. Do I need to edit that : /usr/local/openssl/openssl.cnf ?

                            1 Reply Last reply Reply Quote 0
                            • marcellocM
                              marcelloc
                              last edited by

                              @pfsensation:

                              EDIT: SSL interception isn't working.

                              Some config changes on this 4.1 are "asking" for a service restart.

                              I'm using ssl interception, with basic authentication and the custom html error page working

                              @pfsensation:

                              Do I need to edit that : /usr/local/openssl/openssl.cnf ?

                              No. That message is from the bsd package. Not related to e2guardian.

                              Treinamentos de Elite: http://sys-squad.com

                              Help a community developer! ;D

                              1 Reply Last reply Reply Quote 0
                              • P
                                pfsensation
                                last edited by

                                @marcelloc:

                                @pfsensation:

                                EDIT: SSL interception isn't working.

                                Some config changes on this 4.1 are "asking" for a service restart.

                                I'm using ssl interception, with basic authentication and the custom html error page working

                                @pfsensation:

                                Do I need to edit that : /usr/local/openssl/openssl.cnf ?

                                No. That message is from the bsd package. Not related to e2guardian.

                                I'm using IP Authentication and SSL interception / forging doesn't seem to work at all. Some configs seem to not load up correctly in the GUI until I saved them again, then their correct metadata loaded. I also tried rebooting etc. Didn't fix the SSL issue.

                                1 Reply Last reply Reply Quote 0
                                • marcellocM
                                  marcelloc
                                  last edited by

                                  @pfsensation:

                                  I'm using IP Authentication and SSL interception / forging doesn't seem to work at all.

                                  I'll set ip Authentication to see if I get same result.

                                  I'm using squid as parent proxy to be able to use it's authentication.

                                  Treinamentos de Elite: http://sys-squad.com

                                  Help a community developer! ;D

                                  1 Reply Last reply Reply Quote 0
                                  • P
                                    pfsensation
                                    last edited by

                                    @marcelloc:

                                    @pfsensation:

                                    I'm using IP Authentication and SSL interception / forging doesn't seem to work at all.

                                    I'll set ip Authentication to see if I get same result.

                                    I'm using squid as parent proxy to be able to use it's authentication.

                                    I'm also using Squid as a parent proxy, but no extra authentication on that. It's acting quite strange, but I definitely do feel that web pages are snappier. It doesn't feel like everything is going through a proxy anymore. And memory usage so far has dropped by 15% for me, not sure if that's because of SSL issue though.

                                    1 Reply Last reply Reply Quote 0
                                    • marcellocM
                                      marcelloc
                                      last edited by

                                      I can't reproduce the issue here.  :(

                                      I got ip authentication, correct group, ssl interception and deny pages.

                                      I've unselected soft restart on general tab and also did a restart few seconds after apply config.

                                      e2g_tail_log.PNG
                                      e2g_tail_log.PNG_thumb

                                      Treinamentos de Elite: http://sys-squad.com

                                      Help a community developer! ;D

                                      1 Reply Last reply Reply Quote 0
                                      • marcellocM
                                        marcelloc
                                        last edited by

                                        @pfsensation:

                                        I'm using IP Authentication and SSL interception / forging doesn't seem to work at all.

                                        Did you enabled ssl on general tab?

                                        It's a new option introduced on 4.1

                                        e2g_ca.PNG
                                        e2g_ca.PNG_thumb

                                        Treinamentos de Elite: http://sys-squad.com

                                        Help a community developer! ;D

                                        1 Reply Last reply Reply Quote 0
                                        • P
                                          pfsensation
                                          last edited by

                                          @marcelloc:

                                          Did you enabled ssl on general tab?

                                          It's a new option introduced on 4.1

                                          DAMNIT! That was it. For some reason before, that option didn't show / or I might have missed it (forgive me it's 2:32am in London).

                                          It really does seem a lot faster, and some programs which were giving some trouble before with SSL interception. Seem to be working now. :O

                                          Thanks a lot Marcello for your hard work and effort! Hats off to you! :)

                                          1 Reply Last reply Reply Quote 0
                                          • marcellocM
                                            marcelloc
                                            last edited by

                                            @pfsensation:

                                            DAMNIT! That was it. For some reason before, that option didn't show / or I might have missed it (forgive me it's 2:32am in London).

                                            It really does seem a lot faster, and some programs which were giving some trouble before with SSL interception. Seem to be working now. :O

                                            Thanks a lot Marcello for your hard work and effort! Hats off to you! :)

                                            GREAT!!!!  8) If we can confirm it's working better and faster, I'll remove soon the 3.5.1 package from Unofficial repo and wait for a 4.1.1 release to update Freebsd ports repo.

                                            Treinamentos de Elite: http://sys-squad.com

                                            Help a community developer! ;D

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.