In OS version 8.0.84, players accept a force_igmp_version registry entry in the networking section. This entry allows for customization of the player response to the IGMP network environment. It can have the following values:

Example

This is a simple example which sets the value to 1. You will have to reboot the player to see registry changes. See BrightScript roRegistry or JavaScript registry for more details.

var registryClass = require("@brightsign/registry");
var registry = new registryClass();
 
//Writes to the registry, forcing the player to always use IGMPv1
registry.write({networking:{force_igmp_version:"1"}}).then(
	function(){console.log("Write Successful");});