溫馨提示×

ubuntu如何關(guān)閉telnet服務

小新
903
2021-03-18 13:38:28
欄目: 智能運維

ubuntu關(guān)閉telnet服務的方法:1.打開終端命令行;2.修改/etc/xinetd.d/telnet文件配置;3.通過命令直接關(guān)閉telnet服務。

ubuntu如何關(guān)閉telnet服務

ubuntu關(guān)閉telnet服務的方法:

1.打開終端命令行。

2.輸入以下命令打開/etc/xinetd.d/telnet配置文件。


vi /etc/xinetd.d/telnet


把文件內(nèi)容中的“disable=no”改成“disable=yes;”即可。

3.也可以通過以下命令直接關(guān)閉telnet服務。


chkconfig telnet off;



0