linux /etc/xinetd.d/telnet文件内容
时间: 2023-09-27 20:10:54 浏览: 207
在Linux中,/etc/xinetd.d/telnet是Telnet服务的配置文件,其内容通常如下所示:
```
# default: on
# description: The telnet server serves telnet sessions; it uses \
# unencrypted username/password pairs for authentication.
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
disable = yes
}
```
上述配置文件中的各项含义如下:
- `flags`:定义服务的行为;
- `socket_type`:指定服务使用的套接字类型;
- `wait`:指定服务是否启用并发连接;
- `user`:指定服务所运行的用户;
- `server`:指定服务所使用的可执行文件路径;
- `log_on_failure`:指定在服务调用失败时应记录哪些信息;
- `disable`:指定服务是否启用。
在上述配置文件中,Telnet服务的默认状态为关闭(`disable = yes`)。如果要启用Telnet服务,将此行更改为`disable = no`即可。
阅读全文