windows下怎么实现这样的函数:传入linux telnet服务器的ip地址和端口号,已经shell命令字符串。实现登陆telnet服务器,并自动执行命令。
比如:
ip:192.168.1.100;
port:23;
cmd:"ls"
有4种方式:
1)用Socket(参考 C# 2.0* and Telnet - Not As Painful As It Sounds)
2)用TcpClient(参考 C# 2.0* and Telnet - Not As Painful As It Sounds)
3)用telnet类库,比如 https://github.com/9swampy/Telnet/
4)用telnet命令行(ProcessStartInfo)
C#,我不会啊。有没有C或者c++的方法?