User Tools

Site Tools


netflix

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
netflix [2018/03/17 13:18] – created skipidarnetflix [2020/12/27 20:35] (current) – external edit 127.0.0.1
Line 3: Line 3:
 ==== Open VPN Proxy ==== ==== Open VPN Proxy ====
  
-The cloud formation proxy, for the OpenVPN deployment. \\ +  * The cloud formation proxy, for the OpenVPN deployment. 
-For the deployment of an OpenVPN Server in **US East (N. Virginia)** \\ +  For the deployment of an OpenVPN Server in **US East (N. Virginia)** 
-To deploy the instance in another region - you have to replace InstanceAMI ami-f6eed4e0 by another AMI. Find the right AMI under "Manual Deployment " on the marketplace: https://aws.amazon.com/marketplace/pp/B00MI40CAE/ref=mkt_wir_openvpn_byol+  To deploy the instance in another region - you have to replace InstanceAMI **ami-f6eed4e0** by another AMI. Find the right AMI under "Manual Deployment " on the marketplace: https://aws.amazon.com/marketplace/pp/B00MI40CAE/ref=mkt_wir_openvpn_byol
  
 <code> <code>
Line 157: Line 157:
  
 Outputs: Outputs:
 +  OpenVPNLogin:
 +    Description: OpenVPN Login username
 +    Value: openvpn 
   OpenVPNServerAdminURL:   OpenVPNServerAdminURL:
     Description: OpenVPN Administration URL     Description: OpenVPN Administration URL
Line 165: Line 168:
  
 </code> </code>
 +
 +
 +==== Router Asus RT-N66U ====
 +To enable VPN tunneling on your Asus RT-N66U
 +
 +  * Install "Merlin Firmware" from https://asuswrt.lostrealm.ca/ to enable VPN Client function on your router
 +  * Download the client.ovpn file from your OpenVPN server and upload it to the router
 +  * Check that UDP is marked as the protocol. 
 +
 +Only UDP is allowed by the firewall and accepted by the OpenVPN server deployed above.
 +{{https://lh3.googleusercontent.com/-nz9zVgIMSmM/Wq0y9lNrkVI/AAAAAAAAAGQ/gOYaeQxhOwkLNHPtLZAYuNoSkQNLinYWACHMYCw/s0/2018-03-17_16-23-35.png}}
 +
 +
 +{{https://lh3.googleusercontent.com/-TO7garIcqUQ/Wq0yhxvZUbI/AAAAAAAAAGM/YPcLewymeR4hehK6lgu9qi32ixBYu-JRwCHMYCw/s0/screencapture-192-168-191-1-Advanced_OpenVPNClient_Content-asp-2018-03-17-16_18_56.png}}
 +
 +
 +== Config VPN client ==
 +In Merlin-WRT the client configuration is located in 
 +<code>
 +/etc/openvpn/client1/config.ovpn
 +</code>
 +
 +Here the ip may be modified:
 +<code>
 +# Automatically generated configuration
 +daemon
 +client
 +dev tun11
 +proto udp
 +remote 44.18.203.121 1194
 +resolv-retry infinite
 +nobind
 +persist-key
 +persist-tun
 +compress
 +ncp-ciphers AES-128-GCM:AES-256-GCM:AES-128-CBC:AES-256-CBC
 +cipher AES-128-CBC
 +script-security 2
 +route-delay 2
 +route-up vpnrouting.sh
 +route-pre-down vpnrouting.sh
 +verb 3
 +reneg-sec 604800
 +tls-auth static.key 1
 +ca ca.crt
 +cert client.crt
 +key client.key
 +auth-user-pass up
 +status-version 2
 +status status 5
 +
 +# Custom Configuration
 +setenv FORWARD_COMPATIBLE 1
 +server-poll-timeout 4
 +dev-type tun
 +ns-cert-type server
 +sndbuf 100000
 +rcvbuf 100000
 +</code>
 +
netflix.1521292703.txt.gz · Last modified: (external edit)