Python编写的客户端给服务器发送指令执行相应的命令并返回结果

闲来无事,用Python写个客户端与服务器端应答的程序,主要原理就是客户端通过tcp协议与服务器端通信,客户端给服务器端发送指令,服务器执行指令后把相应的结果返回给客户端,客户端打印结果,代码比较简单,不详细介绍。纯属娱乐。

1.服务器端代码,server_tcp.py

  1. #!/usr/bin/env python  
  2. # -*- coding:utf-8 -*-  
  3.   
  4. # #执行客户端发送过来的命令,并把执行结果返回给客户端  
  5. import socket, traceback, subprocess  
  6.   
  7. host = ''  
  8. port = 51888  
  9.   
  10. s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
  11. s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)  
  12.   
  13. s.bind((host, port))  
  14. s.listen(1)  
  15.   
  16. while 1:  
  17.     try:  
  18.         client_socket, client_addr = s.accept()  
  19.     except Exception, e:  
  20.         traceback.print_exc()  
  21.         continue  
  22.   
  23.     try:  
  24.         print 'From host:', client_socket.getpeername()  
  25.         while 1:  
  26.             command = client_socket.recv(4096)  
  27.             if not len(command):  
  28.                 break  
  29.             print client_socket.getpeername()[0] + ':' + str(command)  
  30.   
  31.             # 执行客户端传递过来的命令  
  32.             handler = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)  
  33.             output = handler.stdout.readlines()  
  34.             if output is None:  
  35.                 output = []  
  36.   
  37.             for one_line in output:  
  38.                 client_socket.sendall(one_line)  
  39.                 client_socket.sendall("\n")  
  40.   
  41.             client_socket.sendall("ok")  
  42.   
  43.   
  44.     except Exception, e:  
  45.         traceback.print_exc()  
  46.   
  47.     try:  
  48.         client_socket.close()  
  49.     except Exception, e:  
  50.         traceback.print_exc()  

2.客户端代码 client_tcp.py

  1. #!/usr/bin/env python  
  2. # -*- coding:utf-8 -*-  
  3.   
  4. # #给server端发送命令  
  5. import socket, sys, traceback  
  6.   
  7. host = '127.0.0.1'  
  8. port = 51888  
  9.   
  10. s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
  11. try:  
  12.     s.connect((host, port))  
  13. except Exception, e:  
  14.     msg = traceback.format_exc()  
  15.     print '连接错误:', msg  
  16.   
  17. input_command = raw_input('Input command:')  
  18. s.send(input_command)  
  19.   
  20. # 利用shutdown()函数使socket双向数据传输变为单向数据传输  
  21. # 该参数表示了如何关闭socket。具体为:0表示禁止将来读;1表示禁止将来写;2表示禁止将来读和写  
  22. s.shutdown(1)  
  23. print '发送完成.'  
  24. print '收到内容:\n'  
  25. while 1:  
  26.     buff = s.recv(4096)  
  27.     if not len(buff):  
  28.         break  
  29.   
  30.     sys.stdout.write(buff)  

3.启动server_tcp.py脚本,开始监听本机51888端口;接着启动client_tcp.py.

(1)客户端内容:

  1. /usr/bin/python2.7 /home/wuguowei/PycharmProjects/xplan_script/test_process/client_tcp.py  
  2. Input command:ls -l  
  3. 发送完成.  
  4. 收到内容:  
  5.   
  6. 总用量 20  
  7.   
  8. -rw-r--r-- 1 root root  744  2月 10 14:44 client_tcp.py  
  9.   
  10. -rw-r--r-- 1 root root  877  2月 10 14:18 my_sub_process.py  
  11.   
  12. -rw-r--r-- 1 root root 1290  2月 10 14:45 server_tcp.py  
  13.   
  14. -rw-r--r-- 1 root root  493  2月 10 10:43 tcpclient.py  
  15.   
  16. -rw-r--r-- 1 root root 1168  2月 10 11:51 tcpserver.py  
  17.   
  18. ok  
  19. Process finished with exit code 0  

(2)服务器端信息

  1. /usr/bin/python2.7 /home/wuguowei/PycharmProjects/xplan_script/test_process/server_tcp.py  
  2. From host: ('127.0.0.1', 46993)  
  3. 127.0.0.1:ls -l 
  • 1
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值