Skip to content

Commit

Permalink
update config file
Browse files Browse the repository at this point in the history
  • Loading branch information
asche910 committed Oct 17, 2019
1 parent 0eceb86 commit 9b2fa40
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions flynet.conf
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
# flynet config file
#
# multiple line you can use ``
# mode support:
# ['http', 'socks5', 'socks5-tcp', 'socks5-udp', 'forward']
#
# method support:
# ['aes-128-cfb','aes-192-cfb', 'aes-256-cfb', 'aes-128-ctr', 'aes-192-ctr',
# 'aes-256-ctr', 'rc4-md5', 'rc4-md5-6', 'chacha20', 'chacha20-ietf']
#
# more information at https://github.com/asche910/flynet
#

[server]
mode = socks-tcp
port = 8888 # listen port for client to connect
mode = socks5-tcp # work mode
port = 8888 # listen port; multi port use space to divide
method = "aes-256-cfb"
password =
# verbose = true
# log = flynet.log
verbose = true
log = flynet.log


[client]
mode = socks-tcp
mode = socks5-tcp # work mode
port = 1080 # local socks5 listen port
serverAddr = example.com:8080 # include host and port
method = "aes-256-cfb"
password =
# verbose = true
verbose = false
# log = flynet.log

0 comments on commit 9b2fa40

Please sign in to comment.