I'm trying to install OpenVpn on a remote Ubuntu 20 server and am following this tut. I'm able to step through it but cannot determine where this source address is in its example:
$ sudo iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE
The table, Appending, outgoing interface I have figured out. But I want to understand what the source addy is supposed to be. If it was the IP addy of the eth0 port, then it would make sense to be a single addy. But this is a range. Perhaps it's a white list of allowed client addy's? Reading other posts here don't include a source address/range but those posts may not be setting up a private VPN server. Thx for reading.