Skip to main content

Posts

Showing posts with the label Proxy

Get to know the type and the type of VPN in Mikrotik

Virtual Private Network (VPN) is a method to connect between nodes network by utilizing the Internet connection (public network/WAN) and using encrypted protocols making it more secure. A VPN is one surefire solution for connecting multiple locations are far apart to easily use the Internet connections of each place. An example of its application is when you are managing networks for several offices in different locations and far from each other. To connect the Office using the link all physical will certainly must a large fee. Well, by using VPN we could set up a link between the offices by leveraging existing internet network. The links are formed equipped with encryption to decrease the possibility of data will be accessed by people who are not responsible. VPN on Mikrotik support several methods, such as PPTP, SSTP, L2TP, and OpenVPN. With the presence of some of these options, we need to choose the type of VPN network that suits us. In general all type has the same f...

Install SQUID LUSCA Proxy Server Youtube Cache

Many ways to explain how a proxy server built machine. Mostly using Squid package that is placed on your computer unix platform. Although squid can also run on a computer with Windows operating system. But as my favorite to make the proxy server machine is Ubuntu. By default, Squid can not cache dynamic contents such as video on youtube. (CMIIW). Therefore I added Lusca and gave patched to cache videos, especially, on youtube. The following are the steps when installing Lusca on Ubuntu version 11.10. Update & Install SQUID Packages: # apt-get update # apt-get install squid squidclient squid-cgi # apt-get install gcc # apt-get install build-essential # apt-get install sharutils # apt-get install ccze # apt-get install libzip-dev # apt-get install automake1.9 # apt-get install acpid # apt-get install unzip # cd /tmp Download & Install LUSCA Packages: # wget -c http://cirebonwifi.pusku.com/files/LUSCA_HEAD-r14809.tar.gz # tar -xvzf LUSCA_HEAD-r14809.tar.gz #...