Hi Kev,
maybe we can enable telnet on your nas using tinky_hook.
- create a file tinky_hook at public/tinky
- copy telnetd from our database there
- put the lines in tinky_hook and restart the nas
|
Code source
|
1
2
3
4
5
6
|
rm -f /usr/sbin/telnetd
cp /mnt/IDE1/public/telnetd /usr/sbin
chmod 755 /usr/sbin/telnetd
(sleep 80; mv /etc/inetd.conf /etc/inetd.conf.bak;\
sed 's/#telnet/telnet/' /etc/inetd.conf.bak > /etc/inetd.conf;\
killall inetd; inetd)& # edit and restart later
|
hopefully telnet is working then
HWguru