Shelikhoo 239357509f update snowflake to use pion webrtc v4 | 1 week ago | |
---|---|---|
.. | ||
lib | 1 week ago | |
README.md | 1 month ago | |
main.go | 3 weeks ago |
Table of Contents
This is a standalone (not browser-based) version of the Snowflake proxy. For browser-based versions of the Snowflake proxy, see https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake-webext.
go get
will fetch this dependency automatically during the build process.To build the Snowflake proxy, make sure you are in the proxy/
directory, and then run:
go get
go build
The Snowflake proxy can be run with the following options:
Usage of ./proxy:
-allow-non-tls-relay
allow this proxy to pass client's data to the relay in an unencrypted form.
This is only useful if the relay doesn't support encryption, e.g. for testing / development purposes.
-allow-proxying-to-private-addresses
allow forwarding client connections to private IP addresses.
Useful when a Snowflake server (relay) is hosted on the same private network as this proxy.
-allowed-relay-hostname-pattern string
this proxy will only be allowed to forward client connections to relays (servers) whose URL matches this pattern.
Note that a pattern "example.com$" will match "subdomain.example.com" as well as "other-domain-example.com".
In order to only match "example.com", prefix the pattern with "^": "^example.com$" (default "snowflake.torproject.net$")
-broker URL
The URL of the broker server that the proxy will be using to find clients (default "https://snowflake-broker.torproject.net/")
-capacity uint
maximum concurrent clients (default is to accept an unlimited number of clients)
-disable-stats-logger
disable the exposing mechanism for stats using logs
-ephemeral-ports-range range
Set the range of ports used for client connections (format:"<min>:<max>").
If omitted, the ports will be chosen automatically.
-keep-local-addresses
keep local LAN address ICE candidates.
This is usually pointless because Snowflake clients don't usually reside on the same local network as the proxy.
-log filename
log filename. If not specified, logs will be output to stderr (console).
-metrics
enable the exposing mechanism for stats using metrics
-metrics-address address
set listen address for metrics service (default "localhost")
-metrics-port int
set port for the metrics service (default 9999)
-nat-probe-server URL
The URL of the server that this proxy will use to check its network NAT type.
Determining NAT type helps to understand whether this proxy is compatible with certain clients' NAT (default "https://snowflake-broker.torproject.net:8443/probe")
-nat-retest-interval duration
the time interval between NAT type is retests (see "nat-probe-server"). 0s disables retest. Valid time units are "s", "m", "h". (default 24h0m0s)
-outbound-address address
prefer the given address as outbound address for client connections
-poll-interval duration
how often to ask the broker for a new client. Keep in mind that asking for a client will not always result in getting one. Minumum value is 2s. Valid time units are "ms", "s", "m", "h". (default 5s)
-relay URL
The default URL of the server (relay) that this proxy will forward client connections to, in case the broker itself did not specify the said URL (default "wss://snowflake.torproject.net/")
-stun URL
STUN server `URL` that this proxy will use will use to, among some other things, determine its public IP address (default "stun:stun.l.google.com:19302")
-summary-interval duration
the time interval between summary log outputs, 0s disables summaries. Valid time units are "s", "m", "h". (default 1h0m0s)
-unsafe-logging
keep IP addresses and other sensitive info in the logs
-verbose
increase log verbosity
-version
display version info to stderr and quit
For more information on how to run a Snowflake proxy in deployment, see our community documentation.