15. October 2015
AndrewZhu
Azure , VPN
- Download Node.js from https://nodejs.org/ and install node.js on your server machine
Install Shadowsocks
Open Node.js command prompt
Input the following commands to install shadowsocks
npm install -g shadowsocks
Configure SS
open config.json file
Fill the file with the following json text with your own password
{
"server":"0.0.0.0",
"server_port":8388,
"local_address":"127.0.0.1",
"local_port":1080,
"password":"password",
"timeout":600,
"method":"aes-256-cfb"
}
Open Port 8388 on Azure VM
Open 8388 TCP and UDP port firewall, both inbound and outbound
Start SS
Note that you can also use the Azure VM name as the Server IP.
- All done, go and use your SS
--------------------------
Reference links:
SS on Windows
https://smileawei.com/windows2003-shadowsocks-server/
http://www.zxbing0066.com/Blog/proxy/2014/12/06/shadowsocks.html
ss on Azure
http://www.kangry.net/blog/?type=article&article_id=275