Difference between revisions of "Instalasi Squid"

From OnnoWiki
Jump to navigation Jump to search
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
Instalasi Squid
+
Pastikan DNS berjalan dengan baik, cek
  
  # apt-get install squid
+
  dig www.detik.com
  
Edit konfigurasi squid agar komputer di LAN kita dapat menggunakan Squid tersebut
+
Edit
  
  # vi /etc/squid/squid.conf
+
  vi /etc/resolv.conf
  
Beberapa setting yang penting
+
nameserver 8.8.8.8
  
visible_hostname 192.168.0.1  # IP address server Squid anda
+
Instalasi [[Squid]]
  
  acl our_networks src 192.168.0.0/24 192.168.11.0/24
+
apt -y install squid
  http_access allow our_networks
+
 
 +
Edit konfigurasi [[squid]] agar [[komputer]] di [[LAN]] kita dapat menggunakan [[Squid]] tersebut
 +
 
 +
vi /etc/squid/squid.conf
 +
 
 +
Beberapa contoh setting yang penting
 +
 
 +
# visible_hostname 192.168.0.1  # IP address server Squid anda
 +
 +
# Example rule allowing access from your local networks.
 +
# Adapt to list your (internal) IP networks from where browsing
 +
# should be allowed
 +
  acl localnet src 10.0.0.0/8    # RFC1918 possible internal network
 +
acl localnet src 172.16.0.0/12  # RFC1918 possible internal network
 +
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
 +
  http_access allow localnet
  
 
Restart Squid
 
Restart Squid
  
  # /etc/init.d/squid restart
+
  service squid restart
 +
/etc/init.d/squid restart
  
  
Line 26: Line 42:
 
  Port      3128
 
  Port      3128
  
 +
===Setup Firefox===
 +
 +
Preferences > Advanced > Network > Settings >
 +
Manual Proxy Configuration >
 +
IP address 3128
  
 
==Referensi==
 
==Referensi==
Line 31: Line 52:
 
* http://www.squid-cache.org/
 
* http://www.squid-cache.org/
 
* http://118.96.136.211/onfile/index.php?dir=Video+Pembelajaran/Squid
 
* http://118.96.136.211/onfile/index.php?dir=Video+Pembelajaran/Squid
 
+
* http://lqman.wordpress.com/2007/11/09/konfigurasi-sederhana-squid-proxy-server/#comment-332
  
 
===Download Video Pembelajaran Squid===
 
===Download Video Pembelajaran Squid===
Line 46: Line 67:
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 +
* [[Lusca]]
 
* [[Delay Pool Squid untuk Managed Download Manager]]
 
* [[Delay Pool Squid untuk Managed Download Manager]]
  

Latest revision as of 08:30, 8 May 2020

Pastikan DNS berjalan dengan baik, cek

dig www.detik.com

Edit

vi /etc/resolv.conf
nameserver 8.8.8.8

Instalasi Squid

apt -y install squid

Edit konfigurasi squid agar komputer di LAN kita dapat menggunakan Squid tersebut

vi /etc/squid/squid.conf

Beberapa contoh setting yang penting

# visible_hostname 192.168.0.1  # IP address server Squid anda

# Example rule allowing access from your local networks.
# Adapt to list your (internal) IP networks from where browsing
# should be allowed
acl localnet src 10.0.0.0/8     # RFC1918 possible internal network
acl localnet src 172.16.0.0/12  # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
http_access allow localnet

Restart Squid

service squid restart
/etc/init.d/squid restart


Setup Client

Tidak banyak yang perlu di set di sisi Client. Arahkan proxy di sisi Client ke

IP address Server Squid
Port       3128

Setup Firefox

Preferences > Advanced > Network > Settings >
Manual Proxy Configuration >
IP address 3128

Referensi

Download Video Pembelajaran Squid

wget --no-parent -r -p -U Mozilla http://118.96.136.211/onfile/index.php?dir=Video+Pembelajaran/Squid

Referensi Tambahan

Pranala Menarik