Cisco Headend System Release 2.7 Installation Guide

Page of 138
 
Appendix C 
SSL Configuration for the LoadPIMS Web Service 
108 
4036043 Rev B 
details how to add a client's IP address to the list of IP addresses allowed to 
connect to the DNCS web services. 
 
Configure Client IP Addresses for the loadPIMS Service 
1  Obtain a list of client IP addresses that will be connecting to the DNCS server. 
2  Open the /etc/apache2/conf/loadPIMS.https file and find the section with the 
<Location /dncs/soap/loadPIMS> directive. Add those client IP addresses 
there, according to the following example: 
<Location /dncs/soap/loadPIMS>
 
 
#SSLVerifyClient none
 
 
#SSLCipherSuite +ADH-RC4-MD5
 
            Order Deny, Allow
 
            Allow from localhost
 
            Allow from dncs
 
            Allow from appservatm
 
 
#Allow from client_ip
 
 
 
Allow from client_ip1
 
 
 
Allow from client_ip2
 
 
 
Deny from all
 
</Location>
 
Note:  This example shows the addition of client_ip1 and client_ip2 to the list of 
clients that are allowed to access the server.