Hi @keven.wu-q @silvia @iamromulan ,
Can you walk me through this:
-
How do I log in to the shell on the OpenWRT-Linux that runs inside the RM551E-GL, and, once logged in,
-
How do I enable the OpenSSHD server on port 22, and
-
How do I enable the OpenWRT LuCi web interface?
For 1., I believe I need to connect via UART. Is this correct, or is there another way.
Once I have the connection to the Linux login, is the username “root”?
On the RM551E-GL what is the default password supposedly.
For 2., for OpenSSHD:
opkg update
opkg install openssh-server
echo Port 22 >> /etc/ssh/sshd_config
echo PermitRootLogin yes >> /etc/ssh/sshd_config
echo PasswordAuthentication yes >> /etc/ssh/sshd_config
/etc/init.d/sshd start
/etc/init.d/sshd enable
Alternatively “dropbear” SSH server:
uci set dropbear.@dropbear[0].Port=22
uci set dropbear.@dropbear[0].RootPasswordAuth='on'
uci commit dropbear
/etc/init.d/dropbear restart
opkg update
opkg install luci
/etc/init.d/uhttpd enable
/etc/init.d/uhttpd start
Above are my guesses. Please clarify how to do the above. Many thanks.
