ubuntu,debian,redhat,fedora,centos
标签类目:tcp

TCP的状态变迁图

分类:RedHatTCP的状态变迁图

继续阅读 »

Howto perform UDP tunneling through SSH connection

分类:DebianIn 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

分类:PythonTCP Server
1. new a socket
sock=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
#SOCK_STREAM MEANS TCP SOCKETS
#SOCK_DGRAM MEANS UDP SOCKETS 继续阅读 »

返回顶部