IGOS Nusantara dan proxy server squid: Perbedaan revisi

Dari IGNwiki
Langsung ke: navigasi, cari

Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /var/www/html/igos-nusantara-web/wiki/includes/diff/DairikiDiff.php on line 438
Baris 16: Baris 16:
 
  http_port 8080
 
  http_port 8080
 
  ...
 
  ...
  acl jaringanku src 192.168.0.0/16
+
#http_access allow our_networks
...
+
  acl jaringanku src 192.168.1.0/255.255.255.0
http_access allow localhost
+
 
  http_access allow jaringanku
 
  http_access allow jaringanku
...
 
  
 
== Buat cache ==
 
== Buat cache ==
  # squid -z
+
  # /usr/sbin/squid -z
  
 
== Jalankan squid ==
 
== Jalankan squid ==

Revisi per 19 Januari 2010 07.20

Skema jaringan lihat IGNwiki

  • Server ada di: 192.168.1.1
  • Port proxy: 8080

Pasang Squid

# yum install -y squid

Konfigurasi

Sesuaikan /etc/squid/squid.conf, sebelum melakukan perubahan, sebaiknya file squid.conf disalin agar ada cadangan.

# cp /etc/squid/squid.conf /etc/squid/squid.conf-asli 

Tahap awal lakukan perubahan beberapa baris tertentu saja. Jika sudah lancar, silakan lakukan perubahan lain agar squid lebih optimal.

# Isi berkas: /etc/squid/squid.conf
...
http_port 8080
...
#http_access allow our_networks
acl jaringanku src 192.168.1.0/255.255.255.0
http_access allow jaringanku

Buat cache

# /usr/sbin/squid -z

Jalankan squid

# service squid start

== Masukkan service squid

# chkconfig --level 345 squid on

Konfigurasi browser di komputer klien

Ubah konfigurasi browser agar memakai proxy server 192.168.1.1 dan port 8080

Periksa log

# tail -f /var/logs/squid/access.log

Jalankan browser dari komputer klien lalu akses situs. Di server perhatikan log yang muncul, tekan Ctrl + C jika sudah selesai melihat akses.log.

# tail -f /var/logs/squid/cache.log

Jalankan browser dari komputer klien lalu akses situs. Di server perhatikan log yang muncul, tekan Ctrl + C jika sudah selesai melihat cache.log.