4
root@alireza:# apt-cache policy tor obfsproxy 
tor:
  Installed: 0.2.4.23-1
  Candidate: 0.2.4.23-1
  Version table:
 *** 0.2.4.23-1 0
        500 http://ftp.debian.org/debian/ testing/main amd64 Packages
        100 /var/lib/dpkg/status
obfsproxy:
  Installed: 0.2.11-1
  Candidate: 0.2.11-1
  Version table:
 *** 0.2.11-1 0
        500 http://ftp.debian.org/debian/ testing/main amd64 Packages
        100 /var/lib/dpkg/status

root@alireza:# which obfsproxy 
/usr/bin/obfsproxy

root@alireza:# which tor
/usr/sbin/tor

root@alireza:# cat /etc/tor/torrc
ControlPort 9051
HashedControlPassword 16:********************************************* 
CookieAuthentication 0

##########Bridges List
UseBridges 1

#obfsproxy Bridges List
bridge obfs3 19*.***.***.***:1****
#ServerTransportPlugin obfs3 exec /usr/sbin/obfsproxy managed

error log

Sep 05 21:06:57.000 [warn] We were supposed to connect to bridge '19*.***.***.***:1****' using pluggable transport 'obfs3', but we can't find a pluggable transport proxy supporting 'obfs3'. This can happen if you haven't provided a ClientTransportPlugin line, or if your pluggable transport proxy stopped running.
alireza
  • 143
  • 5

2 Answers2

3

Try with:

ClientTransportPlugin obfs3 exec /usr/bin/obfsproxy --managed

bridge 19*...:1*

0

When compiling OBFS proxy, you'll see a set of options, enabling or disabling some features, including obfs3, so try to compile it by hand from the latest git tree

Alexey Vesnin
  • 6,385
  • 3
  • 15
  • 36