mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 11:11:30 -04:00
Modify torrc example to pass client args in bridge line
This commit is contained in:
parent
e762f58a31
commit
97175a91a5
4 changed files with 10 additions and 14 deletions
|
@ -29,7 +29,7 @@ go build
|
||||||
|
|
||||||
### Running the Snowflake client with Tor
|
### Running the Snowflake client with Tor
|
||||||
|
|
||||||
We have an example `torrc` file in this repository. The client uses these following `torrc` options by default:
|
The Snowflake client can be configured with either command line options or SOCKS options. We have a few example `torrc` files in this directory. We recommend the following `torrc` options by default:
|
||||||
```
|
```
|
||||||
UseBridges 1
|
UseBridges 1
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
UseBridges 1
|
UseBridges 1
|
||||||
DataDirectory datadir
|
DataDirectory datadir
|
||||||
|
|
||||||
ClientTransportPlugin snowflake exec ./client \
|
ClientTransportPlugin snowflake exec ./client -log snowflake.log
|
||||||
-url https://snowflake-broker.torproject.net.global.prod.fastly.net/ \
|
|
||||||
-front cdn.sstatic.net \
|
Bridge snowflake 192.0.2.3:1 url=https://snowflake-broker.torproject.net.global.prod.fastly.net/ front=cdn.sstatic.net ice=stun:stun.voip.blackberry.com:3478,stun:stun.altar.com.pl:3478,stun:stun.antisip.com:3478,stun:stun.bluesip.net:3478,stun:stun.dus.net:3478,stun:stun.epygi.com:3478,stun:stun.sonetel.com:3478,stun:stun.sonetel.net:3478,stun:stun.stunprotocol.org:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.voys.nl:3478
|
||||||
-ice stun:stun.voip.blackberry.com:3478,stun:stun.altar.com.pl:3478,stun:stun.antisip.com:3478,stun:stun.bluesip.net:3478,stun:stun.dus.net:3478,stun:stun.epygi.com:3478,stun:stun.sonetel.com:3478,stun:stun.sonetel.net:3478,stun:stun.stunprotocol.org:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.voys.nl:3478
|
|
||||||
|
|
||||||
Bridge snowflake 192.0.2.3:1
|
|
||||||
SocksPort auto
|
SocksPort auto
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
UseBridges 1
|
|
||||||
DataDirectory datadir
|
|
||||||
|
|
||||||
ClientTransportPlugin snowflake exec ./client \
|
|
||||||
-url http://localhost:8080/ \
|
|
||||||
-keep-local-addresses
|
|
||||||
|
|
||||||
Bridge snowflake 192.0.2.3:1
|
|
6
client/torrc.localhost
Normal file
6
client/torrc.localhost
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
UseBridges 1
|
||||||
|
DataDirectory datadir
|
||||||
|
|
||||||
|
ClientTransportPlugin snowflake exec ./client -keep-local-addresses
|
||||||
|
|
||||||
|
Bridge snowflake 192.0.2.3:1 url=http://localhost:8080/
|
Loading…
Add table
Add a link
Reference in a new issue