sedikit berbagi buat sesama, semoga bermanfaat ya..

Configure BadVPN

No comments
== debian ==
apt-get update
apt-get install cmake make gcc -y
wget http://badvpn.googlecode.com/files/badvpn-1.999.127.tar.bz2
tar xf badvpn-1.999.127.tar.bz2
mkdir badvpn-build
cd badvpn-build
cmake ~/badvpn-1.999.127 -DBUILD_NOTHING_BY_DEFAULT=1 -DBUILD_UDPGW=1
make install
badvpn-udpgw --listen-addr 127.0.0.1:7300 > /dev/null &
edit /etc/rc.local dan masukkan comment diatas

== centos ==

yum update
yum install cmake make gcc -y
wget http://badvpn.googlecode.com/files/badvpn-1.999.127.tar.bz2
tar xf badvpn-1.999.127.tar.bz2
mkdir badvpn-build
cd badvpn-build
cmake ~/badvpn-1.999.127 -DBUILD_NOTHING_BY_DEFAULT=1 -DBUILD_UDPGW=1
make install
badvpn-udpgw --listen-addr 127.0.0.1:7300 > /dev/null &

== ubuntu ==


add-apt-repository ppa:ambrop7/badvpn
apt-get update
apt-get install badvpn
badvpn-udpgw --listen-addr 127.0.0.1:7300 > /dev/null &

No comments :

Post a Comment