<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.amahi.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Michael+Young</id>
	<title>Amahi Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.amahi.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Michael+Young"/>
	<link rel="alternate" type="text/html" href="https://wiki.amahi.org/index.php/Special:Contributions/Michael_Young"/>
	<updated>2026-05-02T16:02:59Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://wiki.amahi.org/index.php?title=OpenVPN_troubleshooting&amp;diff=68378</id>
		<title>OpenVPN troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.amahi.org/index.php?title=OpenVPN_troubleshooting&amp;diff=68378"/>
		<updated>2013-02-11T22:10:54Z</updated>

		<summary type="html">&lt;p&gt;Michael Young: /* Blocked port 1194 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Typical problems with the VPN:&lt;br /&gt;
&lt;br /&gt;
* You cannot VPN into your network from your very own network (kinda duh)&lt;br /&gt;
* You cannot login two users simultaneously&lt;br /&gt;
* You cannot login to your network from another network with the exact same settings. You can probably reach your own HDA, but not other systems in the network, due to routing (the HDA has direct connection via the VPN tunnel).&lt;br /&gt;
* Check that you have port forwarded 1194 udp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Moving to TCP ==&lt;br /&gt;
&lt;br /&gt;
If UDP is not working because of your ISP (see list below). Then you will have to change from udp to tcp and change your port forwarding of 1194/udp to 1194/tcp.&lt;br /&gt;
&lt;br /&gt;
== Client side: (Windows) ==&lt;br /&gt;
&lt;br /&gt;
Right click the red A, click edit settings.&lt;br /&gt;
If you have a thing saying &amp;quot;HomeHDA &amp;gt; &amp;quot; then mouse over it and click edit settings. Change:&lt;br /&gt;
&lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to&lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
== Blocked port 1194 ==&lt;br /&gt;
Sometimes port 1194 is blocked if you are behind a corporate firewall or someother firewall. The trick is then to use a port that is open. If you are not running https on your amahi, using port 443 is a good choice.&lt;br /&gt;
&lt;br /&gt;
To move to port 443 on Amahi systems built on ?????? edit this file&lt;br /&gt;
{{Code|gedit /etc/openvpn/amahi.conf}}&lt;br /&gt;
or&lt;br /&gt;
{{Code|sudo nano -w /etc/openvpn/amahi.conf}}&lt;br /&gt;
&lt;br /&gt;
To move to port 443 on Amahi systems built on Ubuntu 12.04 edit this file&lt;br /&gt;
{{Code|gedit /etc/openvpn/openvpn.conf}}&lt;br /&gt;
or&lt;br /&gt;
{{Code|sudo nano -w /etc/openvpn/openvpn.conf}}&lt;br /&gt;
&lt;br /&gt;
change the line:&amp;lt;br&amp;gt;&lt;br /&gt;
{{Text|port 1194}}&lt;br /&gt;
into&lt;br /&gt;
{{Text|port 443}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Of course you also need to tell the client side to use port 443!&lt;br /&gt;
Add the following line to your client's config file&lt;br /&gt;
&lt;br /&gt;
{{Text|remote &amp;lt;hda_username&amp;gt;.yourhda.com 443}}&lt;br /&gt;
&lt;br /&gt;
If for some reason the DDNS (yourhda.com) is not working but your control panel is updating, then add this line at the top of the config file.&lt;br /&gt;
&lt;br /&gt;
{{Text|remote YOUR_IP_HERE &amp;lt;port&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
Note: If you have a dynamic ip, then you will probably need to update this everyday. If you have a static ip then you are fine.&lt;br /&gt;
&lt;br /&gt;
== Manually (Windows) ==&lt;br /&gt;
&lt;br /&gt;
Edit this file manually or use:&lt;br /&gt;
&lt;br /&gt;
Seven x64&lt;br /&gt;
&lt;br /&gt;
   C:\Program Files (x86)\HDAConnect\config\HomeHDA.opvn&lt;br /&gt;
&lt;br /&gt;
Seven x86 or 32 bit (Also most other Windows versions)&lt;br /&gt;
&lt;br /&gt;
   C:\Program Files\HDAConnect\config\HomeHDA.opvn&lt;br /&gt;
&lt;br /&gt;
Run notepad as admin and open the above file.&lt;br /&gt;
&lt;br /&gt;
== Client Side (Linux/Mac) ==&lt;br /&gt;
&lt;br /&gt;
Similarly, locate the configuration file and change&lt;br /&gt;
&lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to &lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
== On the Server side ==&lt;br /&gt;
For Amahi systems built on ?????? edit this file&lt;br /&gt;
{{Code|gedit /etc/openvpn/amahi.conf}}&lt;br /&gt;
or&lt;br /&gt;
{{Code|sudo nano -w /etc/openvpn/amahi.conf}}&lt;br /&gt;
&lt;br /&gt;
For Amahi systems built on Ubuntu 12.04 edit this file&lt;br /&gt;
{{Code|gedit /etc/openvpn/openvpn.conf}}&lt;br /&gt;
or&lt;br /&gt;
{{Code|sudo nano -w /etc/openvpn/openvpn.conf}}&lt;br /&gt;
&lt;br /&gt;
change &lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to&lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Restart both sides and you are now using openvpn over tcp,&lt;br /&gt;
and add your [http://en.wikipedia.org/wiki/Internet_service_provider ISP] below.&lt;br /&gt;
&lt;br /&gt;
== List of bad ISPs ==&lt;br /&gt;
&lt;br /&gt;
Please add your isp if you need this work-around:&lt;br /&gt;
&lt;br /&gt;
* Bell Canada&lt;br /&gt;
* Thames Valley Communications (Groton, CT)&lt;br /&gt;
&lt;br /&gt;
==Client Reports &amp;quot;TLS handshake failed&amp;quot; and Does Not Connect==&lt;br /&gt;
This is usually caused by packet corruption that may happen for some users.&amp;lt;br&amp;gt;&lt;br /&gt;
Follow the tutorial on &amp;quot;[[Prevent_SSL_Handshake_Timeouts_In_OpenVPN|Prevent SSL Handshake Timeouts In OpenVPN]]&amp;quot; page to fix this.&lt;br /&gt;
&lt;br /&gt;
[[Category: VPN]]&lt;/div&gt;</summary>
		<author><name>Michael Young</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.amahi.org/index.php?title=OpenVPN_troubleshooting&amp;diff=68372</id>
		<title>OpenVPN troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.amahi.org/index.php?title=OpenVPN_troubleshooting&amp;diff=68372"/>
		<updated>2013-02-11T21:53:55Z</updated>

		<summary type="html">&lt;p&gt;Michael Young: /* On the Server side */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Typical problems with the VPN:&lt;br /&gt;
