Rabu, 17 April 2013

Squid windows 7



On my previous post I discussed How to setup a caching or proxy DNS using ACRYLIC. Here I will discuss how to setup SQUID Proxy server for windows. There are other alternative to squid like Freeproxy and AnalogXproxy, but I choose SQUID since I’m more familiar with it and I want to test how reliable it will run on a Windows host, at work we also uses SQUID but on LINUX.
This setup will work hand in hand with the ACRYLIC DNS Proxy that I’ve setup to further maximize my Internet connection. Aside from caching some benefits that you may gain using SQUID is that it acts as a Firewall and limits your other users to http traffic only meaning web browsing only or your usual messenger application, all other traffic like torrent or VOIP will not pass through unlike in the case if we use NAT for Internet sharing.


Installing SQUID 2.7.Stable8 on Windows 7

SQUID doesn't come in an installer package but in a zip file where the directory structure and needed files are package together.You can download the zip file here. Once downloaded uncompressed the zip file. Once uncompressed you will get a squid directory. Copy that squid directory to drive c:\





















Inside squid directory you'll see the following folders and files:























Next create a folder where you want to place your page cache. I created mine on "d:\proxy".
(this step is optional I did this because I want to separate the Proxy cache directory from the squid Directory)

Inside squid folder go to etc folder make a copy of squid.conf.default and name it squid.conf

do that also to mime.conf.default

























Open squid.conf in notepad or any editor of your choice.

Change the path of cache_dir
(if you did not create a separate folder for cache you can skip this step).

Look for the following lines

#    Note that for coss, max-size must be less than COSS_MEMBUF_SZ
#    (hard coded at 1 MB).
#
#Default:
# cache_dir ufs c:/squid/var/cache 100 16 256

edit it so it will look like this
#    Note that for coss, max-size must be less than COSS_MEMBUF_SZ
#    (hard coded at 1 MB).
#
#Default:
# cache_dir ufs c:/squid/var/cache 100 16 256
cache_dir ufs d:/proxy 100 16 256



Next look for the following lines

# 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

and edit it so it will look like this

# 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/24    # RFC1918 possible internal network

of course provided that your network is in 192.168.0.0 range. Change this to reflect your network setting.


Next look for the following lines (optional - I edit this line to force squid to use my DNS caching server)

#  TAG: dns_nameservers
#    Use this if you want to specify a list of DNS name servers
#    (IP addresses) to use instead of those given in your
#    /etc/resolv.conf file.
#    On Windows platforms, if no value is specified here or in
#    the /etc/resolv.conf file, the list of DNS name servers are
#    taken from the Windows registry, both static and dynamic DHCP
#    configurations are supported.
#
#    Example: dns_nameservers 10.0.0.1 192.172.0.4
#
#Default:
# none


and edit it so it will look like this

#  TAG: dns_nameservers
#    Use this if you want to specify a list of DNS name servers
#    (IP addresses) to use instead of those given in your
#    /etc/resolv.conf file.
#    On Windows platforms, if no value is specified here or in
#    the /etc/resolv.conf file, the list of DNS name servers are
#    taken from the Windows registry, both static and dynamic DHCP
#    configurations are supported.
#
#    Example: dns_nameservers 10.0.0.1 192.172.0.4
#
#Default:
# none
dns_nameservers 127.0.0.1




Open a command prompt, and run the following command:

/squid/sbin/squid -z

this command initializes squid and create the directories on the cache folder.

After that run

squid/sbin/squid

to start the squid process.

After this you can now setup your browser to use the SQUID Proxy server. The ip address will be the ip of the squid server (usually the first available ip on your network), port number if you did not change it will be 3128.


On my previous post I discussed How to setup a caching or proxy DNS using ACRYLIC. Here I will discuss how to setup SQUID Proxy server for windows. There are other alternative to squid like Freeproxy and AnalogXproxy, but I choose SQUID since I’m more familiar with it and I want to test how reliable it will run on a Windows host, at work we also uses SQUID but on LINUX.
This setup will work hand in hand with the ACRYLIC DNS Proxy that I’ve setup to further maximize my Internet connection. Aside from caching some benefits that you may gain using SQUID is that it acts as a Firewall and limits your other users to http traffic only meaning web browsing only or your usual messenger application, all other traffic like torrent or VOIP will not pass through unlike in the case if we use NAT for Internet sharing.


