需求描述:測試流表的訪問控制
tcp測試環境搭建:在一台vm內埠臨時開啟tcp/udp服務,另一台測試vm通過telnet到指定埠
tcp測試方式(伺服器端):
2、nc -lv 本機ip -p 8000 & (-l 是指定server端,-v是顯示解析過程,-p是指定埠)
3、iperf -s -p 8000 & (-s是指定server端)
檢視埠服務:
netstat -anlp | grep 8000
ps:&代表後台執行,否則當前互動介面被占用
tcp測試方式(客戶端):
telnet 伺服器ip 8000
若telnet服務不存在,可通過yum安裝
1、yum list telnet*
2、yum install -y telnet-server
3、yum install -y telnet.*
nc測試(伺服器端):
(udp)nc -luv 本機ip -p 8000 &
(tcp)nc -lv 本機ip -p 8000 &
nc測試(客戶端):
(udp)nc -u 伺服器端ip 8000
(tcp)nc 伺服器端ip 8000
iperf測試(伺服器端):-n代表每5s顯示列印資訊
(udp)iperf -s -u -p 4000 -n 5
(tcp)iperf -s -p 4000 -n 5
iperf測試(客戶端):
(udp)iperf -c 伺服器端ip 4000 -n 5
(tcp)iperf -c -u 伺服器端ip 4000 -n 5
最後再附加乙個curl使用小技巧:
curl *** | python -mjson.tool 可以使返回的資料按標準格式顯示
在c 上 的3種作用
以前只知道 在c 中為了寫檔案路徑的 不要加轉義符而在前面加上 識別符號,沒想到 還有其他的作用 1.忽略轉義字元 例如string filename d 文字檔案 text.txt 使用 後 string filename d 文字檔案 text.txt 2.讓字串跨行 例如string strs...
lgo怎麼開啟o檔案 3種方法來開啟O檔案
安裝可選產品 file magic solvusoft eula privacy policy terms uninstall 1。嘗試不同的軟體 2。更改o檔案關聯 電腦是聰明的,但有時可能很容易混淆。您的電腦可能會要求您選擇乙個預設程式,以便您將來開啟o副檔名。如果您沒有收到此提示,可以通過控制...
python3 開啟多執行緒的兩種寫法
寫法一 importtime from threading importthread deffunc name print f 開始 time.sleep 0.5 print f 結束 if name main t1 thread target func,args 執行緒1 t2 thread ta...