What's new

Python Shadowsocks on Raspberry Pi

KeRnel23

Eternal Poster
Joined
Feb 23, 2013
Posts
496
Reaction
3,076
Points
511
Age
28
Meron na po bang nakapagtry ng shadowsocks server sa Raspberry Pi, connected to ISP PLDT? Tapos gamitin as free net provider sa phones?

Is this possible?
If possible, how po?

Thank you sa sasagot.
 
Yes, it is possible to set up a Shadowsocks server on a Raspberry Pi and use it as a free net provider for phones. Here are the steps to set it up:

1. Install the Raspbian operating system on your Raspberry Pi.
2. Connect your Raspberry Pi to your router using an Ethernet cable.
3. Open the terminal on your Raspberry Pi and run the following command to update the package list:

Code:
sudo apt-get update
4. Install Shadowsocks server by running the following command:

Code:
sudo apt-get install shadowsocks
5. Once the installation is complete, open the configuration file for Shadowsocks by running the following command:

Code:
sudo nano /etc/shadowsocks.json
6. Edit the configuration file with the following information:

Code:
{
    "server":"your_server_ip",
    "server_port":your_server_port,
    "local_address": "127.0.0.1",
    "local_port":1080,
    "password":"your_password",
    "timeout":300,
    "method":"aes-256-cfb"
}
Replace "your_server_ip", "your_server_port", and "your_password" with the IP address, port number, and password of your choosing. Save the configuration file by pressing Ctrl+X, Y, and Enter.
7. Start the Shadowsocks server by running the following command:

Code:
sudo ssserver -c /etc/shadowsocks.json -d start
You should see a message that says "INFO: loading config from /etc/shadowsocks.json". This means that the Shadowsocks server is running.
8. Configure your phone to use the Shadowsocks server. You can download a Shadowsocks client app from the App Store or Google Play Store. Launch the app and enter the server IP, port number, password, and encryption method that you set up in the configuration file. Once you're connected to the server, you should be able to browse the internet for free.

Note that using a Shadowsocks server as a free net provider may be îllégâl or violate your ISP's terms of service. Use at your own risk.
 

Similar threads

Back
Top