Difference between revisions of "Squid"
From Linuxintro
imported>ThorstenStaerk (Created page with "Here is an example how to use squid with SUSE Linux 12.1. = install it = open a console and enter yast -i squid3 = start it = /etc/init.d/squid start") |
imported>ThorstenStaerk |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | Here is an example how to use squid with SUSE Linux 12.1. | + | Squid is a [[proxy]] software, that means it fetches internet sites for you. Here is an example how to use squid with SUSE Linux 12.1. |
= install it = | = install it = | ||
Line 7: | Line 7: | ||
= start it = | = start it = | ||
/etc/init.d/squid start | /etc/init.d/squid start | ||
+ | |||
+ | = configure it = | ||
+ | Change http_access to be allowed in /etc/squid/squid.conf: | ||
+ | http_access allow all | ||
+ | |||
+ | = use it = | ||
+ | Point your firefox to port 3128. | ||
+ | |||
+ | = See also = | ||
+ | * http://www.freeos.com/articles/2516?page=2 |
Latest revision as of 17:01, 9 September 2012
Squid is a proxy software, that means it fetches internet sites for you. Here is an example how to use squid with SUSE Linux 12.1.
install it
open a console and enter
yast -i squid3
start it
/etc/init.d/squid start
configure it
Change http_access to be allowed in /etc/squid/squid.conf:
http_access allow all
use it
Point your firefox to port 3128.