Zend certified PHP/Magento developer

SSH into Chromebook

I’m attempting to SSH into a Chromebook in developer mode. Here are the steps I’ve taken:

  1. installed and started ssh on port 2223 in the terminal. Confirmed by(copied by hand from the screen):
$ sudo systemctl status ssh
...
Active: active (running)...
...
Mar 29 ... Server listening on 0.0.0.0 port 2223
  1. I’ve opened the port in the Chromebook settings: Developers -> Port Forwarding -> Add. It lists port 2223 open to (TCP)

  2. It looks like it’s open! When I nmap this computer from another it show that port open:

sudo nmap -p- 192.168.1.206
Starting Nmap 7.91 ( https://nmap.org ) at 2022-03-29 16:32 EDT
Nmap scan report for 192.168.1.206
Host is up (0.010s latency).
Not shown: 65534 closed ports
PORT     STATE SERVICE
2223/tcp open  rockwell-csp2

Finally, the error:

ssh csalem@192.168.1.206:2223
ssh: Could not resolve hostname 192.168.1.206:2223: nodename nor servname provided, or not known

I keep checking the ip address because it seems like I’m missing something straitforward.