154 lines
5.9 KiB
Plaintext
154 lines
5.9 KiB
Plaintext
#--------------------------------------------------------------------
|
|
#
|
|
# Copyright (C) 2003 Intel Corporation
|
|
#
|
|
# Managment Presence Server configuration file
|
|
#
|
|
#--------------------------------------------------------------------
|
|
|
|
# Configuration file instructions
|
|
# -------------------------------
|
|
# Use whitespace (tabs and spaces) freely.
|
|
# String to the left of the equal sign can be delimited with double quotes.
|
|
# The structure of the config file is in sections indicated by squared
|
|
# brackets.
|
|
# All the fields between one section and another belong to the first section.
|
|
# Before each section, a description of all its possible fields appear.
|
|
# Fields not indicated by '(OPTIONAL)' must appear under their section, and
|
|
# fields indicated by '(OPTIONAL)' are optional, and their default value is
|
|
# indicated to right of the equal sign.
|
|
# A field which is commented out under a section means that the value given to
|
|
# the field in the comment is the default value given to the field.
|
|
# This value may be uncommented for immediate use.
|
|
|
|
|
|
# *** [Network] section description ***
|
|
# AMTListenIP (IP/FQDN) - IP/FQDN that MPS listens to for new Intel AMT
|
|
# connection requests.
|
|
# AMTListenPort (unsigned short) - port that MPS listens to for new Intel AMT
|
|
# connection requests.
|
|
# SocksListenIP (IP/FQDN) - IP/FQDN address that MPS listens to for new SOCKS
|
|
# connection requests.
|
|
# SocksListenPort (unsigned short) - port that MPS listens to for new SOCKS
|
|
# connection requests.
|
|
# (OPTIONAL) HttpListenIP (unsigned short) = 10.212.212.80 - IP/FQDN address
|
|
# that MPS listens to for new HTTP connection requests.
|
|
# HttpListenPort (unsigned short) - port that MPS listens to for new HTTP
|
|
# connection requests.
|
|
# (OPTIONAL) SOAPListenIP (IP/FQDN) = 10.212.212.80 - IP/FQDN address that MPS
|
|
# listens to for new SOAP connection requests.
|
|
# (OPTIONAL) SOAPListenPort (unsigned short) = 7793 - port that MPS listens to
|
|
# for new SOAP connection requests.
|
|
|
|
[Network]
|
|
AMTListenIP = 10.212.212.80
|
|
AMTListenPort = 16982
|
|
HttpListenIP = 10.212.212.80
|
|
HttpListenPort = 8080
|
|
SocksListenIP = 10.212.212.80
|
|
SocksListenPort = 8090
|
|
SOAPListenIP = 10.212.212.80
|
|
SOAPListenPort = 7793
|
|
|
|
|
|
# *** [Logger] section description ***
|
|
# (OPTIONAL) LogFilePath (string) = "logs/" - path in which the log file is
|
|
# created.
|
|
# (OPTIONAL) LogFileName (string) = "mps.log" - name of the log file.
|
|
# (OPTIONAL) LogFileMaxSize (unsigned int) = 1000 - maximum size of a single
|
|
# log file (in kB), beyond which another log file is created.
|
|
# (OPTIONAL) LogFileMaxFiles (unsigned int) = 100 - maximum number of log files
|
|
# to create, beyond which older log files will be overwritten.
|
|
|
|
[Logger]
|
|
LogFilePath = "logs/"
|
|
LogFileName = "mps.log"
|
|
LogFileMaxSize = 10000
|
|
LogFileMaxFiles = 10
|
|
|
|
|
|
# *** [AMT_Authenticate] section description ***
|
|
# NeedAuthentication (boolean) - parameter specifying if connection
|
|
# authentication data is needed for AMT connection.
|
|
# Next elements in section are needed only if NeedAuthentication was set as
|
|
# true.
|
|
# (OPTIONAL) DllName (string) - the full path name of the dll file to be used
|
|
# to gain the said authentication.
|
|
# (OPTIONAL) DllParameters (string) - Parameters to pass to the dll.
|
|
|
|
[AMT_Authenticate]
|
|
NeedAuthentication = false
|
|
# DllName =
|
|
# DllParameters =
|
|
|
|
|
|
# *** [Socks_Authenticate] section description ***
|
|
# NeedAuthentication (boolean) - parameter specifying if connection
|
|
# authentication data is needed for Socks connection.
|
|
# Next elements in section are needed only if NeedAuthentication was set as
|
|
# true.
|
|
# (OPTIONAL) DllName (string) - the full path name of the dll file to be used
|
|
# to gain the said authentication.
|
|
# (OPTIONAL) DllParameters (string) - Parameters to pass to the dll.
|
|
|
|
[Socks_Authenticate]
|
|
NeedAuthentication = false
|
|
# DllName =
|
|
# DllParameters =
|
|
|
|
|
|
# *** [Notification_Authentication] section description ***
|
|
# NeedNotificationAuthentication (boolean) - indicates if authentication is
|
|
# needed when notifying managment consoles of new AMT tunnels.
|
|
# Next elements in section are needed only if NeedNotificationAuthentication
|
|
# was set as true.
|
|
# (OPTIONAL) Username (string) = user - the username for the notification's
|
|
# authentication.
|
|
# (OPTIONAL) Password (string) = pass - the password for the notification's
|
|
# authentication.
|
|
|
|
[Notification_Authentication]
|
|
NeedNotificationAuthentication = false
|
|
# Username = user
|
|
# Password = pass
|
|
|
|
|
|
# *** [Filtering] section description ***
|
|
# FilterUnauthorizedServers (boolean) - indicates if the authorized servers
|
|
# list should be used. If not, then direct connection and UDP message are
|
|
# always forwarded.
|
|
|
|
[Filtering]
|
|
FilterUnauthorizedServers = false
|
|
|
|
|
|
# *** [SOAP_Authentication] section description ***
|
|
# *** NOT SUPPORTED IN LINUX ***
|
|
# NeedAuthentication (boolean) - parameter specifying if connection
|
|
# authentication data is needed for SOAP connection.
|
|
# Next elements in section are needed only if NeedAuthentication was set as
|
|
# true.
|
|
# (OPTIONAL) DllName (string) - the full path name of the dll file to be used
|
|
# to gain the said authentication.
|
|
# (OPTIONAL) DllParameters (string) - Parameters to pass to the dll.
|
|
|
|
[SOAP_Authentication]
|
|
NeedAuthentication = false
|
|
# DllName =
|
|
# DllParameters =
|
|
|
|
|
|
# *** [Management_Interface] section description ***
|
|
# MaxEnumElements (int) - The maximum number of elements that will be sent in a
|
|
# response to a Pull request.
|
|
# EnumCtxTimeout (int) - The duration of the validity of an enumeration context
|
|
# in seconds.
|
|
# MaxConcurrentEnums (int) - The number of concurrent enumerations that are
|
|
# allowed.
|
|
# MaxSubscribers (int) - The maximum number of subscribers that are allowed.
|
|
|
|
[Management_Interface]
|
|
#MaxEnumElements = 50
|
|
#EnumCtxTimeout = 500
|
|
#MaxConcurrentEnums = 10
|
|
#MaxSubscribers = 30 |