xinetd服务
tftp服务
tftp-0.49-2.i386.rpm 客户端
tftp-server-0.49-2.i386.rpm 服务端
配置文件目录/etc/xinetd.d/tftp
service tftp
{
socket_type = dgram -----------------------套接字类型(udp) stream(tcp)
protocol = udp
wait = no
user = root
server = /usr/sbin/in.tftpd -------------启动程序
server_args = -s -c /tftpboot ------------------向进程传递参数 -c允许创建
disable = no - -----------------------是否开启服务 yes是关闭
per_source = 11 -----------------------每个ip的连接数
cps = 100 2 -------------------------当连接达到100时 停2秒
flags = IPv4
}
chmod 777 /tftpboot
service xinetd restart
查看端口udp端口
netstat -anplu | grep :69
上传 上面添加-c
tftp 192.168.1.113
put a
下载 (在那个目录就会从tftpboot里下载到那里)
tftp 192.168.1.113
get a
------------------------------------------------------------------------------------------
telnet服务
telnet-0.17-39.el5.i386.rpm 客户端
telnet-server-0.17-39.el5.i386.rpm 服务端
端口:23
配置文件 /etc/xinetd.d/telnet
isable = no 打开服务
查看端口是否打开
netstat -anplt | grep :23
--------------------------------
用xinetd 服务代理 ftp
service vsftp stop 先把vsftp 停掉
cd /etc/xinetd.d/
cp tftp ftp
vim ftp 编辑文件
service ftp 这个服务对应的是 vim /etc/services 的服务所以必须写 ftp
{
socket_type = stream
wait = no
user = root
server = /usr/sbin/vsftpd -这个对应的是usr/sbin/vsftpd 的程序
disable = no
}
netstat -anplt | grep :21 查看 vsftp 端口
-----------------------------