When I try to ssh into my chrooted setup I cannot except on the local device only. In that I mean at work when I tried I get denied like this...
Go to 'UserLAnd' start ubuntu session
then 'from logged in console'

donofrio@LTAL0111:~$ ssh [email protected]
ssh: connect to host 192.168.29.148 port 22: Connection refused
donofrio@LTAL0111:~$ ssh [email protected]:2022
ssh: Could not resolve hostname 192.168.29.148:2022: Name or service not known
donofrio@LTAL0111:~$ ssh [email protected]:2022
ssh: Could not resolve hostname 192.168.29.148:2022: Name or service not known
donofrio@LTAL0111:~$ ssh [email protected]
ssh: connect to host 192.168.29.148 port 22: Connection refused
donofrio@LTAL0111:~$
Then what is even more weird is when I start ssh, it stops?

Device: [e.g. Note8].
Android Version: [e.g. Oreo, 8.0].
UserLAnd Version [e.g. 2.3.7].
Build guide at http://www.tinyurl.com/donofriodexnote8
Whether the device is NOT rooted.
Whether the device is NOT running LineageOS
interesting this is all along I'm able to ssh into my chroot from es file manager using 127.0.0.1....please tell me how??

Try doing ssh [email protected] -p 2022
with 192.168.29.148 being the device ip on the network
That worked, but why didn't :2022 work?
(this screenshot was from my Windows 10 WSL ubuntu 18.04 - build guide at http://www.tinyurl.com/donofrioworkdesk) ssh'ed into note8 running inxi (took like 10 mintuies to complete...crazy long for simple process - where is that backup/restore/proot performance update script coming along @corbinlc )
Thats just how ssh works. You could also do something along the lines of
ssh ssh://[email protected]:2022
ssh connects and logs into the specified destination, which may be specified as either [user@]hostname or a URI of the form ssh://[user@]hostname [:port]. The user must prove his/her identity to the remote machine using one of several methods (see below).
From man
I was doing that "donofrio@LTAL0111:$ ssh [email protected]:2022" but only -p worked....just seems hinky
No you literally have to put ssh:// in front of it. Weird i know.
Feel free to join our slack channel if you haven't already if you have any other issues like this.
Most helpful comment
Try doing
ssh [email protected] -p 2022with 192.168.29.148 being the device ip on the network