cyberhero 发表于 2019-1-29 02:14:03

龍芯派tftp服務器

1c教程通常講windows上搭建tftp服務器。龍芯派和其它linux上搭建也很簡單。
yum install tftp-server
yum install xinetd
vi /etc/xinetd.d/tftp
輸入以下內容
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /opt/tftpboot -c
per_source = 11
cps = 100 2
flags = IPv4
}
创建tftpboot目录
cd /opt
mkdir tftpboot
将tftpboot权限改到最大化。
chmod 777 /opt/tftpboot
systemctl start tftp.service
systemctl start xinetd
systemctl disable firewalld.service


页: [1]
查看完整版本: 龍芯派tftp服務器