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]#