Skip to content

Commit

Permalink
fix #409, support custom stun server
Browse files Browse the repository at this point in the history
  • Loading branch information
cnlh committed Feb 22, 2020
1 parent f6063e0 commit 77c4a0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion cmd/npc/npc.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ var (
logPath = flag.String("log_path", "", "npc log path")
debug = flag.Bool("debug", true, "npc debug")
pprofAddr = flag.String("pprof", "", "PProf debug addr (ip:port)")
stunAddr = flag.String("stun_addr", "stun.stunprotocol.org:3478", "stun server address (eg:stun.stunprotocol.org:3478)")
)

const systemdScript = `[Unit]
Expand Down Expand Up @@ -130,7 +131,9 @@ func main() {
install.UpdateNpc()
return
case "nat":
nat, host, err := stun.NewClient().Discover()
c := stun.NewClient()
c.SetServerAddr(*stunAddr)
nat, host, err := c.Discover()
if err != nil || host == nil {
logs.Error("get nat type error", err)
return
Expand Down
4 changes: 2 additions & 2 deletions docs/npc_extend.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# 增强功能
## nat类型检测
```
./npc nat
./npc nat -stun_addr=stun.stunprotocol.org:3478
```
如果p2p双方都是Symmetric Nat,肯定不能成功,其他组合都有较大成功率。
如果p2p双方都是Symmetric Nat,肯定不能成功,其他组合都有较大成功率。`stun_addr`可以指定stun服务器地址。
## 状态检查
```
./npc status -config=npc配置文件路径
Expand Down

0 comments on commit 77c4a0c

Please sign in to comment.