&lt;br /&gt;
* You cannot VPN into your network from your very own network (kinda duh)&lt;br /&gt;
* You cannot login two users simultaneously&lt;br /&gt;
* You cannot login to your network from another network with the exact same settings. You can probably reach your own HDA, but not other systems in the network, due to routing (the HDA has direct connection via the VPN tunnel).&lt;br /&gt;
* Check that you have port forwarded 1194 udp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Moving to TCP ==&lt;br /&gt;
&lt;br /&gt;
If UDP is not working because of your ISP (see list below). Then you will have to change from udp to tcp and change your port forwarding of 1194/udp to 1194/tcp.&lt;br /&gt;
&lt;br /&gt;
== Client side: (Windows) ==&lt;br /&gt;
&lt;br /&gt;
Right click the red A, click edit settings.&lt;br /&gt;
If you have a thing saying &amp;quot;HomeHDA &amp;gt; &amp;quot; then mouse over it and click edit settings. Change:&lt;br /&gt;
&lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to&lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
== Blocked port 1194 ==&lt;br /&gt;
Sometimes port 1194 is blocked if you are behind a corporate firewall or someother firewall. The trick is then to use a port that is open. If you are not running https on your amahi, using port 443 is a good choice.&lt;br /&gt;
&lt;br /&gt;
You can move to port 443 by changing the line:&amp;lt;br&amp;gt;&lt;br /&gt;
{{Text|port 1194}}&lt;br /&gt;
into&lt;br /&gt;
{{Text|port 443}}&lt;br /&gt;
in your /etc/openvpn/amahi.conf file.&lt;br /&gt;
&lt;br /&gt;
Of course you also need to tell the client side to use port 443!&lt;br /&gt;
Add the following line to your client's config file&lt;br /&gt;
&lt;br /&gt;
{{Text|remote &amp;lt;hda_username&amp;gt;.yourhda.com 443}}&lt;br /&gt;
&lt;br /&gt;
If for some reason the DDNS (yourhda.com) is not working but your control panel is updating, then add this line at the top of the config file.&lt;br /&gt;
&lt;br /&gt;
{{Text|remote YOUR_IP_HERE &amp;lt;port&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
Note: If you have a dynamic ip, then you will probably need to update this everyday. If you have a static ip then you are fine.&lt;br /&gt;
&lt;br /&gt;
== Manually (Windows) ==&lt;br /&gt;
&lt;br /&gt;
Edit this file manually or use:&lt;br /&gt;
&lt;br /&gt;
Seven x64&lt;br /&gt;
&lt;br /&gt;
   C:\Program Files (x86)\HDAConnect\config\HomeHDA.opvn&lt;br /&gt;
&lt;br /&gt;
Seven x86 or 32 bit (Also most other Windows versions)&lt;br /&gt;
&lt;br /&gt;
   C:\Program Files\HDAConnect\config\HomeHDA.opvn&lt;br /&gt;
&lt;br /&gt;
Run notepad as admin and open the above file.&lt;br /&gt;
&lt;br /&gt;
== Client Side (Linux/Mac) ==&lt;br /&gt;
&lt;br /&gt;
Similarly, locate the configuration file and change&lt;br /&gt;
&lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to &lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
== On the Server side ==&lt;br /&gt;
For Amahi systems built on ?????? edit this file&lt;br /&gt;
{{Code|gedit /etc/openvpn/amahi.conf}}&lt;br /&gt;
or&lt;br /&gt;
{{Code|sudo nano -w /etc/openvpn/amahi.conf}}&lt;br /&gt;
&lt;br /&gt;
For Amahi systems built on Ubuntu 12.04 edit this file&lt;br /&gt;
{{Code|gedit /etc/openvpn/openvpn.conf}}&lt;br /&gt;
or&lt;br /&gt;
{{Code|sudo nano -w /etc/openvpn/openvpn.conf}}&lt;br /&gt;
&lt;br /&gt;
change &lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to&lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Restart both sides and you are now using openvpn over tcp,&lt;br /&gt;
and add your [http://en.wikipedia.org/wiki/Internet_service_provider ISP] below.&lt;br /&gt;
&lt;br /&gt;
== List of bad ISPs ==&lt;br /&gt;
&lt;br /&gt;
Please add your isp if you need this work-around:&lt;br /&gt;
&lt;br /&gt;
* Bell Canada&lt;br /&gt;
* Thames Valley Communications (Groton, CT)&lt;br /&gt;
&lt;br /&gt;
==Client Reports &amp;quot;TLS handshake failed&amp;quot; and Does Not Connect==&lt;br /&gt;
This is usually caused by packet corruption that may happen for some users.&amp;lt;br&amp;gt;&lt;br /&gt;
Follow the tutorial on &amp;quot;[[Prevent_SSL_Handshake_Timeouts_In_OpenVPN|Prevent SSL Handshake Timeouts In OpenVPN]]&amp;quot; page to fix this.&lt;br /&gt;
&lt;br /&gt;
[[Category: VPN]]&lt;/div&gt;</summary>
		<author><name>Michael Young</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.amahi.org/index.php?title=OpenVPN_troubleshooting&amp;diff=68366</id>
		<title>OpenVPN troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.amahi.org/index.php?title=OpenVPN_troubleshooting&amp;diff=68366"/>
		<updated>2013-02-11T21:44:43Z</updated>

		<summary type="html">&lt;p&gt;Michael Young: /* Moving to TCP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Typical problems with the VPN:&lt;br /&gt;
&lt;br /&gt;
* You cannot VPN into your network from your very own network (kinda duh)&lt;br /&gt;
* You cannot login two users simultaneously&lt;br /&gt;
* You cannot login to your network from another network with the exact same settings. You can probably reach your own HDA, but not other systems in the network, due to routing (the HDA has direct connection via the VPN tunnel).&lt;br /&gt;
* Check that you have port forwarded 1194 udp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Moving to TCP ==&lt;br /&gt;
&lt;br /&gt;
If UDP is not working because of your ISP (see list below). Then you will have to change from udp to tcp and change your port forwarding of 1194/udp to 1194/tcp.&lt;br /&gt;
&lt;br /&gt;
== Client side: (Windows) ==&lt;br /&gt;
&lt;br /&gt;
Right click the red A, click edit settings.&lt;br /&gt;
If you have a thing saying &amp;quot;HomeHDA &amp;gt; &amp;quot; then mouse over it and click edit settings. Change:&lt;br /&gt;
&lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to&lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
== Blocked port 1194 ==&lt;br /&gt;
Sometimes port 1194 is blocked if you are behind a corporate firewall or someother firewall. The trick is then to use a port that is open. If you are not running https on your amahi, using port 443 is a good choice.&lt;br /&gt;
&lt;br /&gt;
You can move to port 443 by changing the line:&amp;lt;br&amp;gt;&lt;br /&gt;
{{Text|port 1194}}&lt;br /&gt;
into&lt;br /&gt;
{{Text|port 443}}&lt;br /&gt;
in your /etc/openvpn/amahi.conf file.&lt;br /&gt;
&lt;br /&gt;
Of course you also need to tell the client side to use port 443!&lt;br /&gt;
Add the following line to your client's config file&lt;br /&gt;
&lt;br /&gt;
{{Text|remote &amp;lt;hda_username&amp;gt;.yourhda.com 443}}&lt;br /&gt;
&lt;br /&gt;
If for some reason the DDNS (yourhda.com) is not working but your control panel is updating, then add this line at the top of the config file.&lt;br /&gt;
&lt;br /&gt;
{{Text|remote YOUR_IP_HERE &amp;lt;port&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
Note: If you have a dynamic ip, then you will probably need to update this everyday. If you have a static ip then you are fine.&lt;br /&gt;
&lt;br /&gt;
== Manually (Windows) ==&lt;br /&gt;
&lt;br /&gt;
Edit this file manually or use:&lt;br /&gt;
&lt;br /&gt;
Seven x64&lt;br /&gt;
&lt;br /&gt;
   C:\Program Files (x86)\HDAConnect\config\HomeHDA.opvn&lt;br /&gt;
&lt;br /&gt;
Seven x86 or 32 bit (Also most other Windows versions)&lt;br /&gt;
&lt;br /&gt;
   C:\Program Files\HDAConnect\config\HomeHDA.opvn&lt;br /&gt;
&lt;br /&gt;
Run notepad as admin and open the above file.&lt;br /&gt;
&lt;br /&gt;
== Client Side (Linux/Mac) ==&lt;br /&gt;
&lt;br /&gt;
Similarly, locate the configuration file and change&lt;br /&gt;
&lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to &lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
== On the Server side ==&lt;br /&gt;
Edit this file&lt;br /&gt;
{{Code|gedit /etc/openvpn/amahi.conf}}&lt;br /&gt;
or&lt;br /&gt;
{{Code|sudo nano -w /etc/openvpn/amahi.conf}}&lt;br /&gt;
change &lt;br /&gt;
{{Text|proto udp}}&lt;br /&gt;
to&lt;br /&gt;
{{Text|proto tcp}}&lt;br /&gt;
&lt;br /&gt;
Restart both sides and you are now using openvpn over tcp.&lt;br /&gt;
And add your [http://en.wikipedia.org/wiki/Internet_service_provider ISP] below.&lt;br /&gt;
&lt;br /&gt;
== List of bad ISPs ==&lt;br /&gt;
&lt;br /&gt;
Please add your isp if you need this work-around:&lt;br /&gt;
&lt;br /&gt;
* Bell Canada&lt;br /&gt;
* Thames Valley Communications (Groton, CT)&lt;br /&gt;
&lt;br /&gt;
==Client Reports &amp;quot;TLS handshake failed&amp;quot; and Does Not Connect==&lt;br /&gt;
This is usually caused by packet corruption that may happen for some users.&amp;lt;br&amp;gt;&lt;br /&gt;
Follow the tutorial on &amp;quot;[[Prevent_SSL_Handshake_Timeouts_In_OpenVPN|Prevent SSL Handshake Timeouts In OpenVPN]]&amp;quot; page to fix this.&lt;br /&gt;
&lt;br /&gt;
[[Category: VPN]]&lt;/div&gt;</summary>
		<author><name>Michael Young</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.amahi.org/index.php?title=Help:Contents&amp;diff=68342</id>
		<title>Help:Contents</title>
		<link rel="alternate" type="text/html" href="https://wiki.amahi.org/index.php?title=Help:Contents&amp;diff=68342"/>
		<updated>2013-02-11T21:16:03Z</updated>

		<summary type="html">&lt;p&gt;Michael Young: /* Users Community */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
----&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; style=&amp;quot;background-color: transparent&amp;quot;&lt;br /&gt;
|width=&amp;quot;50%&amp;quot; valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
=== About {{SITENAME}} ===&lt;br /&gt;
*'''[[Intro|Introduction]]''' to {{SITENAME}}&lt;br /&gt;
*'''[http://www.amahi.org/faq FAQ]''' about {{SITENAME}}&lt;br /&gt;
*'''[[{{SITENAME}}:Copyrights|Copyright]]&lt;br /&gt;
&lt;br /&gt;
=== Users ===&lt;br /&gt;
* How to '''[[Help:Register|register]]''' to {{SITENAME}}wiki&lt;br /&gt;
* How to '''[[Help:Connect|connect]]''' to to {{SITENAME}}wiki&lt;br /&gt;
* How to change to {{SITENAME}} wiki '''[[Help:Preferences|preferences]]'''&lt;br /&gt;
&lt;br /&gt;
=== Users Community ===&lt;br /&gt;
* Discuss about  {{SITENAME}} in '''[http://forums.amahi.org Forums]'''&lt;br /&gt;
* Chat in '''[irc://irc.freenode.net/{{SITENAME}} {{SITENAME}} IRC Channel]'''&lt;br /&gt;
* View the {{NUMBEROFACTIVEUSERS}} '''[[Special:ActiveUsers|Active Users]]''' in {{SITENAME}}wiki&lt;br /&gt;
* '''[[Special:Listusers/sysop| SysOps]]'''&lt;br /&gt;
* View '''[[Special:ListGroupRights| User rights]]'''&lt;br /&gt;
* View all '''[[Special:Log|Public Logs]]''' &lt;br /&gt;
&lt;br /&gt;
|&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
|width=&amp;quot;50%&amp;quot; valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
===Articles ===&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
* '''[[{{SITENAME}}:UserGuide|User Guide]]'''&lt;br /&gt;
* '''[[{{SITENAME}}:Standards|Policies and standards]]''' for article writers&lt;br /&gt;
* '''[[{{SITENAME}}:Translate|Translation]]''' &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
* How to '''[[Help:CreatePage|Start a new article]]'''&lt;br /&gt;
* How to '''[[Help:Editing|edit an article]]'''&lt;br /&gt;
* How to '''[[Help:Formating|format an article]]'''&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
* How to '''[[Help:AddImage|add images]]''' in articles&lt;br /&gt;
* How to '''[[Help:UploadFile|uplod files]]''' in {{SITENAME}}&lt;br /&gt;
* How to '''[[Help:MovePage|rename or move]]''' an article&lt;br /&gt;
* How to '''[[Help:Redirect|redirect]]''' to an other article&lt;br /&gt;
* How to '''[[Help:Transclude|include]]''' an article in an other article--&amp;gt;&lt;br /&gt;
* How to '''[[Help:Templates|add a template]]'''&lt;br /&gt;
* How to '''[[Help:Categories|use categories]]'''&lt;br /&gt;
* List to '''[[Special:MostLinkedTemplates | select a template]]'''&lt;br /&gt;
&lt;br /&gt;
=== Touring in {{SITENAME}} Wiki ===&lt;br /&gt;
* View all '''[[Special:Categories|categories]]'''&lt;br /&gt;
* View all '''[http://wiki.amahi.org/index.php?title=Special%3AAllPages&amp;amp;from=&amp;amp;to=&amp;amp;namespace=10 templates]'''&lt;br /&gt;
* View all '''[[:Category:WorkInProgress |Under Development]]'''&lt;br /&gt;
* View some '''[[Special:Statistics|Statistics]]'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Help]]&lt;/div&gt;</summary>
		<author><name>Michael Young</name></author>
		
	</entry>
</feed>