Changes between Version 3 and Version 4 of sysadminSIPServerConfiguration
- Timestamp:
- Jun 19, 2009, 3:45:05 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
sysadminSIPServerConfiguration
v3 v4 211 211 $ cp oils_sip.xml.example oils_sip.xml 212 212 213 #Edit /openils/conf/oils_sip.xml 214 215 #service ports 216 <listeners> 217 <service 218 port="127.0.0.1:6001/tcp" 219 transport="http" 220 protocol="NCIP/1.0" /> 221 222 <service 223 port="8023/tcp" 224 transport="telnet" 225 protocol="SIP/1.00" 226 timeout="60" /> 227 228 <service 229 port="8080/tcp" 230 transport="RAW" 231 protocol="SIP/2.00" 232 timeout="60" /> 233 </listeners> 234 235 #server params 236 <server-params 237 min_servers='1' 238 min_spare_servers='0' 239 max_servers='25' 240 /> 241 242 #accounts 243 <accounts> 244 <login id="sipclient" password="sippassword" institution="conifer"/> 245 </accounts> 246 247 # change all instances of "institiution id=" to match institution attribute in accounts 213 #Edit /openils/conf/oils_sip.xml to match the file snippet at the bottom of the instructions: 214 248 215 # In Evergreen, create a new profile group called SIP with following perms: 249 COPY_CHECKIN250 COPY_CHECKOUT251 RENEW_CIRC252 VIEW_CIRCULATIONS253 VIEW_COPY_CHECKOUT_HISTORY254 VIEW_PERMIT_CHECKOUT255 VIEW_USER256 VIEW_USER_FINES_SUMMARY257 VIEW_USER_TRANSACTIONS216 # COPY_CHECKIN 217 # COPY_CHECKOUT 218 # RENEW_CIRC 219 # VIEW_CIRCULATIONS 220 # VIEW_COPY_CHECKOUT_HISTORY 221 # VIEW_PERMIT_CHECKOUT 222 # VIEW_USER 223 # VIEW_USER_FINES_SUMMARY 224 # VIEW_USER_TRANSACTIONS 258 225 # Add the user you deliniated in oils_sip.xml <accounts></accounts> to the SIP group. 259 226 # running / stopping the server: … … 262 229 $ oils_ctl.sh -d /openils/var/run/ -s /openils/conf/oils_sip.xml -a [start|stop|restart]_sip 263 230 264 }}} 231 232 ################################################################ 233 # 234 # File snippet: 235 # /openils/conf/oils_sip.xml 236 # 237 ################################################################ 238 # 239 # <listeners> 240 # <service 241 # port="127.0.0.1:6001/tcp" 242 # transport="http" 243 # protocol="NCIP/1.0" /> 244 # 245 # <service 246 # port="8023/tcp" 247 # transport="telnet" 248 # protocol="SIP/1.00" 249 # timeout="60" /> 250 # 251 # <service 252 # port="8080/tcp" 253 # transport="RAW" 254 # protocol="SIP/2.00" 255 # timeout="60" /> 256 # </listeners> 257 # 258 # <server-params 259 # min_servers='1' 260 # min_spare_servers='0' 261 # max_servers='25' 262 # /> 263 # 264 # <accounts> 265 # <login id="sipclient" password="sippassword" institution="conifer"/> 266 # </accounts> 267 # 268 # change all instances of "institiution id=" to match institution attribute in accounts 269 # 270 ######################################################################################### 271 }}}