WARNING:如果你的VPS內存少於512M,請不要嘗試,因為要安裝JDK,會佔用數百兆內存。
1.安裝git下載gfw.press源碼
以下命令全部使用root賬戶。
apt-get install git
git clone https://github.com/chinashiyu/gfw.press.git
2.安裝JDK
理論上安裝jdk7或者8應該都可以。
apt-get install openjdk-8*
或者
apt-get install default-jdk
3.安裝squid3
或者3proxy也可以,但3proxy不在Debian自由軟件庫裡,不知Ubuntu庫裡是否也一樣,請自行嘗試。
apt-get install squid3
如果你的VPS不支持ipv6,請在squid配置文件裡加入下列一行(文件位與/etc/squid3/squid.conf):
dns_v4_first on
然後以下列命令重啟squid3
/etc/init.d/squid3 restart
或者
service squid3 restart
4.修改user.txt,運行gfw.press
修改user.txt,每行一個帳號,格式為端口+空格+密碼,密碼為大小寫和數字,至少
接下來運行gfw.press:
chmod u+x gfw.press/server.sh
gfw.press/server.sh
5.運行客戶端
下載gfw.press客戶端,填入vps ip地址,端口,密碼即可,將你的瀏覽器代理改為127.0.0.1:3128即可。
2016年6月4日星期六
2016年5月12日星期四
Opera VPN免費不限量已經在iOS上線
更新:Opera董事會已同意360的收購,建議棄用Opera.
Opera繼內置免費VPN的Opera Browser後,免費無限量的Opera VPN已經在iOS可以下載,本人所用的是美國版Apple Store,未知其他國家版本的Apple Store是否都可以下載。
如果你所在國家版本的Apple Store無法下載,可以考慮以下免費不限量的VPN:
1.Betternet
支持iOS,Android,Chrome,firefox,Windows等;
2.Appvpn
支持iOS,Android
3,Browsec
支持iOS,Chrome,firefox,Opera
4.Hoxx
支持firefox,Chrome.
5.Onavo Protect
支持iOS,Android.
Opera繼內置免費VPN的Opera Browser後,免費無限量的Opera VPN已經在iOS可以下載,本人所用的是美國版Apple Store,未知其他國家版本的Apple Store是否都可以下載。
如果你所在國家版本的Apple Store無法下載,可以考慮以下免費不限量的VPN:
1.Betternet
支持iOS,Android,Chrome,firefox,Windows等;
2.Appvpn
支持iOS,Android
3,Browsec
支持iOS,Chrome,firefox,Opera
4.Hoxx
支持firefox,Chrome.
5.Onavo Protect
支持iOS,Android.
Free shadowsocks proxy until Mid August 2016
Notice:
Email spam & P2P downloading is forbidden.
Please fill the parameters above into your shadowsocks client.
Server ip: 173.254.232.93
Server port: 3389
method: aes-256-cfb
password: whoisyourbitch
Valid date:Mid August 2016
Location:L.A
Limitation: 500G
Bandwidth:100M
Email spam & P2P downloading is forbidden.
Please fill the parameters above into your shadowsocks client.
Server ip: 173.254.232.93
Server port: 3389
method: aes-256-cfb
password: whoisyourbitch
Valid date:Mid August 2016
Location:L.A
Limitation: 500G
Bandwidth:100M
Debian/Ubuntu KVM/Xen Auto Install L2TP/IPsec VPN server
Notice:
This installation can't apply for openvz.
Debian (Jessie or Wheezy) & Ubuntu 12.04-16.04
1.(sudo) apt-get update && apt-get upgrade
2.wget https://git.io/vpnsetup -O vpnsetup.sh
nano -w vpnsetup.sh [Replace with your own values: IPSEC_PSK, VPN_USER and VPN_PASSWORD]
sudo sh vpnsetup.sh
3.Using your iphone/desktop/Android connect VPN.
This installation can't apply for openvz.
Debian (Jessie or Wheezy) & Ubuntu 12.04-16.04
1.(sudo) apt-get update && apt-get upgrade
2.wget https://git.io/vpnsetup -O vpnsetup.sh
nano -w vpnsetup.sh [Replace with your own values: IPSEC_PSK, VPN_USER and VPN_PASSWORD]
sudo sh vpnsetup.sh
3.Using your iphone/desktop/Android connect VPN.
2015年11月23日星期一
Free shadowsocks Dallas
Open shadowsocks application at Windows,Android or Mac,scan the barcodes below to add new server.
Cautions:
1.Server ip:134.168.1.199 location:Dallas,Texas
2.If you can't open google or other censored sites,please check your network condition using ping and tracert.
Thanks to IBM Bluemix.
另有洛杉磯,香港等付費節點。
Cautions:
1.Server ip:134.168.1.199 location:Dallas,Texas
2.If you can't open google or other censored sites,please check your network condition using ping and tracert.
Thanks to IBM Bluemix.
另有洛杉磯,香港等付費節點。
2015年9月7日星期一
rinetd共享本機proxy到LAN
隨著shadowsocks代碼被迫刪除,目前為止最優秀的proxy不再維護,對於常用電腦上網的用戶,使用proxy不是難事,現在依然有很多可用的軟體,比如lantern,JAP proxy,賽風,甚至很久未更新的proxy還可用,對於更喜愛用手機上網的人可能不太方便,但可以使http proxy在電腦端共享給局域網其他的手機和電腦使用,需要用到的軟體就是rinetd,privoxy等。
rinetd和privoxy使用端口轉發將本機http proxy共享給局域網其他電腦和手機使用。網上有不少privoxy的配置詳解,但對rinetd卻知之甚少,在這裡講述。以下操作系統為Debian 8.
1.安裝
打開terminal,然後su命令輸入root密碼切換到root賬戶,apt-get update && apt-get install rinetd.
2.配置
打開rinetd配置文件,已安裝gnome的可以用gedit代替nano,
nano /etc/rinetd.conf
rinetd和privoxy使用端口轉發將本機http proxy共享給局域網其他電腦和手機使用。網上有不少privoxy的配置詳解,但對rinetd卻知之甚少,在這裡講述。以下操作系統為Debian 8.
1.安裝
打開terminal,然後su命令輸入root密碼切換到root賬戶,apt-get update && apt-get install rinetd.
2.配置
打開rinetd配置文件,已安裝gnome的可以用gedit代替nano,
nano /etc/rinetd.conf
#
# this is the configuration file for rinetd, the internet redirection server
#
# you may specify global allow and deny rules here
# only ip addresses are matched, hostnames cannot be specified here
# the wildcards you may use are * and ?
#
# allow 192.168.2.*
# deny 192.168.2.1?
#
# forwarding rules come here
#
# you may specify allow and deny rules after a specific forwarding rule
# to apply to only that forwarding rule
#
# bindadress bindport connectaddress connectport
0.0.0.0 1234 127.0.0.1 10000
# logging information
logfile /var/log/rinetd.log
# uncomment the following line if you want web-server style logfile format
# logcommon
藍色字體為字體內容,0.0.0.0:1234表示監聽本機1234端口,你也可以改成你電腦任意未使用的端口,127.0.0.1:10000意思是要轉發的端口也就是本機所使用的http proxy端口。
保存後重啟rinetd
/etc/init.d/rinetd restart
windows系統只需上官網下載安裝,配置與上面大同小異。
配置成功即可將其他電腦和手機中設置proxy server和端口即可。
2015年7月29日星期三
Free shadowsocks server until August 1st 2015
Server location:Frankfurt,German
Server ip:5.231.34.154
Server port:8883
Password:whoisyourbitch
Method:AES-256-CFB
Valid date until August 1st 2015
Server ip:5.231.34.154
Server port:8883
Password:whoisyourbitch
Method:AES-256-CFB
Valid date until August 1st 2015
訂閱:
文章 (Atom)