标签类目:tcp
Howto perform UDP tunneling through SSH connection
In this tutorial we will are going to provide simple procedure how to to perform UDP tunneling through an SSH connection.Say you need to forward UDP packets between two remote networks securely.
E.g : dns queries from your home machine to your dns servers at work. 继续阅读 »
Python: Basic Socket TCP
TCP Server
1. new a socket
sock=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
#SOCK_STREAM MEANS TCP SOCKETS
#SOCK_DGRAM MEANS UDP SOCKETS 继续阅读 »
