2015-04-30 12:08:49 +02:00
|
|
|
OpenVPN over Obfsproxy
|
|
|
|
======================
|
|
|
|
|
2015-04-30 12:32:52 +02:00
|
|
|
Obfsproxy is a pluggable transport proxy written in python.
|
|
|
|
We can transport OpenVPN over Obfsproxy, so that firewall cannot detect it.
|
|
|
|
|
|
|
|
To use the example bellow, you should run `kylemanna/openvpn` with tcp first.
|
|
|
|
|
2015-04-30 12:08:49 +02:00
|
|
|
## docker-compose.yml
|
|
|
|
|
|
|
|
```
|
|
|
|
obfsproxy:
|
|
|
|
image: vimagick/obfsproxy:latest
|
|
|
|
ports:
|
|
|
|
- "4911:4911"
|
|
|
|
links:
|
|
|
|
- openvpn_server_1:openvpn
|
|
|
|
environment:
|
|
|
|
- PASSWORD=J23TNHPJPAOQJLTCPLFD4CQYVFY6MEVP
|
|
|
|
- DEST_HOST=openvpn
|
|
|
|
- DEST_PORT=1194
|
|
|
|
- LISTEN_ADDR=0.0.0.0
|
|
|
|
- LISTEN_PORT=4911
|
|
|
|
restart: always
|
|
|
|
```
|
|
|
|
|