OpenVPN的UDP和TCPstream量前进

我已经使用OpenVPN已经有一段时间了,但是使用TUNconfiguration,如何通过VPN发送所有TCP和UDPstream量呢? 我需要运行两个VPN客户端和服务器吗? 这是我目前的客户端configuration:

client dev tun proto tcp remote myvpnhost.com 8080 resolv-retry infinite nobind persist-key persist-tun ca "C:\\Program Files (x86)\\OpenVPN\\easy-rsa\\ca.crt" cert "C:\\Program Files (x86)\\OpenVPN\\easy-rsa\\laptop.crt" key "C:\\Program Files (x86)\\OpenVPN\\easy-rsa\\laptop.key" ns-cert-type server comp-lzo verb 3 #explicit-exit-notify 2 #ping 10 #ping-restart 60 route-method exe route-delay 2 #last updated June 04, 2011 

这一行: proto tcp意味着你的客户端将通过TCP与你的OpenVPN服务器通信。

您的stream量(UDP和TCP)已经通过您的OpenVPN基于TCP的隧道。