hi
i have setup the tftp server in my host system and also i have assigned ipaddr in uboot for t4240rdb and
also for my host system but
when i try for a tftp transfer it is showing serverip not set
how to set serverip for tftp can it be given random or is there a particular ip
Set the board's network configuration using values appropriate for your installation and then save the configuration.
For example, host IP of my PC is 192.168.2.109 and IP of our gateway is 192.168.2.64. We use the following command sequence:
=> setenv ethaddr 00:1e:59:2f:03:35
=> setenv serverip 192.168.2.109
=> setenv ipaddr 192.168.2.104
=> setenv netmask 255.255.255.0
=> setenv gatewayip 192.168.2.64
=> saveenv
=> reset
Test your connection after reset using similar command:
=> ping 192.168.2.64
=> ping 192.168.2.109
Have a great day,
Pavel
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------