Installing SQUID 2.7.Stable8 on Windows 7

SQUID doesn't come in an installer package but in a zip file where the directory structure and needed files are package together.You can download the zip file here. Once downloaded uncompressed the zip file. Once uncompressed you will get a squid directory. Copy that squid directory to drive c:\





















Inside squid directory you'll see the following folders and files:























Next create a folder where you want to place your page cache. I created mine on "d:\proxy".
(this step is optional I did this because I want to separate the Proxy cache directory from the squid Directory)

Inside squid folder go to etc folder make a copy of squid.conf.default and name it squid.conf

do that also to mime.conf.default

























Open squid.conf in notepad or any editor of your choice.

Change the path of cache_dir
(if you did not create a separate folder for cache you can skip this step).

Look for the following lines

#    Note that for coss, max-size must be less than COSS_MEMBUF_SZ
#    (hard coded at 1 MB).
#
#Default:
# cache_dir ufs c:/squid/var/cache 100 16 256

edit it so it will look like this
#    Note that for coss, max-size must be less than COSS_MEMBUF_SZ
#    (hard coded at 1 MB).
#
#Default:
# cache_dir ufs c:/squid/var/cache 100 16 256
cache_dir ufs d:/proxy 100 16 256



Next look for the following lines

# 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

and edit it so it will look like this

# 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/24    # RFC1918 possible internal network

of course provided that your network is in 192.168.0.0 range. Change this to reflect your network setting.


Next look for the following lines (optional - I edit this line to force squid to use my DNS caching server)

#  TAG: dns_nameservers
#    Use this if you want to specify a list of DNS name servers
#    (IP addresses) to use instead of those given in your
#    /etc/resolv.conf file.
#    On Windows platforms, if no value is specified here or in
#    the /etc/resolv.conf file, the list of DNS name servers are
#    taken from the Windows registry, both static and dynamic DHCP
#    configurations are supported.
#
#    Example: dns_nameservers 10.0.0.1 192.172.0.4
#
#Default:
# none


and edit it so it will look like this

#  TAG: dns_nameservers
#    Use this if you want to specify a list of DNS name servers
#    (IP addresses) to use instead of those given in your
#    /etc/resolv.conf file.
#    On Windows platforms, if no value is specified here or in
#    the /etc/resolv.conf file, the list of DNS name servers are
#    taken from the Windows registry, both static and dynamic DHCP
#    configurations are supported.
#
#    Example: dns_nameservers 10.0.0.1 192.172.0.4
#
#Default:
# none
dns_nameservers 127.0.0.1




Open a command prompt, and run the following command:

/squid/sbin/squid -z

this command initializes squid and create the directories on the cache folder.

After that run

squid/sbin/squid

to start the squid process.

After this you can now setup your browser to use the SQUID Proxy server. The ip address will be the ip of the squid server (usually the first available ip on your network), port number if you did not change it will be 3128.

Selasa, 16 April 2013

Kamis, 14 Maret 2013

cara ampuh nonton youtube tanpa loading

cara nonton youtube tanpa buffering - siapa sich yang g kenal youtube, pasti semua udah pada nonton video ato paling ndak buka situs penyedia video paling besar di dunia ini, youtube memang hebat karena semua video dapat tertampung oleh situs ini, mulai dari video hiburan sampai video pendidikan ada semua di situs ini.
Namun sayang banget karna kita masih tinggal di indonesia yang koneksi internetnya masih sangat lambat dibandingkan dengan negara-negara tetangga, namun tak apalah.. orang sabar kan di sayang tuhan..
Oke.. dikarenakan lambatnya koneksi yang kita miliki tentu saja ketika kita ingin menonton video di youtube tersebut pasti akan ada proses loading atao biasa di kenal dengan buffering, yaitu menunggu sampai videonya dapat dimainkan.. hal ini terjadi karena koneksi internet yang lambat..
Tapi tenang saja kawan, pada kesempatan kali ini team wahana corp sudah punya cara ampuh agar ketika kita menonton video di youtube, kita tidak perlu melihat atau menonton proses loading atao bufferingnya, dengan begitu kegiatan menonton kita jadi tidak terganggu,..
Sudah g sabaran ya???
berikut langkah-langkahnya...:
  • Instal Quicktime di PC atau notebook anda
  • Cari video kemudian klik kanan tepat pada gambar video dan pilih copy link location
  • Buka quicktime kemudian pilih File>>Open URL>>Paste>>OK
  • Url harus file .3gp (memang terkadang ada file tidak menggunakan .3gp)
  • Setting Qiucktime Anda melalui Edit >> Qiucktime preferences >> Audio, streaming, dll. misalnya untuk memilih setting http +++ Edit >> Qiucktime preferences >> Advance >> Transport Setup >> pilih Costum >> ubah transport pilih HTTP
  • Sekarang anda bisa menikmati video tanpa loading.
