Home > Backend Development > Python Tutorial > python实现socket端口重定向示例

python实现socket端口重定向示例

WBOY
Release: 2016-06-06 11:29:16
Original
1071 people have browsed it

可以很轻松的在端口12345开启共享,效果如下:

python实现socket端口重定向示例

要实现我想要的功能,只需要将端口重定向就行了,代码如下:

代码如下:


#! /usr/bin/python
'''
      File      : redirect.py
      Author    : Mike
'''

import socket,os
bufLen = 4*1024

sock1 = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 
sock1.bind(('192.168.168.100', 8000)) 
sock1.listen(5) 

sock2 = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 
sock2.connect(('192.168.168.100', 12345)) 

while True:
        connection,address = sock1.accept() 
        buf = connection.recv(bufLen) 
        #print buf           
        sock2.send(buf) 
        connection.send(sock2.recv(bufLen))
        connection.close()

运行效果:

python实现socket端口重定向示例

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template