OK6410開發(fā)板網絡參數配置
首先用USB轉串口線連接開發(fā)板和PC機,打開超級終端,設置波特率為:115200,流控設為:無!
給開發(fā)板上電(開發(fā)板已經燒好了u-boot。。。),按空格鍵讓界面停留在:
###################### User Menu for OK6410#####################
[1] Format the nand flash
[2] Burn image from USB
[3] configure the lcd size
[4] Boot the system
[5] Reboot the u-boot
[6] Exit to command line
-----------------------------Select---------------------------------
Enter your Selection:
按下鍵盤“6”退出命令行,出現:SMDK6410 # ……,接著輸入命令print查看開發(fā)板的網絡參數:
bootargs=root=/dev/mtdblock2 rootfstype=yaffs2 init=/linuxrc console=ttySAC0,115
200
bootcmd=nand read 0xc0008000 0x200000 0x500000;bootm 0xc0008000
bootdelay=1
baudrate=115200
ethaddr=00:40:5c:26:0a:5b
ipaddr=192.168.2.111
serverip=192.168.2.100
gatewayip=192.168.2.1
netmask=255.255.255.0
stdin=serial
stdout=serial
stderr=serial
Environment size: 331/524284 bytes
從上面可以查看到開發(fā)板的ip地址等信息,再查看PC機的IP地址,如果6410開發(fā)板和PC機的IP不再同一個段,則需要更改開發(fā)板IP,輸入以下命令:
set ipaddr 192.168.48.103 ------------------------修改開發(fā)板IP
set serverip 192.168.48.102 ------------------------修改服務器IP為PC機的IP地址
save ------------------------保存參數設置
設置好以后再輸入:ping 192.168.1.102,來ping服務器(PC機),此時出現:
ping failed; host 192.168.1.102 is not alive
沒有ping通,再來設置網關,輸入命令:
set gatewayip 192.168.1.1 ------------------------修改開發(fā)板網關
save ------------------------保存參數設置
再輸入ping 192.168.48.102來ping服務器, 出現:host 192.168.48.102 is alive,順利ping通!
注意:只能用“超級終端”在u-boot中ping服務器(PC機),不能用服務器(PC機) ping開發(fā)板,因為
u-boot不會給回應的!
評論