Created
December 7, 2016 22:46
-
-
Save saivert/882c8264da8a1c13ea5c285429636290 to your computer and use it in GitHub Desktop.
Connect to OpenVPN server from inside LAN
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
client | |
dev tun | |
proto udp | |
. | |
. | |
. | |
# !! Need to use LAN address when connecting from inside the LAN using UDP | |
remote 192.168.1.1 1194 | |
# !! Also need to fix route | |
route 192.168.1.1 255.255.255.255 192.168.1.1 1 | |
. | |
. | |
. | |
# rest of config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment