I am relatively new in this VPN/openvpn thingy, but i must ask a few question becouse we setted up a VPN and i have functionality issues.
We did made a configuration to lan gaming. Its working on a so-so condition. But i have some problem, and i would like ask a help. We have a remote server what is the bridged connection between all clients. We see each other thru tap and udp. We can play, we have internet besides the connection on our machines, but...
On our bridged server we are running an other service(namely a game server). Now then. After we join our VPN and it starting to work, the domain name itself stops working(We tried local lan and outsider IPs too without vpn and with vpn, the server ip address and domain name stops working until restart.), and we cannot connect to it other then the vpn ip addresses(Outsiders cannot connect too, becouse the dns and the external IP stops working) and we cannot know why is this and how should we solve it....
My other problem is, we are using UDP connection. But we want use TCP too, under the same circumstances... How can this be done. I checked google and more things, but i cannot found what i searched...
My server config is:
Code: Select all
tls-server 1
port 1194
proto udp
dev tap
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem
server-bridge 192.168.200.1 255.255.255.0 192.168.200.1 192.168.200.200
push dhcp-option DNS 192.168.200.1
client-to-client 1
comp-lzo yes
keepalive 10 120
persist-key 1
persist-tun 1
verb 3
mute 20
Code: Select all
client
dev tap
proto udp
remote my_host_name 1194
resolv-retry infinite
mute-replay-warnings
nobind
persist-key
persist-tun
ca ca.crt
cert client.crt
key client.key
ns-cert-type server
comp-lzo
verb 3
keepalive 10 120
In short:
1. To make the dns avaliable on the server(bridge) machine to that we can use the server's other services(Like web port 80, ftp, ect...)
2. Use UDP and TCP at the same time(We try to make a smaller little vpn like hamachi or tunggle)
PS: Is there any GUI to SETUP openvpn? Or its just this config file meddling?