Configuration

Client configuration

Transport selection, identity and local proxy settings.

Applies to 1.0.0-alphaTranslated

Overview

Client configuration is TOML and selects both the remote server identity and a local SOCKS listener. Required fields are validated after command-line overrides. transport is required and accepts tcp or quic. If udp_transport is absent, UDP inherits the final merged transport value; setting it changes UDP associations without changing TCP CONNECT traffic.

Details

public_key must decode to 32 bytes. mldsa_verify must be a nonempty base64 value and should be the verification key generated for the server identity. short_id must be an accepted server entry, and server_name must be accepted by the server. fingerprint is required: the built-in names include chrome-latest and chrome-150-macos. At this release, chrome-latest still follows the historical Chrome 150 profile.

Client template

server = "198.51.100.10:443"
transport = "tcp"
public_key = "<X25519_PUBLIC_BASE64>"
short_id = "<SHORT_ID_HEX>"
server_name = "cover.example"
fingerprint = "chrome-latest"
mldsa_verify = "<MLDSA_VERIFY_BASE64>"
socks_listen = "127.0.0.1:1080"
FieldDefault / requirementMeaning
serverRequiredUmbra server, host:port
transportRequiredMain outer transport: tcp or quic
udp_transporttransportUDP outer transport; inherits transport if omitted
public_keyRequiredServer X25519 public identity, 32 base64-decoded bytes
short_idRequiredOne accepted server short ID
server_nameRequiredAccepted server SNI
fingerprintRequiredBuilt-in fingerprint profile name
mldsa_verifyRequiredServer ML-DSA verification key, nonempty base64
socks_listenRequiredLocal SOCKS5 socket, no-auth
spider_path"/"Real-site path; begins with /, no CR/LF
muxtrueEncrypted mux; false selects dedicated TCP/Vision
padding_scheme"default"Inner padding policy
tcp_evasion"segment"Ordered ClientHello write policy

Verify

Use a loopback socks_listen address because SOCKS supports no-auth negotiation. mux defaults to true; false chooses the dedicated TCP/Vision mode for TCP connections. spider_path defaults to /, must start with / and cannot contain carriage returns or line feeds. It is used for the real-site behavior when authentication does not establish an Umbra session. Optional performance limits are a separate table. A syntactically valid file is not proof that keys match or that the selected destination is reachable.

Next steps

On this page