Difference between revisions of "Host Computer Configuration"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | = Install tftp onto the Linux host computer= | + | ==Install CentOs == |
+ | == Install tftp onto the Linux host computer== | ||
For CentOS I used yum | For CentOS I used yum | ||
Line 34: | Line 35: | ||
− | ==turn the server on== | + | ===turn the server on=== |
/sbin/chkconfig tftp on | /sbin/chkconfig tftp on | ||
− | = Set up rsh= | + | == Set up rsh== |
Revision as of 21:00, 20 August 2007
Install CentOs
Install tftp onto the Linux host computer
For CentOS I used yum
yum install tftp
yum install tftp-server
then I looked in the file
/etc/xinitd.d/tftp
- default: off
- description: The tftp server serves files using the trivial file transfer \
- protocol. The tftp protocol is often used to boot diskless \
- workstations, download configuration files to network-aware printers, \
- and to start the installation process for some operating systems.
service tftp
{
socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args = -s /tftpboot disable = yes per_source = 11 cps = 100 2 flags = IPv4
}
to see how tftp was configured by default. The file tell me that the tftp files should be located in the subdirectory
/tftpboot
turn the server on
/sbin/chkconfig tftp on