{
"server": "MuYi086.herokuapp.com", // 你创建的herokuapp的服务器地址
"local_address": "127.0.0.1",
"scheme": "ws",
"local_port": "1080", // 本地监听端口:一般设为1080
"remote_port": "80", // 远程端口:一般为80或443,以服务器设置为准
"password": "xxxx", // 服务器密码
"timeout": 600,
"method": "aes-256-cfb" // 服务器加密方式
}
const TCPRelay = require('./tcprelay').TCPRelay
const local = require('commander')
const constants = require('./constants')
local
.version(constants.VERSION)
.option('-m --method <method>', 'encryption method, default: aes-256-cfb')
.option('-k --password <password>', 'password')
.option('-s --server-address <address>', 'server address')
.option('-p --server-port <port>', 'server port, default: 8388')
.option('-b --local-address <address>', 'local binding address, default: 127.0.0.1')
.option('-l --local-port <port>', 'local port, default: 1080')
.option('--log-level <level>', 'log level(debug|info|warn|error|fatal)', /^(debug|info|warn|error|fatal)$/i, 'info')
.option('--log-file <file>', 'log file')
.parse(process.argv);
var relay = new TCPRelay({
localAddress: local.localAddress || '127.0.0.1',
localPort: local.localPort || 1080,
serverAddress: local.serverAddress || 'MuYi086.herokuapp.com',
serverPort: local.serverPort || 80,
password: local.password || 'MuYi086nihao',
method: local.method || 'aes-256-cfb'
}, true)
relay.setLogLevel(local.logLevel)
relay.setLogFile(local.logFile)
relay.bootstrap()