This service for connect to CISCO VPN and use with Socks V5 proxy
After clone project you should copy .env.example to .env (For config service). Then you fill CISCO VPN environment
variable in .env file
cp env/cisco/.env.example env/cisco/.env
# Fill variable with you editor
vi env/cisco/.envBefore you start creating iptables rules, you should make some alterations to the sysctl configuration. You can use
below command for check sysctl net.ipv4.ip_forward
sysctl net.ipv4.ip_forwardif Output of above command is zero you have to execute below command for enable net.ipv4.ip_forward
sysctl -w net.ipv4.ip_forward=1
# Or
echo 1 > /proc/sys/net/ipv4/ip_forwardAfter editing the file, you can run the following command to make the changes take effect right away.
sysctl -pNow start docker container
docker-compose -f docker-compose.yml -f docker/docker-compose.env.yml up -dThis service create network in range 10.101.0.0/29 and proxy run in 10.101.0.2
### No need use username and password for connect to proxy
### Socks proxy
curl -x socks5h://10.101.0.2:1080 ifconfig.io
### Http proxy
curl -x http://10.101.0.2:10001 ifconfig.io