【问题4】(4 分)
某Linux服务器上通过xinetd来对各种网络服务进行管理,该服务器上提供ftp服务,ftp服务器程序文件为/usr/bin/ftpd,ftp服务器的配置文件/etc/xinetd.d/ftp内容如下所示,目前该服务器属于开启状态:
service ftp
{
socket_type = stream
protocol = (5)
wait = no
user = root
server = (6)
server_args = -el
disable = no
}
请完善该配置文件。
(5)备选答案:
A. TCP
B. UDP
C. IP
D. HTTP
(6)备选答案:
A. /usr/bin/ftpd
B. ftpd
C. ftp
D. /bin/ftpd