Несколько минут назад я настроил свой VPN-сервер, и на самом деле я могу подключиться к VPN, но весь трафик идет через мою обычную домашнюю сеть. В моем приложении OpenVPN у меня есть информация:
Server IP: **.185.***.*10
Client IP: 10.8.0.6
Traffic: 7.3 KB in, 5.6 KB out
Так что все связано, но как я могу настроить на Windows 7, что все трафик должен идти через сетевую карту OpenVPN ??
Настройка клиента:
client
dev tun
proto udp
# enter the server's hostname
# or IP address here, and port number
remote **.185.***.*10 1194
resolv-retry infinite
nobind
persist-key
persist-tun
# Use the full filepaths to your
# certificates and keys
ca ca.crt
cert user1.crt
key user1.key
ns-cert-type server
comp-lzo
verb 6
Настройка сервера:
port 1194
proto udp
dev tun
# the full paths to your server keys and certs
ca /etc/openvpn/keys/ca.crt
cert /etc/openvpn/keys/server.crt
key /etc/openvpn/keys/server.key
dh /etc/openvpn/keys/dh2048.pem
cipher BF-CBC
# Set server mode, and define a virtual pool of IP
# addresses for clients to use. Use any subnet
# that does not collide with your existing subnets.
# In this example, the server can be pinged at 10.8.0.1
server 10.8.0.0 255.255.255.0
# Set up route(s) to subnet(s) behind
# OpenVPN server
push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"
ifconfig-pool-persist /etc/openvpn/ipp.txt
keepalive 10 120
status openvpn-status.log
verb 6
и sysctl:
net.ipv4.ip_forward=1
Спасибо за ваше время и помощь.