I'm new to OpenVPN but have managed to install it on an Ubuntu machine. The requirement is to allow Mikrotik and then laptop clients to connect to the VPN. I managed to make this work by running two openvpn servers on the same machine, one configured to proto tcp
and one for proto udp
each listening on different ports. The tcp version uses 10.8.0.0/24
and the udp version uses 10.9.0.0/24
.
If I do an ifconfig
on the Ubuntu server I see eth0
, tap0
and tap1
. The Mikrotik can connect to the VPN and the laptops can connect to the VPN via the respective ports and have proper connectivity.
How can I allow devices on tap0
, ie. network 10.8.0.0/24
to see devices on tap1
, ie. network 10.9.0.0/24
.
Will bridging tap0
and tap1
work, and if so how can that be done. Or how is this possible?