Answer the question
In order to leave comments, you need to log in
VPN + tor (on one Centos 6.5 server). How to configure possible solution paths?
There is a Centos server, VPN is raised on it.
I also want to install tor on this server and let all VPN traffic go through it.
How is this possible? Those. connect to the server via VPN, and have VPN traffic go through tor on the same server.
My knowledge is very poor. I installed tor - yum -y install tor I
check through the test file
<?php
error_reporting(E_ALL);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://internet.yandex.ru/");
curl_setopt($ch, CURLOPT_PROXY, '127.0.0.1:9050');
curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
$result = curl_exec($ch);
curl_close($ch);
echo $result;
?>
- works Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question