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 = ...
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 ...
How to Configure IPSec Host to Host tunnel with Certificate
Version 0.1 (02 May 2018) Overview Host to Host configurations allow two nodes to established a tunnel between them. The encrypted communication will be limited just to the two nodes involved. Figure 11: Host to Host Configuration Example Details ...
How to Configure IPSec Host to Site Tunnel with Certificate
Version 0.1 (02 May 2018) Overview Host to Site configurations are very similar to Host to Host configurations, especially the authentication methods are the same. Added changes to the configurations are the values for rightsourceip and rightsubnets. ...
How to Configure IPSec Site to Site Tunnel with Certificate
Version 0.1 (02 May 2018) Overview Site to Site Configurations are further extension to host to site configurations. Communication is in this case expanded between multiple subnet on both sites of the connection. Subnet and communication IP addresses ...