博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tftp 服务器的配置
阅读量:4941 次
发布时间:2019-06-11

本文共 1251 字,大约阅读时间需要 4 分钟。

如果用下面一条命令能够看到服务已经启动, 则不用安装, 否则需要按 1 或 2 点安装 tftp-server 服务器. [arm@localhost arm]#netstat -a | grep tftp

udp        0      0 *:tftp                  *:*

 

1. 从 RPM 包安装 tftp-server

从对应 Linux 操作系统版本的安装光盘上找到 tftp-server 的安装包.

下面 tftp-server-0.32-4.i386.rpm 包为例,把 rpm 包拷贝到 dev_home/btools/下. [arm@localhost arm]#cp tftp-server-0.32-4.i386.rpm /home/arm/dev_home/btools/ [arm@localhost arm]#su root

[root@localhost arm]#rpm -q tftp-server

如果没有安装 tftp-server,就要用下面命令安装,否则,直接进入第 2 步配置服务. [root@localhost arm]#cd /home/arm/dev_home/btools/ [root@localhost btools]#rpm -ivh tftp-server-0.32-4.i386.rpm

 

建立 tftp 的主工作目录

[root@localhost btools]#mkdir /tftpboot

 

2. 修改配置文件并启动服务 备份配置文件

[root@localhost btools]#if [ -f /etc/xinetd.d/tftp ]

> then

> cp /etc/xinetd.d/tftp /etc/xinetd.d/tftp.old

> fi

 

修改配置文件

[root@localhost btools]#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 /tftpboot

per_source              = 11

cps                     = 100 2

flags                   = IPv4

}

检查 tftp 服务是否打开

[root@localhost btools]#chkconfig --list

如果 tftp 的服务没有打开,则用下面命令打开 tftp 服务开关 [root@localhost btools]#chkconfig tftp on

 

重启服务

#/etc/init.d/xinetd restart

#netstat -a | grep tftp

udp        0      0 *:tftp                  *:*

转载于:https://www.cnblogs.com/fanweisheng/p/11102964.html

你可能感兴趣的文章
【NOIP2015】斗地主
查看>>
uva 10537 Toll! Revisited(优先队列优化dijstra及变形)
查看>>
MySQL对时间的处理总结
查看>>
笔记四:python乱码深度剖析二
查看>>
《PHP程序员面试笔试宝典》——如何回答技术性的问题?
查看>>
【转载】Amit’s A star Page 中译文
查看>>
注册谷歌账号并验证时显示号码无法用于验证的问题
查看>>
Hive 变量和属性
查看>>
Python安装第三方库 xlrd 和 xlwt 。处理Excel表格
查看>>
课后作业-阅读任务-阅读提问-3
查看>>
Asp.Net Core 中利用QuartzHostedService 实现 Quartz 注入依赖 (DI)
查看>>
细说sqlserver索引及SQL性能优化原则
查看>>
一般数据库增量数据处理和数据仓库增量数据处理的几种策略
查看>>
centos6.5适用的国内yum源:网易、搜狐
查看>>
视频直播技术(三):低延时直播经验总结
查看>>
Application failed to start because it could not find or load the QT platform plugin “windows”
查看>>
python合并多表或两表数据
查看>>
第一个python作业题目以及代码
查看>>
Windows Azure 社区新闻综述(#71 版)
查看>>
Windows XP 的最高版本 .net framework 安装
查看>>