Python實(shí)現(xiàn)基于TCP UDP協(xié)議的IPv4 IPv6模式客戶端和服務(wù)端功能示例
本文實(shí)例講述了Python實(shí)現(xiàn)基于TCP UDP協(xié)議的IPv4 IPv6模式客戶端和服務(wù)端功能。分享給大家供大家參考,具體如下:
由于目前工作的需要,需要在IPv4和IPv6兩種網(wǎng)絡(luò)模式下TCP和UDP的連接,要做到客戶端發(fā)包,服務(wù)端收包。
前幾天寫了代碼,但是把UDP的客戶端和服務(wù)端使用TCP模式的代碼了。今天在公司使用該工具的時(shí)候,發(fā)現(xiàn)了問題,忘記了UDP不需要驗(yàn)證。疏忽,疏忽。不過剛剛接觸編程,可以原諒。
現(xiàn)在在家,已經(jīng)把代碼改好了。經(jīng)測試可以使用。
先運(yùn)行客戶端:
python MiniClient.py host port mode(t4, t6, u4, u6)
再運(yùn)行服務(wù)端:
python MiniServer.py host port mode(t4, t6, u4, u6)
客戶端代碼如下:
import socket, sys
import time
class MiniClient:
h = ''
p = ''
m = ''
def __init__(self, host, port, mode):
self.h = host
self.p = int(port)
self.m = mode
def tcpC4(self):
tcpT4Client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print "Done........"
tcpT4Client.connect((self.h, self.p))
print "TCP IPv4 TCP mode connecting..."
while True:
time.sleep(1)
tcpT4Client.send('hello')
print "hello send to Server"
def udpC4(self):
udpT4Client = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
print "UDP TCP IPv4 Mode connecting..."
while True:
time.sleep(1)
udpT4Client.sendto("hello", (self.h, self.p))
print "Hello Send to " , self.h , ' Use ', self.p, 'Port'
def tcpC6(self):
tcpT4Client = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
print "Done........"
tcpT4Client.connect((self.h, self.p))
print "TCP IPv6 TCP mode connecting..."
while True:
time.sleep(1)
tcpT4Client.send('hello')
print "hello send to Server"
def udpC6(self):
udpU6Client = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
print "UDP TCP IPv4 Mode connecting..."
while True:
time.sleep(1)
udpU6Client.sendto("hello", (self.h, self.p))
print "Hello Send to " , self.h , ' Use ', self.p, 'Port'
if __name__ == "__main__":
x = MiniClient(sys.argv[1], sys.argv[2], sys.argv[3])
if x.m == 't4':
x.tcpC4()
elif x.m == 't6':
x.tcpC6()
elif x.m == 'u4':
x.udpC4()
else:
x.udpC6()
服務(wù)端代碼:
import socket, sys
class MiniServer:
h = ''
p = ''
m = ''
def __init__(self, host, port, mode):
self.h = host
self.p = int(port)
self.m = mode
def serverT4(self):
tcpT4Server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print "Server Socket Created......."
tcpT4Server.bind((self.h, self.p))
print "Wating for connecting......."
tcpT4Server.listen(5)
while True:
clientSock, clientaddr = tcpT4Server.accept()
print "Connected from: ", clientSock.getpeername()
clientSock.send('Congratulations........')
while True:
buf = clientSock.recv(1024)
print buf
#clientSock.close()
def udpT4(self):
udpT4Server = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
print "UDP TCP IPv4 Mode Start....."
udpT4Server.bind((self.h, self.p))
print "UDP Server Start"
while True:
udpT4Data, udpT4ServerInfo = udpT4Server.recvfrom(1024)
print "Receive from ", udpT4ServerInfo, " and The Data send from The Client is :", udpT4Data
def serverT6(self):
tcpT6Server = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
print "Server Socket Created......."
tcpT6Server.bind((self.h, self.p))
print "Wating for connecting......."
tcpT6Server.listen(5)
while True:
clientSock, clientaddr = tcpT6Server.accept()
print "Connected from: ", clientSock.getpeername()
clientSock.send('Congratulations........')
#clientSock.close()
def udpT6(self):
udpT6Server = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
print "UDP TCP IPv4 Mode Start....."
udpT6Server.bind((self.h, self.p))
print "UDP Server Start"
while True:
udpT4Data, udpT6ServerInfo = udpT6Server.recvfrom(1024)
print "Receive from ", udpT6ServerInfo, " and The Data send from The Client is :", udpT4Data
if __name__ == "__main__":
x = MiniServer(sys.argv[1], sys.argv[2], sys.argv[3])
if x.m == 't4':
x.serverT4()
elif x.m == 't6':
x.serverT6()
elif x.m == 'u4':
x.udpT4()
else:
x.udpT6()
更多關(guān)于Python相關(guān)內(nèi)容可查看本站專題:《Python Socket編程技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門與進(jìn)階經(jīng)典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對大家Python程序設(shè)計(jì)有所幫助。
- 對python中基于tcp協(xié)議的通信(數(shù)據(jù)傳輸)實(shí)例講解
- Python Scapy隨心所欲研究TCP協(xié)議棧
- Python網(wǎng)絡(luò)編程之TCP與UDP協(xié)議套接字用法示例
- Python+Socket實(shí)現(xiàn)基于TCP協(xié)議的客戶與服務(wù)端中文自動回復(fù)聊天功能示例
- Python實(shí)現(xiàn)TCP/IP協(xié)議下的端口轉(zhuǎn)發(fā)及重定向示例
- Python使用?TCP協(xié)議實(shí)現(xiàn)智能聊天機(jī)器人功能
- Python網(wǎng)絡(luò)編程之Python編寫TCP協(xié)議程序的步驟
相關(guān)文章
Python捕獲全局的KeyboardInterrupt異常的方法實(shí)現(xiàn)
KeyboardInterrupt異常是Python中的一個(gè)標(biāo)準(zhǔn)異常,它通常發(fā)生在用戶通過鍵盤中斷了一個(gè)正在運(yùn)行的程序,本文主要介紹了Python捕獲全局的KeyboardInterrupt異常的方法實(shí)現(xiàn),感興趣的可以了解一下2024-08-08
keras實(shí)現(xiàn)theano和tensorflow訓(xùn)練的模型相互轉(zhuǎn)換
這篇文章主要介紹了keras實(shí)現(xiàn)theano和tensorflow訓(xùn)練的模型相互轉(zhuǎn)換,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-06-06
python 如何快速找出兩個(gè)電子表中數(shù)據(jù)的差異
下面小編就為大家?guī)硪黄猵ython 如何快速找出兩個(gè)電子表中數(shù)據(jù)的差異。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-05-05
Selenium+Python自動化腳本環(huán)境搭建的全過程
說到自動化測試,就不得不提大名鼎鼎的Selenium,Selenium 是如今最常用的自動化測試工具之一,支持快速開發(fā)自動化測試框架,且支持在多種瀏覽器上執(zhí)行測試,下面這篇文章主要給大家介紹了關(guān)于Selenium+Python自動化腳本環(huán)境搭建的相關(guān)資料,需要的朋友可以參考下2021-09-09
利用Python+Java調(diào)用Shell腳本時(shí)的死鎖陷阱詳解
這篇文章主要給大家介紹了關(guān)于利用Python+Java調(diào)用Shell腳本時(shí)的死鎖陷阱的相關(guān)資料,文章通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧。2018-01-01
用Python實(shí)現(xiàn)一個(gè)簡單的抽獎(jiǎng)小程序
最近開始學(xué)習(xí)python相關(guān)知識,看最近有不少隨機(jī)抽獎(jiǎng)小程序,自己也做一個(gè)試試,下面這篇文章主要給大家介紹了關(guān)于如何利用Python實(shí)現(xiàn)一個(gè)簡單的抽獎(jiǎng)小程序的相關(guān)資料,需要的朋友可以參考下2023-05-05
詳解Python常用標(biāo)準(zhǔn)庫之時(shí)間模塊time和datetime
time和datetime是Python中常用的兩個(gè)時(shí)間模塊,本文將通過示例詳細(xì)為大家講講二者的使用方法,感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)學(xué)習(xí)2022-05-05

