Koozali.org: home of the SME Server

Obsolete Releases => SME Server 7.x => Topic started by: gmr2000 on March 03, 2006, 10:57:08 PM

Title: ISP proxy
Post by: gmr2000 on March 03, 2006, 10:57:08 PM
I can't find the ISP setting like Ver. 6, Is there any change in the seting. and how I can configure the ISP proxy.
Title: ISP proxy
Post by: dsemuk on March 04, 2006, 12:19:37 AM
I cannot find the dialogue to setup an ISP proxy as in earlier versions, perhaps a bug report would get the reason the facility has been removed, the alternative way of setting the proxy or a workaround.

Dave
Title: ISP proxy
Post by: CharlieBrady on March 04, 2006, 03:41:49 AM
Quote from: "dsemuk"
I cannot find the dialogue to setup an ISP proxy as in earlier versions, perhaps a bug report would get the reason the facility has been removed,


It's been removed because it is quite rarely used these days, and we wanted the console setup to be as simple as possible.

Quote

... the alternative way of setting the proxy or a workaround.


config set SquidParent hostname.of.parent.cache
config set SquidParentPort nnn
expand-template /etc/squid/squid.conf
/etc/rc7.d/S90squid restart
Title: ISP proxy
Post by: Black on March 12, 2006, 08:37:54 AM
I just moved and found myself without dsl :( no im on a modem using e-smiths modem setting. Im going to connect a few computers to the network and was wondering if that ISP setting was a cache server? if so i will need that pretty bad.
Title: ISP proxy
Post by: CharlieBrady on March 12, 2006, 07:30:57 PM
Quote from: "Black"
I just moved and found myself without dsl :( no im on a modem using e-smiths modem setting. Im going to connect a few computers to the network and was wondering if that ISP setting was a cache server? if so i will need that pretty bad.


Only if your ISP's connection to the net is poor. Your server will have its own cache, which your client machines will use. You would only want to set your upstream cache information if your ISP doesn't use a transparent cache, also has limited bandwidth or high latency connection to the net proper, and has other customers who browse the same stuff that you do.
Title: ISP proxy
Post by: Taltos on March 21, 2006, 01:28:22 PM
Quote from: "CharlieBrady"
Quote from: "Black"
I just moved and found myself without dsl :( no im on a modem using e-smiths modem setting. Im going to connect a few computers to the network and was wondering if that ISP setting was a cache server? if so i will need that pretty bad.


Only if your ISP's connection to the net is poor. Your server will have its own cache, which your client machines will use. You would only want to set your upstream cache information if your ISP doesn't use a transparent cache, also has limited bandwidth or high latency connection to the net proper, and has other customers who browse the same stuff that you do.



Hi,

I must use the ISP proxy for ftp connection (for the web he as a transparent proxy) Which setting does I use for that ?


thx for helping !
Title: ISP proxy
Post by: CharlieBrady on March 21, 2006, 02:15:35 PM
Quote from: "Taltos"

I must use the ISP proxy for ftp connection (for the web he as a transparent proxy) Which setting does I use for that ?


The setting in your browser.
Title: Disabling Parent Child relationship
Post by: bjoyce on June 18, 2007, 02:54:16 AM
Hi, I have applied this to my squid and it worked fine.  

Quote from: "CharlieBrady"
Quote from: "dsemuk"

... the alternative way of setting the proxy or a workaround.


config set SquidParent hostname.of.parent.cache
config set SquidParentPort nnn
expand-template /etc/squid/squid.conf
/etc/rc7.d/S90squid restart


However, now I want to revert it back to a normal squid.  How do I do it?

Thanks, Brad
Title: ISP proxy
Post by: mmccarn on June 18, 2007, 01:56:39 PM
It looks like this would work:
Code: [Select]
config delete SquidParent
expand-template /etc/squid/squid.conf
service squid restart


You could also config delete SquidParentPort to clean up your config db if you want to, but the template fragment for Squid Parent (/etc/e-smith/templates/etc/squid/squid.conf/10ParentCache) decides not to output anything if 'SquidParent' doesn't exist, so you don't have to...
Title: ISP proxy
Post by: bjoyce on June 20, 2007, 06:15:28 AM
Thanks for that, worked a treat.

Brad