Devilzc0de Forum Follow @devilzc0de
  • Home
  • Hacking
  • Networking
  • Programming
  • O.S
  • Server
  • Tweets
  • Search
  • Member List
  • Calendar
Current time: 05-23-2013, 06:26 PM Hello There, Guest! (Login — Register)
Devilzc0de Forum › Information Technology › Server › Proxy Server v
« Previous 1 2 3 4 Next »

[Solved] bantu setting debian biar transparent

Home General Computer Multimedia Business Lounge

Post Reply 
Tweet
Threaded Mode | Linear Mode
Solved bantu setting debian biar transparent
02-01-2012, 07:57 AM
Post: #1
D'Teguh Offline
./Devilz Officer
Posts: 54
Joined: Jul 2011
Reputation: 0
bantu setting debian biar transparent
susah bgt.............. cara supaya proxy transparent........... mohon bantuan nya donkzz.......prustasi

udah di coba berkali2 n cari di internet cara nya sama ajah cuma di tambahin

hhtp_port 3128 transparent


tetep aja masih ngga bisa, apa masih ada settingan yang kurang saol nya saya sudah lihat di macam" blog setting nya cuma di tamahin transparent
belajar

klo ada vidio tentang proxy server pada debian mohon share ya...!!!!!!

mewek
Visit this user's website Find all posts by this user
Quote this message in a reply
02-01-2012, 08:10 AM
Post: #2
ketek Offline
bocah ingusan
*******
Administrators
Posts: 2,174
Joined: Jan 2010
Reputation: 374
RE: bantu setting debian biar transparent
squid ya ? versi brapa squidnya omz?
truz squid nya di compile dengan support transparent gak?
http://wiki.squid-cache.org/SquidFaq/Int...-configure
Find all posts by this user
Quote this message in a reply
02-01-2012, 09:21 AM
Post: #3
Super Moderator Offline
Wahyu Adi Prasetyo
****
Global Moderators
Posts: 6,950
Joined: Jan 2010
Reputation: 237
RE: bantu setting debian biar transparent
hhtp_port 3128 transparent

bukannya http_port 3128 transparent
Visit this user's website Find all posts by this user
Quote this message in a reply
02-01-2012, 10:46 AM (This post was last modified: 02-01-2012 03:16 PM by chaer.newbie.)
Post: #4
chaer.newbie Offline
--------------------------
*****
Dewa
Posts: 5,281
Joined: Dec 2009
Reputation: 184
RE: bantu setting debian biar transparent
ini transparent yg gimana? pertanyaannya ambigu..

proxynya yg transparent apa gimana?

Quote:All supported versions of Squid currently available support Interception Caching, however for this to work properly, your operating system and network also need to be configured. For some operating systems, you need to have configured and built a version of Squid which can recognize the hijacked connections and discern the destination addresses.

For Linux configure Squid with the --enable-linux-netfilter option.

For *BSD-based systems with IP filter configure Squid with the --enable-ipf-transparent option.

If you're using OpenBSD's PF configure Squid with --enable-pf-transparent.

Do a make clean if you previously configured without that option, or the correct settings may not be present.

Squid-2.6+ and Squid-3.0+ support both WCCPv1 and WCCPv2 by default (unless explicitly disabled).


apa maksud transparent disini cuma belokin semua port 80 akses client ke port squid
Find all posts by this user
Quote this message in a reply
02-01-2012, 11:05 AM
Post: #5
mariachi Away
has been reboot
**
Moderators
Posts: 2,365
Joined: Nov 2010
Reputation: 55
RE: bantu setting debian biar transparent
palingan versi squidnya gak ngedukung transparent proxy om.... piss
Find all posts by this user
Quote this message in a reply
02-03-2012, 01:26 PM
Post: #6
zulinvation Offline
./Devilz 1st Cadet
Posts: 6
Joined: Feb 2012
Reputation: 1
RE: bantu setting debian biar transparent
Jangan cuma ditambahin pake transparent om.. nih gua kasih settingan yg singkat n jelas untuk newbie n udah sy coba di lenny dan squeeze..

Install paket squid
#apt-get install squid

Backup file konfigurasi sebelum mengedit agar jika terjadi kesalahan mudah untuk mengembalikannya (mereset)
#cp /etc/squid/squid.conf /etc/squid/squid.conf.ori

Edit file squid.conf
#nano /etc/squid/squid.conf

Setelah terbuka file squid.conf menggunakan editor nano, tekan tombol ctrl+W kemudian cari kata acl localnet. Edit salah satu baris kemudian masukkan network address yang akan anda kanai proxy.

Code:
acl localnet src xxx.xxx.xxx.xxx/xx

Kemudian cari kata acl CONNECT
tambahkan script ini dibawahnya