Yang belum punya Quicktime monggo di download disini dan berikut key maker/ SN untuk registrasinya disini

Sumber :
http://wahanacorp.blogspot.com/2012/01/cara-ampuh-nonton-youtube-tanpa-loading.html

cara mempercepat browser mozilla firefox


Mozilla firefox memang browser internet yang sangat populer, dan sebagikan besar pengguna internet menggunakan mozilla firefox, mungkin karena sebab inilah mengapa firefox terkesan lumayan lambat, untuk menutupi hal itu saya akan membagikan trik untuk mempercepat mozilla firefox kepad sobat ariskomputer semua.

Pertama-tama buka dulu software Mozilla firefox, dan ketik “about:config” tanpa tanda petik pada addres bar.

Dan lakukan perubahan pada kode berikut
“network.http.pipelining” ubah nilainya menjadi “true”
“network.http.proxy.pipelining” ubah nilainya menjadi “true”
“network.http.pipelining.maxrequests” ubah nilainya dibawah lima, contoh isikan angka 3.

Kemudian klik kanan sembarang tempat, pilih “new integer” berikkan nama “nglayout.initialpaint.delay” tanpa tanda petik, dan berikan nilai “0”

Dengan menerapkan cara ini browser mozilla firefox akan menjadi lebih cepat, dan jika kalian seorang neter menerapkan cara ini pada warnet maka bandwidtnya akan tersedot banyak oleh kalian sehingga koneksi internet komputer lain akan terasa sangat lambat.

Semoga bermanfaat .

Selasa, 05 Maret 2013


Download Windows 8 Full Version Dengan Serial Number


Pada Postingan kali ini saya share Windows 8 Full Serial Number / Key. Buat Sobat yang pengen mencicipi bagaimana kinerja windows 8 ini dia kami berikan link free download windows 8 gratis lengkap dengan serial numbernya . Apa yang baru di Windows 8 ? berikut ini adalah fiturnya

Windows 8 New Features

  • Language and standards support.
  • Windows Store
  • Shell and user interface
  • User login
  • Microsoft account integration
  • Multi-monitor support
  • File Explorer
  • Task Manager
  • Family Safety
  • ARM architecture
  • Boot security
  • File History
  • Refresh and Rese
  • Shorter boot times
  • USB 3.0
  • Video subsystem
  • Windows To Go
  • Hyper-V
  • Virtual hard disk format
  • Storage Spaces

System Requirements

Windows 8 Release Preview works great on the same hardware that powers Windows 7:
Processor : 1 gigahertz (GHz) or faster
RAM : 1 gigabyte (GB) (32-bit) or 2 GB (64-bit)
Hard disk space : 16 GB (32-bit) or 20 GB (64-bit)
Graphics card : Microsoft DirectX 9 graphics device with WDDM driver
Bagi yang ingin downlod, silahkan download pada link dibawah ini.
Pass : aardiansyah.blogspot.com
Product Key:  
TK8TP-9JN6P-7X7WW-RFFTV-B7QPF

Serial Retail Key Professional : 
Xky4K-2Nrwr-8F6P2-448Rf-Cryqh

Serial Retail Key For Windows Media Center : 
Rr3Bn-3Yy9P-9D7Fc-7J4Yf-Qgjxw