我算是刚接触lr,因为要模拟大量的ip来测试。
通过ip wizard添加了多ip,在controller中设置了ip spoofer ,也设置了run-time setting 和options-general中的线程,进程,设置为一样的。
而且在脚本中添加了
char * ip;
ip=lr_get_vuser_ip();
if (ip)
{
lr_vuser_status_message("The ip address is %s",ip);
}
else
lr_vuser_status_message("IP spoofing disabled");
最后
[attach]73530[/attach]
但是我用抓包工具抓包,ip只有我的电脑的第一个ip发出来的
而且有
Action.c(13): Error: Socket descriptor not found. Hint: the problem might be solved applying the following: (1) Update Run-Time Settings to Run Vuser as a process. (2) Add the following line into mdrv.dat, [lr_socks] section: 'ExtCmdLineConc=-UsingWinInet Yes'.
错误
然后,按照上面的,切换了,线程,进程,在mdrv.dat 中添加了那一行,还是不行
还望高手解答。