如何在vxworks中禁用telnet

时间:2014-12-22 09:32:00

标签: vxworks

我对这个vxwork操作系统很新。

有人可以告诉我如何在vxworks6.4上禁用telnet服务。

是否有任何命令可以在Vxworks 6.4上禁用telnet服务

3 个答案:

答案 0 :(得分:1)

在vxworks6.4.libcurl.config.h中添加(或取消注释)

define CURL_DISABLE_TELNET 1

如需参考,请点击此处: http://code.metager.de/source/s?refs=CURL_DISABLE_TELNET&project=curl

答案 1 :(得分:1)

如果您不想永久禁用telnet,可以尝试使用taskSuspendtaskResume函数暂停telnet任务。

......我知道它很脏......

答案 2 :(得分:1)

如果要在运行时禁用远程服务器,

ipcom_run_cmd("ipd kill iptelnets"); /* in the c code */

-> ipcom_run_cmd "ipd kill iptelnets" /* in the C interpreter */

-> cmd
[vxWorks]# ipd kill iptelnets /* in the cmd interpreter */

如果要在编译时禁用telnet服务器,

$ vxprj component remove INCLUDE_IPTELNETS