Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

please help. : install tftp-server on CentOS 5.2

Status
Not open for further replies.

BuBEE

Full Member level 2
Joined
Jul 23, 2005
Messages
132
Helped
12
Reputation
24
Reaction score
7
Trophy points
1,298
Location
Thailand
Activity points
2,049
centos tftp

Hello

I just start to learning FPGA and uclinux. I have some problem about TFTP installation.

i installed with
Code:
 $ yum install xinetd tftp-server tftp

Then , I created directory with

Code:
$ sudo mkdir /tftpboot
$ sudo chmod -R 777 /tftpboot
$ sudo chown -R nobody /tftpboot

after that , I edit "disable = yes" in /etc/xinetd.d/tftp to "disable=no" (this shows below)

Code:
service tftp
{
protocol        = udp
port            = 69
socket_type     = dgram
wait            = yes
user            = nobody
server          = /usr/sbin/in.tftpd
server_args     = /tftpboot
disable         = no
}

then , I restart service with and check with netstat

Code:
$ sudo /etc/init.d/xinetd restart

Code:
 tftpd service is up and running

$ netstat -l -u │ grep tftp
udp        0      0 *:tftp                      *:*

and final step , I created file "test" and save to /tftpboot folder

and I test tftp with

Code:
$ tftp localhost
tftp> get test

result show
Code:
Transfer timed out.

I tried to reinstall and reconfig again and again but everything not work.

anyone please help

Thank you

BuBEE

ps. i turn off "SELinux" and turn off "firewall" already
 

centos tftp server

Ok , Friend

I change my OS to CentOS 5.3 and everything work already
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top