This message was deleted.
# lima
a
This message was deleted.
b
Which OS and network ? Normally the "user" network (slirp) has very limited networking options, and "only" tunnels a SSH connection. On the other hand, it is possible to do a lot with this. You might want to look into something like https://norouter.io/ ?
i
@best-city-49378 sorry for a late reply 🙂 environment is MacOS ( 12.3.1 ) running on Intel Mac… Network is untouched from original rancher desktop settings except docker daemon (
/etc/docker/daemon.json
)
being configured as follows
Copy code
{
  "debug": true,
  "default-address-pools": [
    {
      "base": "10.100.0.0/16",
      "size": 24
    }
  ],
  "experimental": true
}
But my investigation led me to similar conclusions so far… ssh is the way to, just find a way to do proper forwarding 🙂
b
Sounds vanilla… You get some more options if you add a Apple vmnet network to it, instead of just the QEMU slirp.
Not sure what RD uses, but you can check
i
From what I can see RD is pretty vanilla stuff 🙂 However i find
vde_vmnet
docs pretty scarce ( it might be just me 🤷‍♂️ ) and still trying to figure out my way around it 🙂 But yeah i guess it’ll come down to ssh forwarding or vde enablement… hacky stuff both ways 🙂 Found an interesting article as well about ssh passthrough 🙂
Thank you for the tips and taking a look 😉 🙂