Hi,
I am only posting to guide others if you are struggling with slow browsing speed. What I have noticed it happens when Squid is running. Becuase with squid HAVP and antivirus also inspect the traffic. Mainly slow browsing is caused by HAVP. There are some tweaks however to cater with this situation. You can do the following:
Edit:nano /usr/lib/efw/dansguardian/default/settings
change the values as below:
MAXCHILDREN=500
MINCHILDREN=128
MINSPARECHILDREN=32
PREFORKCHILDREN=16
MAXSPARECHILDREN=256
MAXAGECHILDREN=10000
Remember to restart services of havp
Secondly, also modify the following:
Editnano /var/efw/havp/settings
and change 2 values as below
MAXSERVERS=150
SERVERNUMBER=50
Remember to restart services.
I have also noticed that though we make the above changes it works very well but some how you have to refresh your squid cache after some time say about 2 to three months when you feel slow browsing issues. This is what I am following.
To delete the cache of squid under Endian Firewall, do the following:
Make sure you stop the squid service before continuing. Either you can access GUI and under proxy, turn it of. Or you can do it from console by running the following command:
/etc/init.d/squid stop
Run the following command in console:
rm -fr /var/spool/squid/*
This command might take a while depending on the cache size.The above command will delete the directory structure of Squid and also delete the SWAP.STATE for Squid.
Then run the following command to recreate the squid directory structure:
/usr/sbin/squid -z
The above command will recreate the directory structure for squid and now run the following command to start squid again.
/etc/init.d/squid start
Hope this helps.