-
Notifications
You must be signed in to change notification settings - Fork 71
Description
Less of an Issue and more of an "advice"; Revision 2 of the Lidl gateway (rounded edges) is the "exact same". Its firmware just has ssh disabled. You need to TTL onto the device and start its dropbear ssh server with;
dropbear -p "port"
From thereon you are able to ssh into the device with your given root until next restart.
Its recommended to follow the tutorial part in which you set the ssh port to "always on" and "port 22":
if [ ! -f /tuya/ssh_monitor.original.sh ]; then cp /tuya/ssh_monitor.sh /tuya/ssh_monitor.original.sh; fi
echo "#!/bin/sh" >/tuya/ssh_monitor.sh
ALSO FOR NOOBS LIKE ME;
IF:
Unable to negotiate with "ip.address" "port" : no matching host key type found. Their offer: ssh-rsa,ssh-dss
USE:
ssh -o HostKeyAlgorithms=+ssh-rsa "ip-address" -p "port"