sipp呼叫工具,各命令列引數含義

2021-10-04 19:55:37 字數 516 閱讀 5342

./sipp -sf uac.xml -inf data.txt -i 192.168.88.28 -p 5060 192.168.15.18:2100 -m 1 -r 1 -trace_screen -screen_overwrite true -screen_file uac.log -rp 1000 -l 60

各個引數說明:

-r 1 -rp 1000:每一秒鐘發乙個呼

-inf data.txt:引入資料配置檔案

--p 5060:本地埠(在指令碼中用[local_port]引入)

-m 1:傳送1次呼叫後停止並退出。

-l 60 :最大同時保持呼叫量,預設值為3*caps值*呼叫時長,當因種種原因導致現存呼叫總數達到此值時,sipp將停止產生新的呼叫,等待現存呼叫總數低於此值時才繼續產生呼叫。

-trace_screen -screen_overwrite true :在儲存螢幕檔案時,覆蓋螢幕檔案(預設為true)。

-screen_file uac.log:設定螢幕檔案的名稱。

常用工具和命令列

1.adb help 可知常用命令有 a adb push p p是disaplay progress 複製本地檔案到遠端端。b adb remount remounts the system and vendor if present partitions on the device read w...

SQL Server 2005 命令列實用工具

sql server 2005 命令列實用工具 bcp 實用工具 說明 用於在 microsoft sql server 例項和使用者指定格式的資料檔案之間複製資料。安裝位置 x program files microsoft sql server 90 tools binn dta 實用工具 說明...

python命令列引數解析工具 argparse

在命令列中執行py檔案的時候 這在linux系統中尤為常見 是否可以像執行內部的函式那樣設定可變引數呢?這樣做可以避免進入py檔案再次編寫檔案的尷尬,同時也意味著減少bug的發生。argparse就是這樣可以在幫助在命令列中新增引數的工具,基本的使用方法如下 所示 coding utf 8 impo...