CVP Server
|
|
-
Navigate to the C:\Cisco\CVP\conf location.
-
Open the cvpwsmconfig.properties file and add the following entry:
wsm.job.cleanup.duration=1
-
Open the icm.properties file and update the following entry:
#Maximum Number Of Calls
ICM.maxCalls=6144
#Use newcall trunk group id for pre-routed calls(Default true)
ICM.useNewCallTrunkGroupIDforPreRoutedCall = true
-
Open the orm.xml file and replace the existing content with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<orm xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="orm.xsd">
<ormAddresses />
</orm>
-
Open the system.properties file and update the following entry:
ThreadManager.totalThreads = 500
Infrastructure.threadWeight=4
SIP.threadWeight=50
IVR.threadWeight=1
ICM.threadWeight=1
Remove the following entry: CVPServlet.upgradeProperties = true
-
Open the vxml.properties file and add the following entry:
#ContextService properties
#*******************************************************
VXML.ContextService.maxRetries=1
VXML.ContextService.requestTimeout=1200
VXML.ContextService.labMode=false
VXML.ContextService.executorThreadPoolSize=50
VXML.ContextService.httpMaxConnectionsPerRoute=50
VXML.ContextService.statsLogInterval=1800000
VXML.ContextService.getStatusInterval = 30000
#*******************************************************
-
Open the ivr.properties file and update the following entry:
# Valid media file extensions list.
IVR.ValidMediaFileExtension=.wav, .au, .vox, .rm
- Open the oamp.properties file and add the following entries in the respective files:
oamp.properties
# ---- OAMP Interval for Context Service get Status in seconds (default: 30 seconds) ----
omgr.contextServiceStatusInterval=30
# ---- Context Service status timeout value (in seconds) ----
omgr.csStatusTimeout=180
# ---- SSL Context to be used
omgr.sslContextProtocol=TLSv1.2
-
Open the sip.properties file and add the following entry:
#whether to send Reinvite to caller after Whipser done
SIP.ReinviteCallerAfterWhisperDone=true
#System wide ReasonCode to cause code Mapping
SIP.System.ReasonCodeToCauseCode=
-
Open the sip.properties file and add the following entry:
# Outbound proxy SIP listen (secure) port.
SIP.Proxy.Port=5061
# Port on which to listen for incoming sip secure requests.
SIP.Incoming.Secure.Port = 5061
# KeyStorePath
SIP.Secure.KeyStorePath = C:\\Cisco\\CVP\\conf\\security\\.keystore
Note: This file path must be the actual install path.
# KeyStorePassword
SIP.Secure.KeyStorePassword =
# TrustStorePath
SIP.Secure.TrustStorePath =
# TrustStorePassword
SIP.Secure.TrustStorePassword =
#KeyStoreType
SIP.Secure.KeyStoreType = JCEKS
#TrustStoreType
SIP.Secure.TrustStoreType =
# KeyAlgorithm
SIP.Secure.KeyAlgorithm = SunX509
#TrustStoreAlgorithm
SIP.Secure.TrustStoreAlgorithm =
# Incoming secure Protocol
SIP.Incoming.Secure.Transport = TLS
#Outgoing secure Protocol
SIP.Outgoing.Secure.Transport = TLS
#Secure ciphers colon(;) seperated e.g TLS_RSA_WITH_AES_128_CBC_SHA
SIP.Secure.Ciphers = TLS_RSA_WITH_AES_128_CBC_SHA
#Secure TLS versions flags e.g TLSv1,TLSv1.1,TLSv1.2
SIP.Secure.Tlsv1Enabled = false
SIP.Secure.Tlsv1dot1Enabled = false
SIP.Secure.Tlsv1dot2Enabled = true
#Secure Protocol
SIP.Secure.Protocol = TLS
# Client Certificate is needed or not.
SIP.Secure.UseClientAuth = false
#Whether to use backup IVR Sub System
SIP.UseBackupIVRSS = false
#Calls Max Threshold
SIP.CallsMaxThreshold = -1
Note: This value indicates the maximum number of calls that a Call Server can process. The default value is -1, which denotes
the maximum number of licenses (3000). This value can be configured in the range of 0-3000.
- Add the following entries in the respective files:
jmx_callserver.conf
com.sun.management.jmxremote.rmi.port = 2097
jmx_oamp.conf
com.sun.management.jmxremote.rmi.port = 10000
jmx_vxml.conf
com.sun.management.jmxremote.rmi.port = 9697
jmx_wsm.conf
com.sun.management.jmxremote.rmi.port = 10003
orm_jmx.properties
com.sun.management.jmxremote.rmi.port=3000
- Open the orm.properties file and add the following entries in the respective files:
orm.properties
#Media server root directory.
mediaserver.root.dir =
# ---- SSL Context to be used
orm.sslContextProtocol=TLSv1.2
- Navigate to the C:\Cisco\CVP location and locate the connector node with attribute SSLCertificateFile="<install_path>\security\wsm.crt" in the file: wsm\Server\Tomcat\conf\server.xml and add the following:
ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA256"
sslEnabledProtocols="TLSv1.2"
Example:
<Connector SSLCertificateFile="C:\Cisco\CVP\conf\security\wsm.crt"
SSLCertificateKeyFile="C:\Cisco\CVP\conf\security\wsm.key" SSLEnabled="true"
acceptCount="100" ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256"
clientAuth="false" disableUploadTimeout="true" enableLookups="true"
executor="tomcatThreadPool" keyAlias="wsm_certificate"
keystoreFile="C:\Cisco\CVP\conf\security\.keystore"
keystorePass="****" keystoreType="JCEKS"
port="8111" protocol="org.apache.coyote.http11.Http11NioProtocol"
scheme="https" secure="true" sslEnabledProtocols="TLSv1.2" sslProtocol="TLS"/>
-
Locate the connector node with the attribute SSLCertificateFile="<install_path>\security\vxml.crt" in the file: VXMLServer\Tomcat\conf\server.xml
and add or update the following:
sslEnabledProtocols="TLSv1.2"
-
Locate the connector node with the attribute SSLCertificateFile="<install_path>\security\vxml.crt" in the file: CallServer\Tomcat\conf\server.xml
and add or update the following:
sslEnabledProtocols="TLSv1.2"
|
CVP Server
|
|
-
Follow Steps 1 through 5 from the preceding row, CVP Server Upgrade from 10.5(1) to 11.6(1)
-
Open the vxml.properties file and add the following entry:
#ContextService properties
#*******************************************************
VXML.ContextService.executorThreadPoolSize=50
VXML.ContextService.httpMaxConnectionsPerRoute=50
VXML.ContextService.statsLogInterval=1800000
VXML.ContextService.getStatusInterval = 30000
#*******************************************************
-
Follow Steps 8 through 15 from the preceding row, CVP Server Upgrade from 10.5(1) to 11.6(1).
|
CVP Server
|
|
|
Operations Console
|
|
-
Navigate to the C:\Cisco\CVP\conf location.
-
Open the cvpwsmconfig.properties file and add the following entry:
wsm.job.cleanup.duration=1
-
Open the icm.properties file and add the following entry:
# Maximum Number Of Calls
ICM.maxCalls=6144
#Use newcall trunk group id for pre-routed calls(Default true)
ICM.useNewCallTrunkGroupIDforPreRoutedCall = true
-
Open the orm.xml file, and replace the existing content with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<orm xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="orm.xsd">
<ormAddresses />
</orm>
-
Open the system.properties file and update the following entry:
ThreadManager.totalThreads = 500
Infrastructure.threadWeight=4
SIP.threadWeight=50
IVR.threadWeight=1
ICM.threadWeight=1
Remove the following entry:
CVPServlet.upgradeProperties = true
-
Open the vxml.properties file and add the following entry: #ContextService properties
#ContextService properties
#*******************************************************
VXML.ContextService.executorThreadPoolSize=50
VXML.ContextService.httpMaxConnectionsPerRoute=50
VXML.ContextService.statsLogInterval=1800000
VXML.ContextService.getStatusInterval = 30000
#*******************************************************
-
Open the ivr.properties file and update the following entry:
# Valid media file extensions list.
IVR.ValidMediaFileExtension=.wav, .au, .vox, .rm
- Open the oamp.properties file and add the following entries in the respective files:
oamp.properties
# ---- OAMP Interval for Context Service get Status in seconds (default: 30 seconds) ----
omgr.contextServiceStatusInterval=30
# ---- Context Service status timeout value (in seconds) ----
omgr.csStatusTimeout=180
# ---- SSL Context to be used
omgr.sslContextProtocol=TLSv1.2
-
Follow Steps 9 through 12 from the preceding row, CVP Server Upgrade from 10.5(1) to 11.6(1).
- Navigate to the C:\Cisco\CVP location and locate the connector node with attribute SSLCertificateFile="<install_path>\security\wsm.crt" in the file: wsm\OPSConsoleServer\Tomcat\conf\server.xml and add the following:
ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA256"
sslEnabledProtocols="TLSv1.2"
Example:
<Connector SSLCertificateFile="C:\Cisco\CVP\conf\security\wsm.crt"
SSLCertificateKeyFile="C:\Cisco\CVP\conf\security\wsm.key" SSLEnabled="true"
acceptCount="100" ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256"
clientAuth="false" disableUploadTimeout="true" enableLookups="true"
executor="tomcatThreadPool" keyAlias="wsm_certificate"
keystoreFile="C:\Cisco\CVP\conf\security\.keystore"
keystorePass="****" keystoreType="JCEKS"
port="8111" protocol="org.apache.coyote.http11.Http11NioProtocol"
scheme="https" secure="true" sslEnabledProtocols="TLSv1.2" sslProtocol="TLS"/>
-
Locate the connector node with the attribute SSLCertificateFile="<install_path>\security\vxml.crt" in the file: OPSConsoleServer\Tomcat\conf\server.xml
and add or update the following:
sslEnabledProtocols="TLSv1.2"
|
Operations Console
|
|
-
Navigate to the C:\Cisco\CVP\conf location
-
Open the cvpwsmconfig.properties file and add the following entry:
wsm.job.cleanup.duration=1
-
Open the icm.properties file and add the following entry:
# Maximum Number Of Calls
ICM.maxCalls=6144
#Use newcall trunk group id for pre-routed calls(Default true)
ICM.useNewCallTrunkGroupIDforPreRoutedCall = true
-
Open the orm.xml file, and replace the existing content with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<orm xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="orm.xsd">
<ormAddresses />
</orm>
-
Open the system.properties file and add the following entry:
ThreadManager.totalThreads = 500
Infrastructure.threadWeight=4
SIP.threadWeight=50
IVR.threadWeight=1
ICM.threadWeight=1
Remove the following entry:
CVPServlet.upgradeProperties = true
- Open the oamp.properties file and add the following entries in the respective files:
oamp.properties
# ---- OAMP Interval for Context Service get Status in seconds (default: 30 seconds) ----
omgr.contextServiceStatusInterval=30
# ---- Context Service status timeout value (in seconds) ----
omgr.csStatusTimeout=180
# ---- SSL Context to be used
omgr.sslContextProtocol=TLSv1.2
-
Follow Steps 10 through 12 from the preceding row, CVP Server Upgrade from 10.5(1) to 11.6(1).
- Navigate to the C:\Cisco\CVP location and locate the connector node with attribute SSLCertificateFile="<install_path>\security\wsm.crt" in the file: wsm\OPSConsoleServer\Tomcat\conf\server.xml and add the following:
ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA256"
sslEnabledProtocols="TLSv1.2"
Example:
<Connector SSLCertificateFile="C:\Cisco\CVP\conf\security\wsm.crt"
SSLCertificateKeyFile="C:\Cisco\CVP\conf\security\wsm.key" SSLEnabled="true"
acceptCount="100" ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256"
clientAuth="false" disableUploadTimeout="true" enableLookups="true"
executor="tomcatThreadPool" keyAlias="wsm_certificate"
keystoreFile="C:\Cisco\CVP\conf\security\.keystore"
keystorePass="****" keystoreType="JCEKS"
port="8111" protocol="org.apache.coyote.http11.Http11NioProtocol"
scheme="https" secure="true" sslEnabledProtocols="TLSv1.2" sslProtocol="TLS"/>
-
Locate the connector node with the attribute SSLCertificateFile="<install_path>\security\vxml.crt" in the file: OPSConsoleServer\Tomcat\conf\server.xml
and add or update the following:
sslEnabledProtocols="TLSv1.2"
|
Operations Console
|
|
- Open the icm.properties file and add the following entry:
#Use newcall trunk group id for pre-routed calls(Default true)
ICM.useNewCallTrunkGroupIDforPreRoutedCall = true
- Open the oamp.properties file and add the following entries in the respective files:
oamp.properties
# ---- OAMP Interval for Context Service get Status in seconds (default: 30 seconds) ----
omgr.contextServiceStatusInterval=30
# ---- Context Service status timeout value (in seconds) ----
omgr.csStatusTimeout=180
# ---- SSL Context to be used
omgr.sslContextProtocol=TLSv1.2
-
Follow Steps 10 through 12 from the preceding row, CVP Server Upgrade from 10.5(1) to 11.6(1).
- Navigate to the C:\Cisco\CVP location and locate the connector node with attribute SSLCertificateFile="C:\Cisco\CVP\conf\security\oamp.crt" in the file:
OPSConsoleServer\Tomcat\conf\server.xml and add the following:
ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA256"
sslEnabledProtocols="TLSv1.2"
Example:
<Connector SSLCertificateFile="C:\Cisco\CVP\conf\security\wsm.crt"
SSLCertificateKeyFile="C:\Cisco\CVP\conf\security\wsm.key" SSLEnabled="true"
acceptCount="100" ciphers="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256"
clientAuth="false" disableUploadTimeout="true" enableLookups="true"
executor="tomcatThreadPool" keyAlias="wsm_certificate"
keystoreFile="C:\Cisco\CVP\conf\security\.keystore"
keystorePass="****" keystoreType="JCEKS"
port="8111" protocol="org.apache.coyote.http11.Http11NioProtocol"
scheme="https" secure="true" sslEnabledProtocols="TLSv1.2" sslProtocol="TLS"/>
-
Locate the connector node with the attribute SSLCertificateFile="C:\Cisco\CVP\conf\security\oamp.crt" in the file: OPSConsoleServer\Tomcat\conf\server.xml
and add or update the following:
sslEnabledProtocols="TLSv1.2"
|
Reporting Server
|
|
-
Navigate to the C:\Cisco\CVP\conf location
-
Open the cvpwsmconfig.properties file and add the following entry:
wsm.job.cleanup.duration=1
-
Open the icm.properties file and add the following entry:
# Maximum Number Of Calls
ICM.maxCalls=6144
#Use newcall trunk group id for pre-routed calls(Default true)
ICM.useNewCallTrunkGroupIDforPreRoutedCall = true
-
Open the orm.xml file, and replace the existing content with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<orm xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="orm.xsd">
<ormAddresses />
</orm>
-
Open the system.properties file and add the following entry:
ThreadManager.totalThreads = 500
Infrastructure.threadWeight=4
SIP.threadWeight=50
IVR.threadWeight=1
ICM.threadWeight=1
Remove the following entry:
CVPServlet.upgradeProperties = true
-
Open the reporting.properties file and add the following entry:
RPT.DBAdminPassword = ENCRYPTEDPWD
Note
|
The value (ENCRYPTEDPWD) of the new entry must be same as that of the RPT.DBPassword value.
|
-
Follow Steps 10 through 13 from the preceding row, CVP Server Upgrade from 10.5(1) to 11.6(1).
|
Reporting Server
|
|
-
Open the icm.properties file and add the following entry:
#Use newcall trunk group id for pre-routed calls(Default true)
ICM.useNewCallTrunkGroupIDforPreRoutedCall = true
-
Follow Steps 10 through 13 from the preceding row, CVP Server Upgrade from 10.5(1) to 11.6(1).
|