@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
45 lines (41 loc) • 816 B
JavaScript
/**
* @file The Nodes for the Gamecreek OB 4 Celtic DMV.
*
* @version 0.0.0-alpha.0
* @date 2020-03-23
* @author Mittag, Jörg (Lawo) <joerg.mittag@lawo.com>
*/
/**
* The number of C100 DMV Cluster Nodes for the Gamecreek OB 4 Celtic DMV
*
* @readonly
* @constant {number}
*/
const NUMBER_OF_NODES = 24;
/**
* The Nodes for the Gamecreek OB 4 Celtic DMV
*
* @private
* @readonly
* @constant {object}
*/
const NODES = Array.from(
{ length: NUMBER_OF_NODES },
(_, node) => (
{
hostname: `CelticDMV${node.toString().padStart(2, '0')}`,
interfaces: {
management: {
back: {
ip: `10.46.7.${100 + node}`,
},
},
},
sdi: {
in: 0,
out: 0,
},
}
),
);
module.exports = NODES;