Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在尝试将命令或 shell 脚本执行从 ASP.net 传递到 Linux 服务器。
例如,如果我们将命令ls从 ASP.NET 传递到 Linux 服务器,那么它必须提供存在于 ASP.NET 的相应路径中的文件列表作为输出。
ls
任何人都可以分享我们如何实现这一目标的想法吗?
telnet 和其他远程 shell 协议就是为此而存在的。
注意:如果没有适当的安全考虑,这是非常危险的想法。
如果只需要访问文件系统,可以考虑使用Samba. 您可以将远程文件系统挂载到 Windows 机器上。
Samba
另一种可能性是通过FTP.
FTP