cc-mek-scada/supervisor/config.lua

16 lines
580 B
Lua
Raw Normal View History

2022-01-13 15:23:38 +00:00
-- type ('active','backup')
-- 'active' system carries through instructions and control
-- 'backup' system serves as a hot backup, still recieving data
-- from all PLCs and coordinator(s) while in backup to allow
-- instant failover if active goes offline without re-sync
SYSTEM_TYPE = 'active'
2022-01-22 19:47:54 +00:00
-- scada network listen for PLC's and RTU's
SCADA_DEV_LISTEN = 16000
2022-01-13 15:23:38 +00:00
-- failover synchronization
2022-04-22 15:07:59 +00:00
SCADA_FO_LOCAL = 16101
SCADA_FO_PEER = 16102
2022-01-22 19:47:54 +00:00
-- listen port for SCADA supervisor access by coordinators
2022-04-22 15:07:59 +00:00
SCADA_SV_LISTEN = 16201
2022-01-13 15:23:38 +00:00
-- expected number of reactors
NUM_REACTORS = 4