<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Need help connecting to Bedrock on LAN]]></title><description><![CDATA[<p dir="auto">I've just done a fresh install of MC Bedrock and configured with default settings. But I can not seems to connect with it from the iPad app while connected on the same network/subnet.</p>
<p dir="auto">App Title and Version: Minecraft Bedrock 1.21.80.3<br />
App ID: 613cef5b-96ff-489d-a8bf-c1f9c07cd4b4<br />
Package Version: net.minecraft.bedrock.cloudronapp@2.35.5<br />
Installed At: 3:59 PM<br />
Last Updated: Never</p>
<p dir="auto">MC Bedrock Server console shows:</p>
<pre><code>IPv4 supported, port: 19132: Used for gameplay and LAN discovery
IPv6 supported, port: 19133: Used for gameplay
Server started.
</code></pre>
<p dir="auto">Scaning the server &amp; port from my computer:</p>
<pre><code>benneic@MacBookPro ~ % nmap -p 19132 192.168.1.100
Starting Nmap 7.95 ( https://nmap.org ) at 2025-05-15 16:38 AEST
Nmap scan report for # (192.168.1.100)
Host is up (0.012s latency).

PORT      STATE  SERVICE
19132/tcp closed unknown

Nmap done: 1 IP address (1 host up) scanned in 0.11 seconds
</code></pre>
<p dir="auto">Scaning listening ports on my server host (192.168.1.100):</p>
<pre><code>benneic@chopsticks:~$ sudo netstat -l -p --numeric-ports | grep 19132
tcp        0      0 0.0.0.0:19132           0.0.0.0:*               LISTEN      847/dockerd         
tcp6       0      0 [::]:19132              [::]:*                  LISTEN      847/dockerd         
udp        0      0 0.0.0.0:19132           0.0.0.0:*                           847/dockerd         
udp6       0      0 [::]:19132              [::]:*                              847/dockerd  
</code></pre>
<p dir="auto">Scanning listening ports inside the MC Bedrock docker container:</p>
<pre><code>root@613cef5b-96ff-489d-a8bf-c1f9c07cd4b4:/app/pkg# sudo netstat -l -p --numeric-ports | grep 19132
udp        0      0 0.0.0.0:19132           0.0.0.0:*                           -                  
</code></pre>
<p dir="auto">I am surprised there is not a tcp socket listening inside the docker host.</p>
<p dir="auto">As far as the server console and logs are concerned it looks like it is running:<br />
<img src="/assets/uploads/files/1747291822546-3afe7251-5f97-4525-8e85-9bcb0812944c-image-resized.png" alt="3afe7251-5f97-4525-8e85-9bcb0812944c-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">What am I missing here?</p>
]]></description><link>https://forum.cloudron.io/topic/13784/need-help-connecting-to-bedrock-on-lan</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Apr 2026 05:10:11 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/13784.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 15 May 2025 06:52:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Need help connecting to Bedrock on LAN on Sat, 17 May 2025 01:02:27 GMT]]></title><description><![CDATA[<p dir="auto">Solution was to connect from iPad to server using the FQDN pointing to the public IP of Cloudron.</p>
<p dir="auto">Unclear why I couldnt connect via private IP, but I was using local DNS pointing the FQDN to the private IP, so I switched that to the public ip. I think that is what fixed it.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> thanks for the tip on the UDP scan, port was open via UDP on private IP.</p>
<pre><code>benneic@MacBookPro ~ % sudo nmap -sU -Pn -p 19132 192.168.1.100           
Starting Nmap 7.95 ( https://nmap.org ) at 2025-05-17 08:37 AEST
Nmap scan report for # (192.168.1.100)
Host is up (0.0025s latency).

PORT      STATE         SERVICE
19132/udp open|filtered unknown

Nmap done: 1 IP address (1 host up) scanned in 0.32 seconds
</code></pre>
]]></description><link>https://forum.cloudron.io/post/107261</link><guid isPermaLink="true">https://forum.cloudron.io/post/107261</guid><dc:creator><![CDATA[benneic]]></dc:creator><pubDate>Sat, 17 May 2025 01:02:27 GMT</pubDate></item><item><title><![CDATA[Reply to Need help connecting to Bedrock on LAN on Thu, 15 May 2025 11:03:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/benneic" aria-label="Profile: benneic">@<bdi>benneic</bdi></a> BDS uses UDP and not TCP  . The TCP configuration in package is misleading - <a href="https://git.cloudron.io/packages/minecraft-bedrock-app/-/merge_requests/23" target="_blank" rel="noopener noreferrer nofollow ugc">https://git.cloudron.io/packages/minecraft-bedrock-app/-/merge_requests/23</a> removes it.</p>
<p dir="auto">Try udp scan -</p>
<pre><code>$ sudo nmap -sU -p 19132 116.203.196.36
Starting Nmap 7.94SVN ( https://nmap.org ) at 2025-05-15 13:02 CEST
Nmap scan report for static.36.196.203.116.clients.your-server.de (116.203.196.36)
Host is up (0.031s latency).

PORT      STATE         SERVICE
19132/udp open|filtered unknown

Nmap done: 1 IP address (1 host up) scanned in 0.65 seconds

</code></pre>
]]></description><link>https://forum.cloudron.io/post/107168</link><guid isPermaLink="true">https://forum.cloudron.io/post/107168</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Thu, 15 May 2025 11:03:53 GMT</pubDate></item><item><title><![CDATA[Reply to Need help connecting to Bedrock on LAN on Thu, 15 May 2025 07:43:51 GMT]]></title><description><![CDATA[<p dir="auto">Does your server have any extra firewall in front? Assuming you run this server at home, how did you expose that on the internet and can you maybe try to connect from the client with the public ip?</p>
]]></description><link>https://forum.cloudron.io/post/107127</link><guid isPermaLink="true">https://forum.cloudron.io/post/107127</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Thu, 15 May 2025 07:43:51 GMT</pubDate></item></channel></rss>