What's new

Help How to setup Shadowsocks on Netmod

To set up Shadowsocks on Netmod Syna, you will need to follow these steps:

1. Install the necessary package:
- Connect to your Netmod Syna device via SSH.
- Install the shadowsocks-libev package by running the command:
Code:
     opkg update
     opkg install shadowsocks-libev

2. Configure Shadowsocks:
- Create a configuration file for Shadowsocks by running the command:
Code:
     vi /etc/shadowsocks.json
- In the configuration file, you need to specify the server details. Here's an example configuration:
Code:
json
     {
         "server":"your_server_ip",
         "server_port":your_server_port,
         "password":"your_password",
         "method":"your_encryption_method"
     }
Replace your_server_ip with the IP address of your Shadowsocks server, your_server_port with the server port, your_password with the desired password, and your_encryption_method with the encryption method you want to use (e.g., aes-256-gcm).
- Save and exit the file.

3. Start the Shadowsocks service:
- Start the Shadowsocks service by running the command:
Code:
     /etc/init.d/shadowsocks start
- To automatically start Shadowsocks on boot, run the command:
Code:
     /etc/init.d/shadowsocks enable

4. Verify the setup:
- Check the status of the Shadowsocks service by running the command:
Code:
     /etc/init.d/shadowsocks status
It should display "running" if successfully started.

Once you have completed these steps, the Shadowsocks proxy should be set up on your Netmod Syna device. You can then configure your client devices to connect to the Shadowsocks server using the provided server IP, port, password, and encryption method.
 
Back
Top