I have Vidalia installed, configure Chrome to use port 8118 for the proxy server, and I checked my connection through https://check.torproject.org/ , but I am having difficulty getting this to work with the cURL command-line tool. Here is what I am trying:
C:\>curl -v --proxy localhost::9050 http://google.com * About to connect() to proxy localhost port 0 (#0) * Failed to connect to β: Address not available * No error * Trying 127.0.0.1... Failed to connect to 127.0.0.1: Address not available * No error * couldn't connect to host * Closing connection #0 curl: (7) Failed to connect to β: Address not available
solvable
curl -v --socks4a localhost:9050 http:
source share