<div dir="ltr">How about a semi-smart (but mostly Mosh-oblivious) server-side proxy/NAT that works like this:<div><br></div><div>- The proxy service has one public IP address and like 65,000 available UDP ports.</div><div>- The proxy service can itself be redundant with failover...</div><div>- When a user wants to open a new Mosh connection, they Mosh to a single hostname (which resolves to the IP address of the proxy service).<br></div><div>- Your code allocates the necessary container, etc., and also allocates a unique UDP port on the proxy.</div><div><div class="gmail_extra">- Your code runs the new mosh-server process in the target container.</div><div class="gmail_extra">- The proxy intercepts the mosh-server&#39;s &quot;MOSH CONNECT &lt;port&gt; &lt;key&gt;&quot; message, replacing the port number with the unique public-facing UDP port (and remembering the container&#39;s IP address and the original port number).</div><div class="gmail_extra">- When the proxy receives an incoming UDP datagram destined to a particular UDP port, it forwards it to the appropriate container at its IP address and at the original port number. It *preserves* the source IP and port of the datagram when forwarding.</div><div class="gmail_extra">- When the container wants to send an outgoing UDP datagram, it sends it normally (to whatever IP:port is associated with the client), except the containers are not directly connected to the Internet; they use the proxy/NAT as their next-hop router.</div><div class="gmail_extra">- For the outgoing UDP datagram, the proxy/NAT rewrites the container&#39;s source IP:port to its own IP and the public port number.</div><div class="gmail_extra"><br></div><div class="gmail_extra">I think this will allow you to serve like 65,000 separate mosh connections from a single public IP address...</div><div class="gmail_extra"><br></div><div class="gmail_extra">The added latency in forwarding a datagram is probably &lt;1 ms, and you don&#39;t really have to change anything about Mosh itself or its internals.</div><div class="gmail_extra"><br></div><div class="gmail_extra">Unfortunately there are no unencrypted identifying marks to a Mosh connection, except the incrementing sequence numbers (which start at 0 for every connection).</div><div class="gmail_extra"><br></div><div class="gmail_extra">-Keith</div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jun 29, 2018 at 12:17 AM, Thomas Buckley-Houston <span dir="ltr">&lt;<a href="mailto:tom@tombh.co.uk" target="_blank">tom@tombh.co.uk</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hey Keith, John, everyone,<br>
<br>
Yeah the more this is looking like a quite a big hurdle. Especially<br>
your point Keith about roaming IPs (which I&#39;d forgotten), it&#39;s a<br>
central feature of Mosh I don&#39;t want to lose.<br>
<br>
So the only 2 options seems to be exposing multiple IPs for Round<br>
Robin (or other smart DNS routing) or writing a new Mosh proxy that<br>
already has knowledge of the existing keys. Both seem like quite a<br>
challenge. Round Robin DNS seems more approachable and I can imagine<br>
integrating it with the Google Cloud DNS API I&#39;m already using, but I<br>
just wonder how expensive Google (or anyone for that matter) will make<br>
thousands of static IP addresses? Apart from me having to learn Mosh<br>
internals, one difficulty that strikes me about a Mosh proxy is that<br>
it might introduce a non-trivial delay to each datagram arriving?<br>
Though surely only ever in the order of a handful of milliseconds I<br>
suppose.<br>
<br>
Are there not any other identifying marks to a datagram, I don&#39;t know<br>
much about low level networking, but maybe something like a MAC<br>
address for example?<br>
<br>
Thanks,<br>
Tom<br>
<div class="m_6212588343687901249HOEnZb"><div class="m_6212588343687901249h5"><br>
On 27 June 2018 at 04:50, Keith Winstein &lt;<a href="mailto:keithw@cs.stanford.edu" target="_blank">keithw@cs.stanford.edu</a>&gt; wrote:<br>
&gt; Hi Thomas,<br>
&gt;<br>
&gt; Glad you could provoke a very interesting discussion! But I&#39;m still confused<br>
&gt; -- how is &quot;sticky IP-based routing&quot; going to work after the client roams to<br>
&gt; a new IP address (or to a new UDP source port)? When your system seems an<br>
&gt; incoming UDP datagram from a previously unseen source IP:port, how does it<br>
&gt; know which mosh-server (on which server machine) to send it to?<br>
&gt;<br>
&gt; With off-the-shelf Mosh, you basically need a load-balancing strategy that<br>
&gt; allows a destination IP:port to uniquely identify a particular mosh-server.<br>
&gt; You can do this with multiple DNS A/AAAA records (where the client picks the<br>
&gt; winning one -- maybe you permute the list), or with a smart DNS server that<br>
&gt; serves *one* A or AAAA record to the client at the time of resolution (like<br>
&gt; a CDN would use).<br>
&gt;<br>
&gt; Instead of using the mosh wrapper script, you could have your users use some<br>
&gt; other scheme to figure out the IP:port of the server, but the point is that<br>
&gt; once you launch the mosh-client, it&#39;s going to keep sending datagrams to the<br>
&gt; IP:port of the mosh-server, and those datagrams need to get to the same<br>
&gt; mosh-server process even if the client roams to a different publicly-visible<br>
&gt; IP address or port.<br>
&gt;<br>
&gt; You could imagine writing a very smart mosh proxy that has the keys to all<br>
&gt; the sessions and can figure out (for an incoming datagram coming from an<br>
&gt; unknown source IP:port) which session it actually belongs to, and then makes<br>
&gt; a sticky mapping and routes it to the proper mosh-server. But I don&#39;t think<br>
&gt; anybody has actually done this yet and of course there&#39;s a challenge in<br>
&gt; making this reliable/replicated.<br>
&gt;<br>
&gt; -Keith<br>
&gt;<br>
&gt; On Mon, Jun 25, 2018 at 3:10 AM, Thomas Buckley-Houston &lt;<a href="mailto:tom@tombh.co.uk" target="_blank">tom@tombh.co.uk</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Thanks so much for the clarification.<br>
&gt;&gt;<br>
&gt;&gt; &gt; UDP is connectionless<br>
&gt;&gt;<br>
&gt;&gt; That&#39;s the key here. So I have no choice but to use sticky IP-based<br>
&gt;&gt; routing. Round-robin DNS isn&#39;t an option I don&#39;t think, because I hope<br>
&gt;&gt; one day to be able to scale to thousands of servers.<br>
&gt;&gt;<br>
&gt;&gt; And thanks so much for the heads up about my DNSSEC records. I&#39;ve sent<br>
&gt;&gt; a request for them to be deleted. I&#39;d added them and some SSHFP<br>
&gt;&gt; records to explore automatically passing the StrictHostKey warning.<br>
&gt;&gt; But it&#39;s not entirely straight forward. Even with correct DNS records<br>
&gt;&gt; the SSH user still has to have VerifyHostKeyDNS enabled, which as I<br>
&gt;&gt; understand most people don&#39;t. And then on top of that my DNS provider<br>
&gt;&gt; (DNSSimple) automatically rotate the keys every 3 months, which means<br>
&gt;&gt; I have to manually send a request to my registrars by email to update<br>
&gt;&gt; the DNSSEC records. Is it all worth it do you think?<br>
&gt;&gt;<br>
&gt;&gt; On 24 June 2018 at 13:36, Anders Kaseorg &lt;<a href="mailto:andersk@mit.edu" target="_blank">andersk@mit.edu</a>&gt; wrote:<br>
&gt;&gt; &gt; You may have a misunderstanding about how a Mosh session is set up.  The<br>
&gt;&gt; &gt; mosh script launches a mosh-server on the remote system via SSH;<br>
&gt;&gt; &gt; mosh-server picks a port number and a random encryption key, and writes<br>
&gt;&gt; &gt; them to stdout, where they go back over SSH to the mosh script; then the<br>
&gt;&gt; &gt; mosh script launches mosh-client passing the IP address, port number,<br>
&gt;&gt; &gt; and<br>
&gt;&gt; &gt; encryption key.  The newly launched mosh-client and mosh-server<br>
&gt;&gt; &gt; processes<br>
&gt;&gt; &gt; exchange UDP packets encrypted with the shared key; communication is<br>
&gt;&gt; &gt; successful if the packets can be decrypted.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; There’s no separate “key checking” step to be disabled.  And it doesn’t<br>
&gt;&gt; &gt; make sense to “refuse more than 1 connection on the same port”, both<br>
&gt;&gt; &gt; because UDP is connectionless, and because a new mosh-server is launched<br>
&gt;&gt; &gt; on a new port for each Mosh session (it is not a daemon like sshd).<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; The easiest way to put Mosh servers behind a load balancer is with<br>
&gt;&gt; &gt; round-robin DNS where a single hostname resolves to many addresses, or<br>
&gt;&gt; &gt; to<br>
&gt;&gt; &gt; different addresses for different clients and/or at different times.<br>
&gt;&gt; &gt; We’ve already gone out of our way to make the mosh script resolve the<br>
&gt;&gt; &gt; hostname only once and use the same address for the SSH connection and<br>
&gt;&gt; &gt; the<br>
&gt;&gt; &gt; UDP packets, because that’s needed for MIT’s <a href="http://athena.dialup.mit.edu" rel="noreferrer" target="_blank">athena.dialup.mit.edu</a> pool.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; If that’s not an option and you really need all connections to go<br>
&gt;&gt; &gt; through<br>
&gt;&gt; &gt; a single load balancer address, you could try wrapping mosh-server in a<br>
&gt;&gt; &gt; script that passes different disjoint port ranges (-p) on different<br>
&gt;&gt; &gt; backends, and forwarding those ranges to the corresponding backends from<br>
&gt;&gt; &gt; the load balancer.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Unrelatedly, brow.sh doesn’t resolve with DNSSEC-enabled resolvers like<br>
&gt;&gt; &gt; 1.1.1.1 or 8.8.8.8, seemingly due to some problem with the DS records<br>
&gt;&gt; &gt; set<br>
&gt;&gt; &gt; with the registrar: <a href="https://dnssec-debugger.verisignlabs.com/brow.sh" rel="noreferrer" target="_blank">https://dnssec-debugger.verisi<wbr>gnlabs.com/brow.sh</a>.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Anders<br>
&gt;&gt;<br>
&gt;&gt; ______________________________<wbr>_________________<br>
&gt;&gt; mosh-devel mailing list<br>
&gt;&gt; <a href="mailto:mosh-devel@mit.edu" target="_blank">mosh-devel@mit.edu</a><br>
&gt;&gt; <a href="http://mailman.mit.edu/mailman/listinfo/mosh-devel" rel="noreferrer" target="_blank">http://mailman.mit.edu/mailman<wbr>/listinfo/mosh-devel</a><br>
&gt;<br>
&gt;<br>
<br>
______________________________<wbr>_________________<br>
mosh-devel mailing list<br>
<a href="mailto:mosh-devel@mit.edu" target="_blank">mosh-devel@mit.edu</a><br>
<a href="http://mailman.mit.edu/mailman/listinfo/mosh-devel" rel="noreferrer" target="_blank">http://mailman.mit.edu/mailman<wbr>/listinfo/mosh-devel</a><br>
</div></div></blockquote></div><br></div></div></div>