<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Kommentare zu: Apache Guacamole – Remote Desktop Gateway	</title>
	<atom:link href="https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/</link>
	<description></description>
	<lastBuildDate>Sun, 19 May 2024 07:36:51 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Von: Andreas		</title>
		<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-16806</link>

		<dc:creator><![CDATA[Andreas]]></dc:creator>
		<pubDate>Sun, 19 May 2024 07:36:51 +0000</pubDate>
		<guid isPermaLink="false">https://blog.wydler.eu/?p=6202#comment-16806</guid>

					<description><![CDATA[Hallo,

ich hatte 2 Probleme mit Guacamole 1.5.5 unter Ubuntu 22.04LTS nach dieser Anleitung:

Fehlermeldung &quot;Creation of WebSocket tunnel to guacd failed: java.net.ConnectException: Connection refused (Connection refused)&quot;

Hier half mir das Vorgehen nach &lt;a href=&quot;https://dae.me/blog/2698/guacamole-1-4-creation-of-websocket-tunnel-to-guacd-failed/&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow ugc&quot;&gt;Guacamole 1.4: “Creation of WebSocket tunnel to guacd failed” &#124; Dae’s blog&lt;/a&gt;:

Erzeugen einer Datei /etc/guacamole/guacd.conf mit dem Inhalt:
&lt;pre class=&quot;ql-syntax&quot; spellcheck=&quot;false&quot;&gt;[server]
bind_host = 127.0.0.1
bind_port = 4822
&lt;/pre&gt;
Der weitere Fehler, welcher danach auftauchte, war &quot;INFO:#011RDP server closed/refused connection: Server refused connection (wrong security type?)&quot;
Hier habe ich mich nach &lt;a href=&quot;https://kifarunix.com/install-guacamole-on-debian-11/#fix-rdp-security-negotiation-failed&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow ugc&quot;&gt;Install Guacamole on Debian 11 - kifarunix.com&lt;/a&gt; gerichtet. Da sowohl mein Englisch als auch meine Linux-Kenntnisse schlecht sind, habe ich es in einer vermutlich etwas unlogischen Reihenfolge gemacht:

Zuerst ein Home-Verzeichnis für den User guacd erzeugt:
&lt;pre class=&quot;ql-syntax&quot; spellcheck=&quot;false&quot;&gt;mkdir /var/lib/guacd
chown -R guacd: /var/lib/guacd
&lt;/pre&gt;
Danach kam mir die Erkenntnis, dass das ja im User angegeben sein musste, mangels Kenntnis habe ich den User entfernt und neu hinzugefügt:
&lt;pre class=&quot;ql-syntax&quot; spellcheck=&quot;false&quot;&gt;deluser --remove-home guacd
adduser --home /var/lib/guacd/ -c &quot;Guacd User&quot; guacd --disabled-password --disabled-login --gecos &quot;&quot;
&lt;/pre&gt;
Dann noch ein Restart
&lt;pre class=&quot;ql-syntax&quot; spellcheck=&quot;false&quot;&gt;systemctl restart guacd&#160;
&lt;/pre&gt;
... und es läuft bei mir!

Vielleicht hilft dies ja auch jemandem weiter. Falls ich hier totalen Quatsch gemacht habe, bitte gerne entsprechend beantworten!]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>ich hatte 2 Probleme mit Guacamole 1.5.5 unter Ubuntu 22.04LTS nach dieser Anleitung:</p>
<p>Fehlermeldung &#8222;Creation of WebSocket tunnel to guacd failed: java.net.ConnectException: Connection refused (Connection refused)&#8220;</p>
<p>Hier half mir das Vorgehen nach <a href="https://dae.me/blog/2698/guacamole-1-4-creation-of-websocket-tunnel-to-guacd-failed/" target="_blank" rel="noopener nofollow ugc">Guacamole 1.4: “Creation of WebSocket tunnel to guacd failed” | Dae’s blog</a>:</p>
<p>Erzeugen einer Datei /etc/guacamole/guacd.conf mit dem Inhalt:</p>
<pre class="ql-syntax" spellcheck="false">[server]
bind_host = 127.0.0.1
bind_port = 4822
</pre>
<p>Der weitere Fehler, welcher danach auftauchte, war &#8222;INFO:#011RDP server closed/refused connection: Server refused connection (wrong security type?)&#8220;<br />
Hier habe ich mich nach <a href="https://kifarunix.com/install-guacamole-on-debian-11/#fix-rdp-security-negotiation-failed" target="_blank" rel="noopener nofollow ugc">Install Guacamole on Debian 11 &#8211; kifarunix.com</a> gerichtet. Da sowohl mein Englisch als auch meine Linux-Kenntnisse schlecht sind, habe ich es in einer vermutlich etwas unlogischen Reihenfolge gemacht:</p>
<p>Zuerst ein Home-Verzeichnis für den User guacd erzeugt:</p>
<pre class="ql-syntax" spellcheck="false">mkdir /var/lib/guacd
chown -R guacd: /var/lib/guacd
</pre>
<p>Danach kam mir die Erkenntnis, dass das ja im User angegeben sein musste, mangels Kenntnis habe ich den User entfernt und neu hinzugefügt:</p>
<pre class="ql-syntax" spellcheck="false">deluser --remove-home guacd
adduser --home /var/lib/guacd/ -c "Guacd User" guacd --disabled-password --disabled-login --gecos ""
</pre>
<p>Dann noch ein Restart</p>
<pre class="ql-syntax" spellcheck="false">systemctl restart guacd&nbsp;
</pre>
<p>&#8230; und es läuft bei mir!</p>
<p>Vielleicht hilft dies ja auch jemandem weiter. Falls ich hier totalen Quatsch gemacht habe, bitte gerne entsprechend beantworten!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: SAML Authentifizierung für Apache Guacamole &#8211; IT &#8211; Praxis aus Oberschwaben		</title>
		<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-16129</link>

		<dc:creator><![CDATA[SAML Authentifizierung für Apache Guacamole &#8211; IT &#8211; Praxis aus Oberschwaben]]></dc:creator>
		<pubDate>Sun, 16 Apr 2023 21:06:06 +0000</pubDate>
		<guid isPermaLink="false">https://blog.wydler.eu/?p=6202#comment-16129</guid>

					<description><![CDATA[[&#8230;] der globalen Pandemie (COVID) habe ich meinen ersten Beitrag zur Installation und Konfiguration von Apache Guacamole geschrieben. Hintergrund ist, dass damals kurzfristig so viele Personen wie möglich von zu Hause [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] der globalen Pandemie (COVID) habe ich meinen ersten Beitrag zur Installation und Konfiguration von Apache Guacamole geschrieben. Hintergrund ist, dass damals kurzfristig so viele Personen wie möglich von zu Hause [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Daniel		</title>
		<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-16062</link>

		<dc:creator><![CDATA[Daniel]]></dc:creator>
		<pubDate>Sat, 04 Mar 2023 10:15:03 +0000</pubDate>
		<guid isPermaLink="false">https://blog.wydler.eu/?p=6202#comment-16062</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-16061&quot;&gt;echo&lt;/a&gt;.

Hallo echo,
erste Anlaufstelle für mich ist immer das Logfile (/var/log/tomcat9/catalina.out) des Tomcats. Das beschriebene Problem nachstelle und anschließend&#160;im Logfile nachschauen, welche Fehler protokolliert werden.

&lt;blockquote&gt;&lt;span style=&quot;color: rgb(119, 119, 119);&quot;&gt;Bei den LDAP Usern kommt die 2 Faktor Abfrage gar nicht.&lt;/span&gt;&lt;/blockquote&gt;Leider unterstützt Apache Guacamole LDAP im Kombination mit 2FA n&lt;span style=&quot;color: rgb(119, 119, 119);&quot;&gt;ach wie vor nicht. 2FA funktioniert meines Wissens nach wie vor nur mit lokalen Benutzerkonten. Du könntest daher den Parameter &quot;&lt;/span&gt;mysql-auto-create-accounts: true&lt;span style=&quot;color: rgb(119, 119, 119);&quot;&gt;&quot; deiner Konfiguration hinzufügen. Das hat zur Folge, dass für alle LDAP Benutzer ein Konto erstellt wird. Somit müsste 2FA für LDAP möglich sein. Ich kann es leider nicht testen, da ich gerade an einem neuen Artikel für Guacamole in Verbindung mit Microsoft AD FS (SAML) schreibe.&lt;/span&gt;

&lt;span style=&quot;color: rgb(119, 119, 119);&quot;&gt;Viele Grüße,&lt;/span&gt;
&lt;span style=&quot;color: rgb(119, 119, 119);&quot;&gt;Daniel&lt;/span&gt;]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-16061">echo</a>.</p>
<p>Hallo echo,<br />
erste Anlaufstelle für mich ist immer das Logfile (/var/log/tomcat9/catalina.out) des Tomcats. Das beschriebene Problem nachstelle und anschließend&nbsp;im Logfile nachschauen, welche Fehler protokolliert werden.</p>
<blockquote><p><span style="color: rgb(119, 119, 119);">Bei den LDAP Usern kommt die 2 Faktor Abfrage gar nicht.</span></p></blockquote>
<p>Leider unterstützt Apache Guacamole LDAP im Kombination mit 2FA n<span style="color: rgb(119, 119, 119);">ach wie vor nicht. 2FA funktioniert meines Wissens nach wie vor nur mit lokalen Benutzerkonten. Du könntest daher den Parameter &#8222;</span>mysql-auto-create-accounts: true<span style="color: rgb(119, 119, 119);">&#8220; deiner Konfiguration hinzufügen. Das hat zur Folge, dass für alle LDAP Benutzer ein Konto erstellt wird. Somit müsste 2FA für LDAP möglich sein. Ich kann es leider nicht testen, da ich gerade an einem neuen Artikel für Guacamole in Verbindung mit Microsoft AD FS (SAML) schreibe.</span></p>
<p><span style="color: rgb(119, 119, 119);">Viele Grüße,</span><br />
<span style="color: rgb(119, 119, 119);">Daniel</span></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: echo		</title>
		<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-16061</link>

		<dc:creator><![CDATA[echo]]></dc:creator>
		<pubDate>Thu, 02 Mar 2023 20:09:48 +0000</pubDate>
		<guid isPermaLink="false">https://blog.wydler.eu/?p=6202#comment-16061</guid>

					<description><![CDATA[Hallo. Danke für die tolle Anleitung. Habe allerdings Probleme mit 2 Faktor.

Vorher: Guacamole 1.5.0 mit mariadb + 2 Faktor.
Hat funktioniert. Admin User kann alles managen und jeder User hat 2 Faktor. Daran habe ich also nichts verändert.

Nachher: Implementierung LDAP. User kann sich anmelden. Allerdings nicht der &quot;guacamoleadmin&quot;. Der Login crashed. Mein vorheriger Admin kann verbinden. Kann aber kein Menü für LDAP User entdecken/oder LDAP User an sich. Dort funktioniert aber auch 2 Faktor.

Bei den LDAP Usern kommt die 2 Faktor Abfrage gar nicht.


Wie könnte man das lösen?]]></description>
			<content:encoded><![CDATA[<p>Hallo. Danke für die tolle Anleitung. Habe allerdings Probleme mit 2 Faktor.</p>
<p>Vorher: Guacamole 1.5.0 mit mariadb + 2 Faktor.<br />
Hat funktioniert. Admin User kann alles managen und jeder User hat 2 Faktor. Daran habe ich also nichts verändert.</p>
<p>Nachher: Implementierung LDAP. User kann sich anmelden. Allerdings nicht der &#8222;guacamoleadmin&#8220;. Der Login crashed. Mein vorheriger Admin kann verbinden. Kann aber kein Menü für LDAP User entdecken/oder LDAP User an sich. Dort funktioniert aber auch 2 Faktor.</p>
<p>Bei den LDAP Usern kommt die 2 Faktor Abfrage gar nicht.</p>
<p>Wie könnte man das lösen?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Alex		</title>
		<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-16004</link>

		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Tue, 12 Jul 2022 13:05:20 +0000</pubDate>
		<guid isPermaLink="false">https://blog.wydler.eu/?p=6202#comment-16004</guid>

					<description><![CDATA[Hallo,
glücklicherweise ist mit der Version 1.4.0 das Zurücksetzen des TOTP nun auch über die GUI möglich.
Viel Spaß]]></description>
			<content:encoded><![CDATA[<p>Hallo,<br />
glücklicherweise ist mit der Version 1.4.0 das Zurücksetzen des TOTP nun auch über die GUI möglich.<br />
Viel Spaß</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: 0bun0		</title>
		<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-11124</link>

		<dc:creator><![CDATA[0bun0]]></dc:creator>
		<pubDate>Sat, 20 Mar 2021 06:32:33 +0000</pubDate>
		<guid isPermaLink="false">https://blog.wydler.eu/?p=6202#comment-11124</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-11121&quot;&gt;Daniel&lt;/a&gt;.

Hi there Daniel, again, thanks a lot for your thorough article, I&#039;ve learned alot ! The idea behind my question is to use a 3rd party SSO scheme, which monitor the LDAPs logins etc.. In my current setup, SSO logins are coming although they never &quot;end&quot; so to speak (only after SSO global timeout). I&#039;d have wanted a way to &quot;clear&quot; these logon&#039;s upon Guacamole &quot;logout&quot;. Thanks !!]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-11121">Daniel</a>.</p>
<p>Hi there Daniel, again, thanks a lot for your thorough article, I&#8217;ve learned alot ! The idea behind my question is to use a 3rd party SSO scheme, which monitor the LDAPs logins etc.. In my current setup, SSO logins are coming although they never &#8222;end&#8220; so to speak (only after SSO global timeout). I&#8217;d have wanted a way to &#8222;clear&#8220; these logon&#8217;s upon Guacamole &#8222;logout&#8220;. Thanks !!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Daniel		</title>
		<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-11121</link>

		<dc:creator><![CDATA[Daniel]]></dc:creator>
		<pubDate>Sun, 14 Mar 2021 09:40:12 +0000</pubDate>
		<guid isPermaLink="false">https://blog.wydler.eu/?p=6202#comment-11121</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-11120&quot;&gt;0bun0&lt;/a&gt;.

Moin 0bun0,
sorry, i don&#039;t know it. Can you explain me your use case for it?

Regards,
Daniel]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-11120">0bun0</a>.</p>
<p>Moin 0bun0,<br />
sorry, i don&#8217;t know it. Can you explain me your use case for it?</p>
<p>Regards,<br />
Daniel</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: 0bun0		</title>
		<link>https://blog.daniel.wydler.eu/2020/10/25/apache-guacamole-remote-desktop-gateway-rdg/#comment-11120</link>

		<dc:creator><![CDATA[0bun0]]></dc:creator>
		<pubDate>Fri, 12 Mar 2021 09:35:15 +0000</pubDate>
		<guid isPermaLink="false">https://blog.wydler.eu/?p=6202#comment-11120</guid>

					<description><![CDATA[Dear Daniel, thanks a lot, excellent post !!! Would you know if there might be any options to send ldaps &quot;logoff&quot; event from Guacamole ??]]></description>
			<content:encoded><![CDATA[<p>Dear Daniel, thanks a lot, excellent post !!! Would you know if there might be any options to send ldaps &#8222;logoff&#8220; event from Guacamole ??</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
