Setting up shadowsocks+polipo global proxy in Linux environment

Setting up shadowsocks+polipo global proxy in Linux environment

1. Install shadowsocks
sudo apt-get install python-pip
sudo pip install shadowsocks


2. Create a configuration file shadowsocks.json, where the server address, port number, and password are for the server you purchased or use for free (such as www.ishadowsocks.org)

{
 "server": "xxxx.com",
 "server_port": 52239,
 "local_address": "127.0.0.1",
 "local_port": 1080,
 "password": "SOME_PASSWORD",
 "timeout": 600,
 "method": "aes-256-cfb",
 "fast_open": false
}

3. Start shadowsocks
sslocal -c shadowsocks.json

4. Install polipo for secondary forwarding (shadowsocks uses socks5 protocol for communication and needs to be used with browser plug-ins. If you want to use it globally in the system, you can use polipo for secondary forwarding)
sudo apt-get install polipo

5. Edit the configuration file and save it to /etc/polipo/config

# This file only needs to list configuration variables that deviate
# from the default values. See /usr/share/doc/polipo/examples/config.sample
# and "polipo -v" for variables you can tweak and further information.
 
logSyslog = true
logFile = /var/log/polipo/polipo.log
 
proxyAddress = "0.0.0.0"
 
socksParentProxy = "127.0.0.1:1080"
socksProxyType = socks5
 
chunkHighMark = 50331648
objectHighMark = 16384
 
serverMaxSlots = 64
serverSlots = 16
serverSlots1 = 32

6. Restart polipo service
sudo service polipo restart

7. Set environment variables (can be added to ~/.bashrc file to enable global SOCKS5 access for all shells)
export http_proxy="http://127.0.0.1:8123"
export https_proxy="https://127.0.0.1:8123"

8. Check whether you can get the Google homepage through the socks5 protocol
curl www.google.com
If successful, access is possible.

Summarize
The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Using shadowsocks to build a LAN transparent gateway

<<:  Implementing custom scroll bar with native js

>>:  A quick solution to the error #1929 Incorrect datetime value: '''' for column ''createtime'' when using MySQL 5.x or above

Recommend

Proxy realizes the principle of two-way binding of Vue3 data

Table of contents 1. Advantages of proxy vs. Obje...

Interviewers often ask questions about React's life cycle

React Lifecycle Two pictures to help you understa...

MySQL 8.0.15 installation and configuration graphic tutorial

This article records the installation and configu...

Analysis of the principle of Rabbitmq heartbea heartbeat detection mechanism

Preface When using RabbitMQ, if there is no traff...

Teach you how to use docker-maven-plugin to automate deployment

1. Introduction to docker-maven-plugin In our con...

JavaScript flow control (branching)

Table of contents 1. Process Control 2. Sequentia...

Implementation of Docker private warehouse registry deployment

As more and more Docker images are used, there ne...

Detailed explanation of how to enable slow query log in MySQL database

The database enables slow query logs Modify the c...

Solution to the problem of MySQL deleting and inserting data very slowly

When a company developer executes an insert state...

Detailed explanation of MySQL string concatenation function GROUP_CONCAT

In the previous article, I wrote a cross-table up...

Common problems and solutions during MySQL MGR construction

Table of contents 01 Common Faults 1 02 Common Fa...

Vue method to verify whether the username is available

This article example shares the specific code of ...