1.在开发板上的/etc/securetty添加
pts/0
pts/1
pts/2
pts/3
2.设定开发板的root密码
[root@Link /root]# passwd
Changing password for root
New password:
Retype password:
3.设定开发板的ip地址
ifconfig eth0 192.168.1.101
4.在开发板上使telnetd在后台运行
telnetd
telnetd -F
5.在开发板上设置网关及转发规则
ip route add 0.0.0.0 dev eth0
ip route add default via 192.168.1.1 dev eth0
6.在电脑的终端上连接开发板
$ telnet 192.168.1.101
Trying 192.168.1.101...
Connected to 192.168.1.101.
Escape character is '^]'.
Welcome to the LTIB Embedded Linux Environment
Link login: root
Password:
[root@Link /root]#
ubuntu安装ssh和telnet服务器:http://www.linuxdiyf.com/linux/16952.html
Ubuntu下安装建立Telnet服务器:http://www.linuxdiyf.com/linux/746.html
Linux开启telnet远程登录服务全攻略:http://www.linuxdiyf.com/linux/16263.html
AIX添加可以telnet远程连接账号方法:http://www.linuxdiyf.com/linux/10677.html
telnet连接ubuntu:http://www.linuxdiyf.com/linux/14873.html