Chrome command line parameters

I’m trying to override DNS while running a test. With my local Chrome, I can do that with the following command line:
[font=Courier]chrome.exe --host-rules=“MAP my.host.com 100.101.102.103” http://my.host.com/path[/font]

To do the same thing in webpagetest, I set “Command-line” (in the “Chrome” tab) to ‘–host-rules=“MAP my.host.com 100.101.102.103”’. However, I then get an error message:
Invalid command-line option: “100.101.102.103"”

Seems like the validation of command line parameters is not allowing spaces in parameters.
Is that a bug, or maybe an intentional protection against security problems?
Is there any other way to override DNS?

Try using the script tab with your test and use this:

usage: setDns
example: setDns www.aol.com 127.0.0.1

- Host name for the DNS entry to override
- IP Address for the host name to resolve to

Great, that approach solved my problem. Thanks for the hint!

For the benefit of other non-expert users - the script that does it for me is:

setDns www.mytestedhost.com 123.234.123.234 navigate http://www.mytestedhost.com/path/
(with the separators being tabs)

[post edited: use “code” formatting to prevent the forum from adding http in front of the DNS name]