1. installing TFTPD
# sudo apt-get install xinetd tftpd tftp2. Create /etc/xinetd.d/tftp, then put this:
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}
3. Make /tftpboot# sudo mkdir /tftpboot4. Restart TFTPD
# sudo chmod -R 777 /tftpboot
# sudo chown -R nobody /tftpboot
# sudo /etc/init.d/xinetd.restartNow you can put all the files (e.g. firmware files) in /tftpboot directory. And setup your hardware to point to your machine IP as your TFTP server.
No comments:
Post a Comment
Hi, for all of those who already put comments on my blog post, thanks.. really appreciate it. And for those who have not, just put your comments here :)