github.com/sagernet/sing-box@v1.9.0-rc.20/docs/configuration/ntp/index.zh.md (about) 1 # NTP 2 3 内建的 NTP 客户端服务。 4 5 如果启用,它将为像 TLS/Shadowsocks/VMess 这样的协议提供时间,这对于无法进行时间同步的环境很有用。 6 7 ### 结构 8 9 ```json 10 { 11 "ntp": { 12 "enabled": false, 13 "server": "time.apple.com", 14 "server_port": 123, 15 "interval": "30m", 16 17 ... // 拨号字段 18 } 19 } 20 21 ``` 22 23 ### 字段 24 25 #### enabled 26 27 启用 NTP 服务。 28 29 #### server 30 31 ==必填== 32 33 NTP 服务器地址。 34 35 #### server_port 36 37 NTP 服务器端口。 38 39 默认使用 123。 40 41 #### interval 42 43 时间同步间隔。 44 45 默认使用 30 分钟。 46 47 ### 拨号字段 48 49 参阅 [拨号字段](/zh/configuration/shared/dial/)。