Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader > Kobo Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 09-30-2025, 05:30 AM   #1
kobotouch2711
Member
kobotouch2711 began at the beginning.
 
Posts: 15
Karma: 10
Join Date: Nov 2024
Device: Kobo Touch
Telnet Login - admin credentials fail

Dear all,
I managed to get my Kobo basically running again.
However, with telnet activated in NickelMenu, I can yet connect to my kobo, but the credentials "admin"/admin and "kobo"/kobo both fail. (Login incorrect)
Previously, admin/admin has always been working fine.
Any hints, what I am doing wrong? How could I change the credentials?

Is there also a way to connect via SERIAL Com port? Might be more stable...

Thanks for any hints!
kobotouch2711 is offline   Reply With Quote
Old 09-30-2025, 07:41 PM   #2
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 47,695
Karma: 172313956
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
If you have updated your firmware, you may no longer have telnet capability. However, you do get SSH in the newer firmware. To check if you have SSH capability, look for a file named ssh-disabled in the .kobo directory. To enable SSH, rename that file to ssh-enabled and you should now be able to do an SSH connection with root as the username. The first time, you will be prompted to enter the password. I've quoted the contents of the ssh-disabled file below:
Quote:
To enable ssh:
- Rename this file to ssh-enabled
- Reboot the device
- Connect via: ssh root@<device_ip>
DNSB is online now   Reply With Quote
Advert
Old Yesterday, 02:54 AM   #3
kobotouch2711
Member
kobotouch2711 began at the beginning.
 
Posts: 15
Karma: 10
Join Date: Nov 2024
Device: Kobo Touch
Quote:
Originally Posted by DNSB View Post
If you have updated your firmware, you may no longer have telnet capability. However, you do get SSH in the newer firmware. To check if you have SSH capability, look for a file named ssh-disabled in the .kobo directory. To enable SSH, rename that file to ssh-enabled and you should now be able to do an SSH connection with root as the username. The first time, you will be prompted to enter the password. I've quoted the contents of the ssh-disabled file below:
I have renamed the ssh-disabled to ssh-enabled, rebooted, but still i get

Code:
--> ssh root@192.168.178.53
ssh: connect to host 192.168.178.53 port 22: Connection refused
Any further clues?

Also any clue, if I could get a serial connection via USB, to have a backup in case my WIFI on the devices crashes again. This might help debugging.

Last edited by kobotouch2711; Yesterday at 05:42 AM.
kobotouch2711 is offline   Reply With Quote
Old Yesterday, 06:07 AM   #4
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 47,695
Karma: 172313956
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by kobotouch2711 View Post
I have renamed the ssh-disabled to ssh-enabled, rebooted, but still i get

Code:
--> ssh root@192.168.178.53
ssh: connect to host 192.168.178.53 port 22: Connection refused
Any further clues?

Also any clue, if I could get a serial connection via USB, to have a backup in case my WIFI on the devices crashes again. This might help debugging.
As long as I have WiFi enabled (I tend to use the Force WiFi ON in the Developer Options or as an option in NickelMenu), SSH works for me. Of course, this generally ends up with me noticing my battery dropping because I forgot to turn Force WiFi ON off.

I've added the 2 NM items below.

Code:
menu_item : main : Toggle SSH            : cmd_output     : 500: quiet: test -e /mnt/onboard/.kobo/ssh-disabled
      chain_failure  : skip              : 3
      chain_success  : cmd_spawn         : quiet  : mv /mnt/onboard/.kobo/ssh-disabled /mnt/onboard/.kobo/ssh-enabled
      chain_success  : dbg_toast         : SSH Enabled
      chain_always   : skip              : 2
      chain_failure  : cmd_spawn         : quiet  : mv /mnt/onboard/.kobo/ssh-enabled /mnt/onboard/.kobo/ssh-disabled
      chain_success  : dbg_toast         : SSH Disabled
      chain_always   :  power            : reboot
Code:
menu_item : main    : Force WiFi on      : nickel_setting  : toggle: force_wifi
     chain_success  : nickel_wifi        : autoconnect
Note that the display items for the SSH state are pretty much useless since they are not displayed long enough to be useful.

Last edited by DNSB; Yesterday at 06:11 AM.
DNSB is online now   Reply With Quote
Old Today, 03:15 AM   #5
kobotouch2711
Member
kobotouch2711 began at the beginning.
 
Posts: 15
Karma: 10
Join Date: Nov 2024
Device: Kobo Touch
I am running 4.38.23429, but no success

Further feedback highly appreciated.

Quote:
Originally Posted by DNSB View Post
As long as I have WiFi enabled (I tend to use the Force WiFi ON in the Developer Options or as an option in NickelMenu), SSH works for me. Of course, this generally ends up with me noticing my battery dropping because I forgot to turn Force WiFi ON off.

I've added the 2 NM items below.

Code:
menu_item : main : Toggle SSH            : cmd_output     : 500: quiet: test -e /mnt/onboard/.kobo/ssh-disabled
      chain_failure  : skip              : 3
      chain_success  : cmd_spawn         : quiet  : mv /mnt/onboard/.kobo/ssh-disabled /mnt/onboard/.kobo/ssh-enabled
      chain_success  : dbg_toast         : SSH Enabled
      chain_always   : skip              : 2
      chain_failure  : cmd_spawn         : quiet  : mv /mnt/onboard/.kobo/ssh-enabled /mnt/onboard/.kobo/ssh-disabled
      chain_success  : dbg_toast         : SSH Disabled
      chain_always   :  power            : reboot
Code:
menu_item : main    : Force WiFi on      : nickel_setting  : toggle: force_wifi
     chain_success  : nickel_wifi        : autoconnect
Note that the display items for the SSH state are pretty much useless since they are not displayed long enough to be useful.
kobotouch2711 is offline   Reply With Quote
Advert
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
What are the credentials to telnet/ftp to Kobo? somemail Kobo Reader 24 07-14-2025 08:06 PM
Libra Colour Telnet login ID and Password changed? snoman Kobo Reader 3 06-19-2024 11:04 AM
USBNet/Telnet fail, need help glasnost Kindle Developer's Corner 28 08-26-2016 08:33 PM
[FALSE] 80,000 Amazon Login Credentials Leaked geekmaster Amazon Kindle 21 08-16-2016 10:02 AM


All times are GMT -4. The time now is 03:42 PM.


MobileRead.com is a privately owned, operated and funded community.