TFTP uploads failing

Posted by dunxd on Server Fault See other posts from Server Fault or by dunxd
Published on 2010-01-25T11:06:56Z Indexed on 2010/04/29 23:27 UTC
Read the original article Hit count: 572

Filed under:
|
|
|

I am running TFTPD via xinetd on a Centos 5.4 server. I am able to access files via tftp fine, so I know the service is running ok. However, whenever I try and upload a file I get a 0 Permission denied message.

I have already created the file in /tftpboot and set the permissions to 666.

My tftpd config has verbose logging (-vvvv), but all I see in my /var/log/messages is:

START: tftp pid=20383 from=192.168.77.4

I have seen some mention that SELinux can prevent TFTPD uploads, but I'd expect to see something in the logs. I have SELinux set in permissive mode.

Any ideas?

© Server Fault or respective owner

Related posts about tftp

  • Xinet tftp timeout

    as seen on Ask Ubuntu - Search for 'Ask Ubuntu'
    I trying to set up a PXE boot server. Everything is working but the TFTP client is timing out. TFTP connection timeout I am using this to setup the TFTP server. http://www.davidsudjiman.info/2006/03/27/installing-and-setting-tftpd-in-ubuntu/ /etc/xinet.d/tftp service tftp { protocol … >>> More

  • CentOS tftp server is broken

    as seen on Server Fault - Search for 'Server Fault'
    I'm trying to run tftpd from xinetd on CentOS 6; however, I can only tftp from localhost. I have a file in /opt/tftpboot/fw.test.conf that I can retrieve if I tftp to localhost: [mpenning@localhost ~]$ tftp localhost tftp> get fw.test.conf tftp> quit [mpenning@localhost ~]$ ls fw.test.conf [mpenning@localhost… >>> More

  • TFTP uploads failing

    as seen on Server Fault - Search for 'Server Fault'
    I am running TFTPD via xinetd on a Centos 5.4 server. I am able to access files via tftp fine, so I know the service is running ok. However, whenever I try and upload a file I get a 0 Permission denied message. I have already created the file in /tftpboot and set the permissions to 666. My tftpd… >>> More

  • Generate TFTP Content on the fly?

    as seen on Server Fault - Search for 'Server Fault'
    I know this isn't the purpose of TFTP, but I'm working in an environment where a lot of different types of devices pull provisioning info from a TFTP server. What I'm developing is a provisioning system that tracks and maintains device configurations, and I would like to have the requested files… >>> More

  • TFTP PUT Failing Across Hosts

    as seen on Server Fault - Search for 'Server Fault'
    I have a TFTP server installed on a CentOS host. /etc/xinetd.d/tftp: service tftp { disable = no socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args… >>> More

Related posts about selinux