OpenVPN outgoing Traffic Being Blocked

Issues related to configuring your network
Post Reply
williamk7
Posts: 2
Joined: 2018/02/23 06:24:33

OpenVPN outgoing Traffic Being Blocked

Post by williamk7 » 2020/04/28 00:39:43

Hi All,

Setup an openvpn access server. Am using Routing rather than NAT for the VPN. With firewalld turned off everything works and routes as expected. Turn on the firewall and it breaks. In the logs I can see my packets being dropped:

Code: Select all

[root@openvpnas ~]$ dmesg | grep -i REJECT
[  298.700296] FINAL_REJECT: IN=as0t3 OUT=enp3s0 MAC= SRC=172.27.232.66 DST=192.168.103.10 LEN=60 TOS=0x00 PREC=0x00 TTL=63 ID=28347 DF PROTO=TCP SPT=44366 DPT=80 WINDOW=64240 RES=0x00 SYN URGP=0 MARK=0x6000000 
[  300.599828] FINAL_REJECT: IN=as0t3 OUT=enp3s0 MAC= SRC=172.27.232.66 DST=192.168.103.10 LEN=60 TOS=0x00 PREC=0x00 TTL=63 ID=46876 DF PROTO=TCP SPT=44380 DPT=80 WINDOW=64240 RES=0x00 SYN URGP=0 MARK=0x6000000 
[  302.274635] FINAL_REJECT: IN=as0t3 OUT=enp3s0 MAC= SRC=172.27.232.66 DST=192.168.103.10 LEN=60 TOS=0x00 PREC=0x00 TTL=63 ID=30821 DF PROTO=TCP SPT=44394 DPT=80 WINDOW=64240 RES=0x00 SYN URGP=0 MARK=0x6000000 
[  307.642134] FINAL_REJECT: IN=as0t3 OUT=enp3s0 MAC= SRC=172.27.232.66 DST=192.168.103.10 LEN=60 TOS=0x00 PREC=0x00 TTL=63 ID=57711 DF PROTO=TCP SPT=44404 DPT=80 WINDOW=64240 RES=0x00 SYN URGP=0 MARK=0x6000000 
I tried adding a rich rule to allow the traffic, but this did not work
firewall-cmd --zone=public --add-rich-rule='rule family=ipv4 source address=172.27.232.66 destination address=192.168.103.0/24 accept' --permanent

I see that traffic is coming from VPN virtual interface/tunnel As0t3 and trying to go out interface enp3s0 which it the main server interface. That is correct. What rules do I need to add to allow traffic between the VPN tunnels and my main interface?

aks
Posts: 3073
Joined: 2014/09/20 11:22:14

Re: OpenVPN outgoing Traffic Being Blocked

Post by aks » 2020/04/28 19:33:26

The (iptables) --related?

User avatar
TrevorH
Site Admin
Posts: 33219
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: OpenVPN outgoing Traffic Being Blocked

Post by TrevorH » 2020/04/30 13:40:31

CentOS 8 uses nftables not iptables so firewalld has to use it too.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

Post Reply