当前位置: 首页 > 工具软件 > PAC > 使用案例 >

pac配置

秦涵映
2023-12-01

基本软件:

Ubuntu 16.04
Ss-Qt5
GenPACpip

配置流程

  1. 安装软件:

    sudo pip install genpac
    sudo pip install --upgrade genpac
    
  2. 生成文件:

    sudo genpac --proxy="SOCKS5 127.0.0.1:1080" \
    --gfwlist-proxy="SOCKS5 127.0.0.1:1080" \
    -o autoproxy.pac \
    --gfwlist-url="https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt"
    
  3. 引用文件
    设置–>系统设置–>网络–>网络代理,选择自动;然后在文件目录下将 autoproxy.pac 文件拖拽到“配置URL©” 后面的框中

  4. 完成

SS client配置

$ sudo apt-get update
$ sudo apt-get install python-pip
$ sudo pip install shadowsocks

建立一个json文件:

$ sudo vim /etc/shadowsocks/config.json
{

"server":"server_ip",

"server_port":port,

"local_address":"127.0.0.1",

"local_port":1080,

"password":"port_password",

"timeout":300,

"method":"aes-256-cfb"

}

启动:

$ sudo sslocal -c /etc/shadowsocks/config.json -d start

参考:http://www.linuxdiyf.com/linux/28807.html

 类似资料: