It all depends on the capabilities of the node, below the json file the values โโof seleniumProtocol are displayed and based on the fact that it reflects RC and Webdrivers on the grid.
"capabilities": [ { "browserName": "*firefox", "maxInstances": 2, "seleniumProtocol": "Selenium" }, { "browserName": "*googlechrome", "maxInstances": 2, "seleniumProtocol": "Selenium" }, { "browserName": "*iexplore", "maxInstances": 1, "seleniumProtocol": "Selenium" }, { "browserName": "firefox", "maxInstances": 5, "seleniumProtocol": "WebDriver" }, { "browserName": "chrome", "maxInstances": 5, "seleniumProtocol": "WebDriver" }, { "browserName": "internet explorer", "maxInstances": 1, "seleniumProtocol": "WebDriver" }
It always shows RC and webdriver in the grid, whether we set node or webdriver on the command line

source share