Hello,
I hope anybody could help me. I tried to enable SSH with the readme.doc. I followed this steps:
- Enter to your router console by telnet.
- Make /tmp/ssh directory and enter to it:
mkdir /tmp/ssh
cd /tmp/ssh
- Generate your RSA private key using dropbear:
dropbearkey -t rsa -s 2048 -f id_dropbear
- Output your public key:
dropbearkey -y -f id_dropbear | grep "^ssh-rsa " > id_rsa.pub
- Create your /root/.ssh/authorized_keys file:
mkdir /root/.ssh
cat id_rsa.pub > /root/.ssh/authorized_keys
chmod 0600 /root/.ssh/authorized_keys
- Convert your private dropbear key to OpenSSH format:
dropbearconvert dropbear openssh id_dropbear id_rsa
Backup your private and public keys on USB drive (example):
- Insert your USB drive into router.
- Check its mount point (should be /mnt/sda1 or /mnt/sdb1 or /mnt/sdc1 etc.)
- Backup your private and public RSA keys to USB drive, to folder /ssh:
mkdir /mnt/sda1/ssh
cp /tmp/ssh/* /mnt/sda1/ssh
----
Now I don't know how I can import the keys on my mac to use it with the telnet application.
Anybody has an idea?
Thanks