0

Referring to this answer I'm trying to route UDP streaming through an available OpenVPN tunnel. On the VPN client machine, I've access to a UDP stream over an IP (udp://1.2.3.4:5555) which I want to listen to it on VPN server machine through that vpn tunnel. I tried different questions and couldn't find my answer. Here's the VPN connection status:

VPN Server which I want to get the UDP stream on

tap0 inet addr:100.64.100.1 Bcast:100.64.100.255 Mask:255.255.255.0

And

VPN Client which I have access to that UDP stream on

tap0 inet addr:100.64.100.2 Bcast:100.64.100.255 Mask:255.255.255.0

Any reference or help is appreciated,

Mehdi
  • 1

1 Answers1

0

Your configuration does not look ok. On the one hand you are using a tap0 interface, which indicates the use of a bridged OpenVPN, which is perfect. But on the other hand, the interfaces have public, rouable addresses, while they should have private, non-routable addresses belonging to the LAN to which the client is trying to connect.

This being said, stream an UDP stream is simple, vlc can do it, see for instance this very good guide.

MariusMatutiae
  • 48,517
  • 12
  • 86
  • 136