<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Jun 13, 2017 at 1:33 PM, Christoph Mathys <span dir="ltr"><<a href="mailto:eraserix@gmail.com" target="_blank">eraserix@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Thanks for your input!<br>
<span class="gmail-"></span></blockquote><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-">
> You can probably try something like this:<br>
> lxc copy local:src_vm remote_name:dst_vm<br>
<br>
</span>Unfortunately, this does not work either.<br>
<span class="gmail-"><br></span></blockquote><div><br></div><div>Ugh. You are right. </div><div><br></div><div>After further testing, that command is useful to select which IP address the destination will connect to (this was my use case back then, since both servers have multiple NICs, and only one is usable to connect between lxd servers). It does NOT become the "middleman" for file transfers.</div><div><br></div><div>What CAN work (just tested now), is that if you have tcp forwarding enabled with ssh (assuming ssh port is also natted):</div><div>- on both source (call it lxd1) and destination (call it lxd2) servers, run ssh forwarding in the way that port 4301 will connect to lxd1 port 8443, and port 4302 will connect to lxd2 port 8443 (you need one ssh with both local port and remote port forwarding to make this happen, plus ssh-to-localhost on each server)</div><div><br></div><div>- next step (doesn't matter whether on lxd1 or lxd2, both will be the same)</div><div>lxc remote add lxd1 <a href="http://127.0.0.1:4301">127.0.0.1:4301</a></div><div>lxc remote add lxd2 <a href="http://127.0.0.1:4302">127.0.0.1:4302</a><br></div><div>lxc copy lxd1:c1 lxd2:c1-copy</div><div><br></div><div>The lxd server on lxd2 will then connect to <a href="http://127.0.0.1:4301">127.0.0.1:4301</a> to get data from lxd1. Which works, because we've setup tcp forwarding with ssh.</div><div><br></div><div>Whether or not this step is better compared to your export+scp, depends on the user.</div><div><br></div><div>-- </div><div>Fajar</div></div></div></div>