bigeagle / gohop

A VPN implemention in golang, with crypto and obfuscation in nature.
1.33k stars 195 forks source link

Uncle to connect Handshake timeout, retry #30

Open mateors opened 2 years ago

mateors commented 2 years ago

Handshake timeout, retry

my server config file

[default]
# server or client
mode = server

[server]
# port range to listen
hopstart = 40100
hopend = 40200
# server addr
#addr = 10.1.1.1/24
addr=74.208.181.199/32
# master key
#mtu = 1400
mtu = 1400
key = mykey
# method of traffic morphing: none or randsize
morphmethod = randsize
# Fix MSS for tcp handshake
fixmss = true
peertimeout = 60
up = some.sh
down = some.sh

my client config file

[default]
# server or client
mode = client

[client]
# gohop server
server = 74.208.181.199
# port range for hopping
#hopstart = 4000
hopstart=40100
hopend=40200
#hopend = 5000
#mtu = 1400
mtu = 1400
key = mykey
# method of traffic morphing: none or randsize
morphmethod = randsize
# whether to redirect flow through gohop
redirect-gateway = true
# is server and client in the same subnet?
local = false
heartbeat-interval = 30
up = chnroute-up.sh
down = chnroute-down.sh

so whats wrong?