make alternate port for diagnostics the default;

3.6-maint
Bryan Biedenkapp 2 years ago
parent e7ddfffed3
commit 243696855c

@ -177,7 +177,7 @@ system:
# Flag indicating the FNE should use an alternate port dedicated to diagnostic and activity
# log processing. This port number is always: master port + 1 (so for example, a master port
# of 62031 will use 62032 for diagnostic and activity messages.)
useAlternatePortForDiagnostics: false
useAlternatePortForDiagnostics: true
# Flag indicating whether or not the host activity log will be sent to the network.
allowActivityTransfer: true
# Flag indicating whether or not the host diagnostic log will be sent to the network.

@ -326,7 +326,7 @@ bool HostFNE::readParams()
m_updateLookupTime = 10U;
}
m_useAlternatePortForDiagnostics = systemConf["useAlternatePortForDiagnostics"].as<bool>(false);
m_useAlternatePortForDiagnostics = systemConf["useAlternatePortForDiagnostics"].as<bool>(true);
m_allowActivityTransfer = systemConf["allowActivityTransfer"].as<bool>(true);
m_allowDiagnosticTransfer = systemConf["allowDiagnosticTransfer"].as<bool>(true);

Loading…
Cancel
Save

Powered by TurnKey Linux.