BrightSign Registry Keys
IGMP Behavior
2min
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 0 the default behavior the player will use igmpv3 unless a querier with an older version is present, in which case the player will fall back to v2 or v1 1 the player will always use igmpv1 2 the player will use igmpv2 if possible, but will fall back to v1 if an older querier is present 3 the player will only use igmpv3 and will not fall back to v1 or v2 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 docid\ ytpsfntswyfmxx8pcqjlf or javascript registry docid\ txwoombd2 u12dfegx7ga 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");});