Search found 3 matches

by albuquerque
2018/11/01 16:10:19
Forum: CentOS 7 - Networking Support
Topic: OpenVPN: Clients can connect to each other but not the server
Replies: 5
Views: 1608

Re: OpenVPN: Clients can connect to each other but not the server

Have a look at iptables default policy and check if there are firewall rules preventing connections through tun-interface. iptables -L -v |grep -i 'tun\|policy' I am using tap interface as icecc cannot broadcast over tun. However, I seem to have iptables set for tun which I might have set up during...
by albuquerque
2018/11/01 16:05:17
Forum: CentOS 7 - Networking Support
Topic: OpenVPN: Clients can connect to each other but not the server
Replies: 5
Views: 1608

Re: OpenVPN: Clients can connect to each other but not the server

What is the address(es) on your outside interface? $ ip addr 10.64.xxx.xx What interface does OpvnVPN listen on? After having experimented a lot. It is now listening on a virbr0 interface that is hardcoded to 192.168.122.1. This has been set for port forwarding via eth1 -A INPUT -i eth1 -p udp -m u...
by albuquerque
2018/10/24 10:10:39
Forum: CentOS 7 - Networking Support
Topic: OpenVPN: Clients can connect to each other but not the server
Replies: 5
Views: 1608

OpenVPN: Clients can connect to each other but not the server

I am trying to build a VPN on a remote VM. I have to use the tap interface because one of the application that we need to use ignores broadcasting over tun0 tunnels but is happy to broadcast over tap0. All the clients can connect to the vpn and are able to see each other, but they can't see the serv...