Code:
acl blokurl dstdomain "/etc/squid/blokurl.txt"
Code:
acl bloktext url_regex -i "/etc/squid/bloktext.txt"

Truskan kursor kebawah sekitar 20 baris (atau cari kata potential confusion), kemudian dibawah tulisan #Default ketikkan skirpt berikut ini

Code:
http_access deny blokurl
Code:
http_access deny bloktext
Code:
http_access allow localnet

terakhir jgn lupa tambahkan transparent yg ente bilang tadi.. simpan dan restart squid.

eeeiiitt, blum kelar, masukkan daftar url/domain yg ingin diblok ke file /etc/squid/blokurl.txt contoh

smangat
Code:
.porntube.com

dan masukkan juga daftar kata yg ingin diblok ke file /etc/squid/bloktext.txt. contoh

smangat
Code:
sex<br>porno<br>

paling akhir, buat FIREWALL untuk memaksa semua jalur akses yang akan masuk ke jaringan agar melewati PROXY (port 3128).

Code:
iptables -A PREROUTING -t nat -p tcp --dport 80 -j REDIRECT --to-port 3128

slesai, slamat mencoba... smoga berhasil.... mantap
Find all posts by this user
Quote this message in a reply
 Reputed by :  xtr0nic(+1)
02-08-2012, 09:39 PM
Post: #7
D'Teguh Offline
./Devilz Officer
Posts: 54
Joined: Jul 2011
Reputation: 0
RE: bantu setting debian biar transparent
thank you om
Visit this user's website Find all posts by this user
Quote this message in a reply
02-10-2012, 09:24 AM
Post: #8
d3m3nt012 Offline
./Devilz Commander
Posts: 458
Joined: Feb 2011
Reputation: 0
RE: bantu setting debian biar transparent
tambahan nih om buat nge-routing

~# iptables -A POSTROUTING -t nat -s xxx.xxx.xxx.xxx/xx -d 0/0 -j MASQUERADE
~# echo 1 >/proc/sys/net/ipv4/ip_forward

CMIIW
Find all posts by this user
Quote this message in a reply
02-16-2012, 07:59 PM
Post: #9
D'Teguh Offline
./Devilz Officer
Posts: 54
Joined: Jul 2011
Reputation: 0
RE: bantu setting debian biar transparent
bukanya klo "#" malah ngga bisa
Visit this user's website Find all posts by this user
Quote this message in a reply
02-20-2012, 07:04 AM
Post: #10
zulinvation Offline
./Devilz 1st Cadet
Posts: 6
Joined: Feb 2012
Reputation: 1
RE: bantu setting debian biar transparent
(02-16-2012 07:59 PM)DTeguh Wrote:  bukanya klo "#" malah ngga bisa

tanda "#" maksudnya perintah itu diketik di root console, klo tanda "#" di dlm script itu yg nggak bisa/tdk dieksekusi...
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Topic Tools
Topic Link :
BBCode :
HTML Code :
View a Printable Version Send Thread to a Friend Subscribe to this thread
Submit Google Submit Face book Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Tongue [Tutor] Proxy Server @ Debian 6 Squeeze sandimulyadi 8 785 10-13-2012 12:28 AM
Last Post: fu_150
  KONFIGURASI PROXY SERVER DEBIAN 5 MrKcr 10 679 08-29-2012 12:23 PM
Last Post: fauzanrahman03
Exclamation [Ask] Setting Bandwidth dengan squid debian lenny ? fauzanrahman03 13 2,950 01-26-2012 05:18 PM
Last Post: Super Moderator
Exclamation [Ask] ayo devilzc0de pecahkan problem proxy debian saya fauzanrahman03 10 1,850 10-09-2011 08:29 AM
Last Post: chaer.newbie
Sad [Ask] Problem Proxy Di Debian 5 Hurry fauzanrahman03 16 3,221 10-07-2011 07:24 AM
Last Post: fauzanrahman03
  Membersihkan cache proxy (squid pada debian) wahyu_devilzc0de™ 4 4,479 07-22-2011 04:00 AM
Last Post: revanthem
  [Ask] tolong proxy debian lenny uu.polos 3 2,775 06-04-2011 12:00 AM
Last Post: easy2study

Users Browsing
1 Guest(s)

  • Contact Us
  • devilzc0de
  • Return to Top
  • Mobile Version
  • RSS Syndication
  • Help
Current time: 05-23-2013, 06:26 PM Powered By MyBB, © 2002-2013 MyBB Group. Theme created by Justin S. | Mixed By Chaer.Newbie | Fixed By Aditya

USING THIS SITE INDICATES THAT YOU HAVE READ AND ACCEPT OUR TERMS. IF YOU DO NOT ACCEPT THESE TERMS, YOU ARE NOT AUTHORIZED TO USE THIS SITE