Pejman Moghadam / Redhat

Redhat 8.0 - tftp

Public domain


tftp Server

# rpm -ivh /root/disks/1/xinetd-2.3.7-2.i386.rpm
# rpm -ivh /root/disks/3/tftp-server-0.29-3.i386.rpm
# vi /etc/xinetd.d/tftp
    disable = no
# mkdir /tftpboot
# ntsysv (enable xinetd if it's not)
# service xinetd start
# touch /tftpboot/some-file-to-upload
# chmod 666 /tftpboot/some-file-to-upload

TFTP Client

# rpm -ivh /root/disks/3/tftp-0.29-3.i386.rpm
# tftp
tftp> connect 127.0.0.1
tftp> put some-file-to-upload
Sent 7 bytes in 0.0 seconds
tftp> get some-file-to-download
Received 7 bytes in 0.0 seconds
tftp> quit

BY: Pejman Moghadam
TAG: tftp
DATE: 2007-09-20 15:50:07


Pejman Moghadam / Redhat [ TXT ]