How to configure TFTP so that you can PUT a file
INTERNAL USE ONLY
WARNING: Following the below could compromise your NG system
Edit the TFTP configuration file: /etc/xinetd.d/tftpd so that the content is as follow:
service tftp
{
disable = no
socket_type = dgram
protocol = udp
flags = IPv6
wait = yes
user = root
group = root
server = /usr/sbin/in.tftpd
server_args = -c -s /var/opt/tftpboot
}
Differences from default file are:
server_args = -c -s /var/opt/tftpboot
Then change the permission on the server_args:
chmod 777 /var/opt/tftpboot
Restart the xinetd deamon:
/etc/init.d/xinetd restart
You should have PUT a file via TFTP on your Nodegrid system.
Related Articles
How to enable TFTP services on Nodegrid
To enable the TFTP server, you need to edit the tftpd configuration file as it is disabled by default. (as root) vi /etc/xinetd.d/tftpd And change the disable attribute to “no”: service tftp { disable = yes <<<==== change this to no socket_type = ...
HowTo: Install Nodegrid via PXE Boot
PXE Boot Setup for ZPE Nodegrid Console Servers Overview This guide describes how to set up PXE (Pre-boot eXecution Environment) network booting for ZPE Nodegrid Console Servers. Both Legacy BIOS and UEFI boot modes are supported. PXE boot allows ...
How to fix file system errors
File system errors can occur when a unit is not rebooted or shutdown properly. For example when there is a power loss while the system is actively writing to files. Nodegrid OS v5.0.9 and newer run 'fsck -p' on every reboot and can fix minor errors ...
How to Configure Okta in Nodegrid
How to configure Single Sign-On authentication in Nodegrid using Okta This document will guide the configuration required in Nodegrid, and Okta. Nodegrid currently supports SP-Initiated SSO, and IdP-Initiated SSO. Create the Nodegrid Application ...
Troubleshoot: File Transfer Size Limit for Remote Access in ZPE Cloud
When using the Remote Access feature on ZPE Cloud to download or upload files to a Nodegrid appliance, there is a 1G size limit for those files. Here are some options to transfer larger files: Compress the file so that it in under 1G; Split the file ...