1.在总控机上使用loadrunner->tools->ip wizard工具设置虚拟ip,其中server ip指要监控的服务器的ip,添加ip时选择A、B或C
类ip,设置开始ip和要添加的虚拟ip的个数,并选中verify the new ip addresses are not already use,已检查添加的ip是否与
局域网中的其它ip冲突
2.重启机器
3.在controller的scenario中勾选enable ip spoofer,启用虚拟ip
5.在controller的tools中选中expert mode,在options->general中设置multiple ip address mode与run-time settings中的
multithreading设置保持一致
6.在load generators中选择localhost,查看脚本执行过程中是否使用了设置的虚拟ip,可以如下设置:
在脚本中添加代码:
char * 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");
在脚本运行过程中查看controller的output,view->show output,选择all messages,查看输出的ip是否为设置的虚拟ip