I've set up an openvpn access server in my AWS account. All went well, I can SSH into its shell, get to the admin console, add a user, connect to that user. However, when connected I don't have other internet access and I need to. I've read many pages on this but none have worked. The OpenVPN docs (https://openvpn.net/community-resources ... /#redirect) say to add these:
push "redirect-gateway def1"
push "dhcp-option DNS 8.8.8.8"
To the server config file. I am running 2.6.1 of Open VPN on my EC2 instance - so is the "server config file" /usr/local/openvpn_as/etc/as.conf? I assumed it was even though I wasn't sure because this file seems to be key/value pairs not push statements. I added the two entries above (i opeted to use Google's DNS server) and then did the following per the docs:
iptables -t nat -A POSTROUTING -s 10.0.0.0/16 -o ens0 -j MASQUERADE
Note that I am on a 10.x.x.x subnet and that my interface is named ens0. I see other interfaces (as0t0 through as0t3) which I assume are associated with the access server, so I also ran the above iptables command on all those. All of this to no avail

So how do I configure my EC2 instance of OpenVPN to also allow internet traffic? I am totally stumped.