1. TFTP -- Trivial File Transfer Protocol (simple File Transfer Protocol)
Unlike FTP, it uses UDP port 69, so it can traverse many firewalls. However, it also has disadvantages, such as unreliable transmission and no password verification. Suitable for transferring small files
2. Configure TFTP
Ecgl Linux comes with a TFTP server, and Linux must have the root permission
The configuration file of the TFTP server is/etc/xinetd. d/TFTP. The configuration file specifies/tftpboot as the root directory of the TFTP server and provides the downloaded files under/tftpboot.
3. TFTP server on ecgl
Start TFTP Server
/Sbin/chkconfig -- level 345 xinetd on
/Sbin/chkconfig -- level 345 TFTP on
4. TFTP client
The operating system after Windows 2000 comes with a client
TFTP 10.193.10.1
Get started image.doc
Download 10.193.10.1/tftpboot/image.doc
Background
1. chkconfig
Linux provides the chkconfig command to update, query, and run system services at different running levels.
Syntax:
Chkconfig -- list [name]
Chkconfig -- add name
Chkconfig -- del name
Chkconfig [-- level levels] Name <on | off | reset>
Chkconfig [-- level levels] Name
Chkconfig has five functions: add, delete, and list services,
Changes the startup information and checks the startup status of a specific service.
For the ON and OFF switches, the system is only valid for the running level 3, 4, and 5 by default.
Running files
Each service managed by chkconfig needs to add two or more lines of comments to the script in the corresponding init. d.
Refer:
Http://www.freelamp.com/1003237634/index_html
2. xinetd
Super daemon provides access control, logs, and resource management functions.