LibSSH-ESP32
LibSSH-ESP32 copied to clipboard
Client Port
Is it possible to chnge the standard client port (22) to another port like 2222 or 24
Yes you can change it, use something this this code.
uint16_t port;
port = 2222;
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT, &port);