github.com/sagernet/sing-box@v1.9.0-rc.20/docs/configuration/outbound/hysteria.zh.md (about)

     1  ### 结构
     2  
     3  ```json
     4  {
     5    "type": "hysteria",
     6    "tag": "hysteria-out",
     7    
     8    "server": "127.0.0.1",
     9    "server_port": 1080,
    10    "up": "100 Mbps",
    11    "up_mbps": 100,
    12    "down": "100 Mbps",
    13    "down_mbps": 100,
    14    "obfs": "fuck me till the daylight",
    15    "auth": "",
    16    "auth_str": "password",
    17    "recv_window_conn": 0,
    18    "recv_window": 0,
    19    "disable_mtu_discovery": false,
    20    "network": "tcp",
    21    "tls": {},
    22    
    23    ... // 拨号字段
    24  }
    25  ```
    26  
    27  ### 字段
    28  
    29  #### server
    30  
    31  ==必填==
    32  
    33  服务器地址。
    34  
    35  #### server_port
    36  
    37  ==必填==
    38  
    39  服务器端口。
    40  
    41  #### up, down
    42  
    43  ==必填==
    44  
    45  格式: `[Integer] [Unit]` 例如: `100 Mbps, 640 KBps, 2 Gbps`
    46  
    47  支持的单位 (大小写敏感, b = bits, B = bytes, 8b=1B):
    48  
    49      bps (bits per second)
    50      Bps (bytes per second)
    51      Kbps (kilobits per second)
    52      KBps (kilobytes per second)
    53      Mbps (megabits per second)
    54      MBps (megabytes per second)
    55      Gbps (gigabits per second)
    56      GBps (gigabytes per second)
    57      Tbps (terabits per second)
    58      TBps (terabytes per second)
    59  
    60  #### up_mbps, down_mbps
    61  
    62  ==必填==
    63  
    64  以 Mbps 为单位的 `up, down`。
    65  
    66  #### obfs
    67  
    68  混淆密码。
    69  
    70  #### auth
    71  
    72  base64 编码的认证密码。
    73  
    74  #### auth_str
    75  
    76  认证密码。
    77  
    78  #### recv_window_conn
    79  
    80  用于接收数据的 QUIC 流级流控制窗口。
    81  
    82  默认 `15728640 (15 MB/s)`。
    83  
    84  #### recv_window
    85  
    86  用于接收数据的 QUIC 连接级流控制窗口。
    87  
    88  默认 `67108864 (64 MB/s)`。
    89  
    90  #### disable_mtu_discovery
    91  
    92  禁用路径 MTU 发现 (RFC 8899)。 数据包的大小最多为 1252 (IPv4) / 1232 (IPv6) 字节。
    93  
    94  强制为 Linux 和 Windows 以外的系统启用(根据上游)。
    95  
    96  #### network
    97  
    98  启用的网络协议。
    99  
   100  `tcp` 或 `udp`。
   101  
   102  默认所有。
   103  
   104  #### tls
   105  
   106  ==必填==
   107  
   108  TLS 配置, 参阅 [TLS](/zh/configuration/shared/tls/#outbound)。
   109  
   110  
   111  ### 拨号字段
   112  
   113  参阅 [拨号字段](/zh/configuration/shared/dial/)。