Advertisement
Guest User

Untitled

a guest
Jun 25th, 2010
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.08 KB | None | 0 0
  1. ; (SCCP*)
  2. ;
  3. ; An implementation of Skinny Client Control Protocol (SCCP)
  4. ;
  5. ; Sergio Chersovani (mlists@c-net.it)
  6. ; http://chan-sccp.belios.de
  7. ;
  8.  
  9. [general]
  10. servername = Asterisk ; show this name on the device registration
  11. keepalive = 60 ; phone keep alive message evey 60 secs. Used to check the voicemail
  12. debug = core ; console debug level or categories
  13. ; examples: debug = 11 | debug = mwi,event,core | debug = all | debug = none or 0
  14. ; possible categories:
  15. ; core, sccp, hint, rtp, device, line, action, channel, cli, config, feature, feature_button, softkey, indicate, pbx
  16. ; socket, mwi, event, adv_feature, conference, buttontemplate, speeddial, codec, realtime, lock, newcode, high, all, none
  17. context=from-internal
  18. dateFormat = M-D-YA ; M-D-Y in any order. Use M/D/YA (for 12h format)
  19. bindaddr = 192.168.1.103 ; replace with the ip address of the asterisk server (RTP important param)
  20. port = 2000 ; listen on port 2000 (Skinny, default)
  21. disallow=all ; First disallow all codecs
  22. allow=alaw ; Allow codecs in order of preference
  23. allow=ulaw ;
  24. allow=g729 ;
  25. firstdigittimeout = 16 ; dialing timeout for the 1st digit
  26. digittimeout = 8 ; more digits
  27. digittimeoutchar = # ; you can force the channel to dial with this char in the dialing state
  28. autoanswer_ring_time = 1 ; ringing time in seconds for the autoanswer, the default is 0
  29. autoanswer_tone = 0x32 ; autoanswer confirmation tone. For a complete list of tones: grep SKINNY_TONE sccp_protocol.h
  30. ; not all the tones can be played in a connected state, so you have to try.
  31. remotehangup_tone = 0x32 ; passive hangup notification. 0 for none
  32. transfer_tone = 0 ; confirmation tone on transfer. Works only between SCCP devices
  33. callwaiting_tone = 0x2d ; sets to 0 to disable the callwaiting tone
  34. musicclass=default ; Sets the default music on hold class
  35. language=en ; Default language setting
  36. ;callevents=no ; generate manager events when phone
  37. ; performs events (e.g. hold)
  38. ;accountcode=skinny ; accountcode to ease billing
  39. deny=0.0.0.0/0.0.0.0 ; Deny every address except for the only one allowed.
  40. permit=192.168.1.0/255.255.255.0 ; Accept class C 192.168.1.0
  41. ; You may have multiple rules for masking traffic.
  42. ; Rules are processed from the first to the last.
  43. ; This General rule is valid for all incoming connections. It's the 1st filter.
  44.  
  45. localnet = 192.168.1.0/255.255.255.0 ; All RFC 1918 addresses are local networks
  46. ;externip = 1.2.3.4 ; IP Address that we're going to notify in RTP media stream
  47. externhost = nextbgates95.dnsalias.org ; Hostname (if dynamic) that we're going to notify in RTP media stream
  48. externrefresh = 60 ; expire time in seconds for the hostname (dns resolution)
  49. dnd = on ; turn on the dnd softkey for all devices. Valid values are "off", "on" (busy signal), "reject" (busy signal), "silent" (ringer = silent)
  50. sccp_tos = 0x68 ; sets the default sccp signaling packets Type of Service (TOS) (defaults to 0x68 = 01101000 = 104 = DSCP:011010 = AF31)
  51. ; Others possible values : [CS?, AF??, EF], [0x??], [lowdelay, throughput, reliability, mincost(solaris)], none
  52. sccp_cos = 4 ; sets the default sccp signaling packets Class of Service (COS) (defaults to 4)
  53. audio_tos = 0xB8 ; sets the default audio/rtp packets Type of Service (TOS) (defaults to 0xb8 = 10111000 = 184 = DSCP:101110 = EF)
  54. audio_cos = 6 ; sets the default audio/rtp packets Class of Service (COS) (defaults to 6)
  55. video_tos = 0x88 ; sets the default video/rtp packets Type of Service (TOS) (defaults to 0x88 = 10001000 = 136 = DSCP:100010 = AF41)
  56. video_cos = 5 ; sets the default video/rtp packets Class of Service (COS) (defaults to 5)
  57. echocancel = on ; sets the phone echocancel for all devices
  58. silencesuppression = off ; sets the silence suppression for all devices
  59. ;callgroup=1,3-4 ; We are in caller groups 1,3,4. Valid for all lines
  60. ;pickupgroup=1,3-5 ; We can do call pick-p for call group 1,3,4,5. Valid for all lines
  61. ;amaflags = ; Sets the default AMA flag code stored in the CDR record
  62. trustphoneip = no ; The phone has a ip address. It could be private, so if the phone is behind NAT
  63. ; we don't have to trust the phone ip address, but the ip address of the connection
  64. ;earlyrtp = none ; valid options: none, offhook, dial, ringout. default is none.
  65. ; The audio strem will be open in the progress and connected state.
  66. private = on ; permit the private function softkey
  67. mwilamp = on ; Set the MWI lamp style when MWI active to on, off, wink, flash or blink
  68. mwioncall = off ; Set the MWI on call.
  69. ;blindtransferindication = ring ; moh or ring. the blind transfer should ring the caller or just play music on hold
  70. protocolversion = 11 ; skinny version protocol. Just for testing. 0 to 17 (excluding 12-14)
  71. cfwdall = on ; activate the callforward ALL stuff and softkeys
  72. cfwdbusy = on ; activate the callforward BUSY stuff and softkeys
  73. cfwdnoanswer = on ; activate the callforward NOANSWER stuff and softkeys
  74. ;devicetable=sccpdevice ;datebasetable for devices
  75. ;linetable=sccpline ;datebasetable for lines
  76. nat=on ; Global NAT support (default Off)
  77. ;directrtp=on ; This option allow devices to do direct RTP sessions (default Off)
  78. ;allowoverlap=on ; Enable overlap dialing support. (Default is off)
  79. callanswerorder=oldestfirst ; oldestfirst or lastestfirst
  80. ;------------------------------ JITTER BUFFER CONFIGURATION --------------------------
  81. ;jbenable = yes ; Enables the use of a jitterbuffer on the receiving side of a
  82. ; sccp channel. Defaults to "no". An enabled jitterbuffer will
  83. ; be used only if the sending side can create and the receiving
  84. ; side can not accept jitter. The sccp channel can accept
  85. ; jitter, thus a jitterbuffer on the receive sccp side will be
  86. ; used only if it is forced and enabled.
  87.  
  88. ;jbforce = no ; Forces the use of a jitterbuffer on the receive side of a sccp
  89. ; channel. Defaults to "no".
  90.  
  91. ;jbmaxsize = 200 ; Max length of the jitterbuffer in milliseconds.
  92.  
  93. ;jbresyncthreshold = 1000 ; Jump in the frame timestamps over which the jitterbuffer is
  94. ; resynchronized. Useful to improve the quality of the voice, with
  95. ; big jumps in/broken timestamps, usually sent from exotic devices
  96. ; and programs. Defaults to 1000.
  97.  
  98. ;jbimpl = fixed ; Jitterbuffer implementation, used on the receiving side of a
  99. ; sccp channel. Two implementations are currently available
  100. ; - "fixed" (with size always equals to jbmaxsize)
  101. ; - "adaptive" (with variable size, actually the new jb of IAX2).
  102. ; Defaults to fixed.
  103.  
  104. ;jblog = no ; Enables jitterbuffer frame logging. Defaults to "no".
  105. ;-----------------------------------------------------------------------------------
  106. ;
  107. ; Hotline (New in v3/TRUNK)
  108. ;
  109. ; Setting the hotline Feature on a device, will make it connect to a predefined extension as soon as the Receiver
  110. ; is picked up or the "New Call" Button is pressed. No number has to be given. This works even on devices which
  111. ; have no entry in the config file or realtime database.
  112. ;
  113. ; The hotline function can be used in different circumstances, for example at a door, where you want people to be
  114. ; able to only call one number, or for unprovisioned phones to only be able to call the helpdesk to get their phone
  115. ; set up. If hotline_enabled = yes, any device which is not included in the configuration explicitly will be allowed
  116. ; to registered as a guest device. All such devices will register on a single shared line called "hotline".
  117. ;
  118. ; For example:
  119. hotline_enabled=yes
  120. hotline_context=default
  121. hotline_extension=*60
  122.  
  123. ; New Device Template Method Analogous to standard Asterisk Templating Method
  124.  
  125. [defaultdevice](!) ; default device template
  126. type = device ; specifies that this template is for a device, it will be inherited
  127. keepalive = 60 ; set 0 to disable the keepalive check.
  128. ;tzoffset = +2
  129. transfer = on ; enable or disable the transfer capability. It does remove the transfer softkey
  130. park = on ; take a look to the compile howto. Park stuff is not compiled by default
  131. cfwdall = on ; activate the callforward stuff and softkeys
  132. cfwdbusy = on
  133. cfwdnoanswer = on
  134. pickupexten = on ; enable Pickup function to direct pickup an extension
  135. ;pickupcontext = sccp ; context where direct pickup search for extensions. if not set it will be ignored.
  136. pickupmodeanswer = on ; on = asterisk way, the call has been answered when picked up
  137. ; off = call manager way, the phone who picked up the call rings the call
  138. dtmfmode = inband ; inband or outofband. outofband is the native cisco dtmf tone play.
  139. ; Some phone model does not play dtmf tones while connected (bug?), so the default is inband
  140. ;imageversion = P00405000700 ; useful to upgrade old firmwares (the ones that do not load *.xml from the tftp server)
  141. deny=0.0.0.0/0.0.0.0 ; Same as general
  142. ;permit=192.168.1.5/255.255.255.255 ; This device can register only using this ip address
  143. dnd = on ; turn on the dnd softkey for this device. Valid values are "off", "on" (busy signal), "reject" (busy signal), "silent" (ringer = silent) or user to toggle on phone
  144. trustphoneip = no ; The phone has a ip address. It could be private, so if the phone is behind NAT
  145. ; we don't have to trust the phone ip address, but the ip address of the connection
  146. nat=on ; Device NAT support (default Off)
  147. directrtp=on ; This option allow devices to do direct RTP sessions (default Off)
  148. earlyrtp = none ; valid options: none, offhook, dial, ringout. default is none.
  149. ; The audio strem will be open in the progress and connected state.
  150. private = on ; permit the private function softkey for this device
  151. mwilamp = on ; Set the MWI lamp style when MWI active to on, off, wink, flash or blink
  152. mwioncall = off ; Set the MWI on call.
  153. softkeyset = softkeyset ; use softkeyset with name softkeyset
  154. setvar=testvar=value
  155.  
  156. [7940](!,defaultdevice) ; add to default device template and create new template named 7940
  157. devicetype = 7940 ; device type (see below)
  158. transfer = off ; enable or disable the transfer capability. It does remove the transfer softkey
  159. park = on ; take a look to the compile howto. Park stuff is not compiled by default
  160. cfwdall = on ; activate the callforward stuff and softkeys
  161.  
  162. [7960](!,defaultdevice) ; add to default device template and create new template named 7960
  163. devicetype = 7960 ; device type (see below)
  164. park = off ; take a look to the compile howto. Park stuff is not compiled by default
  165. cfwdall = on ; activate the callforward stuff and softkeys
  166.  
  167. [7941](!,defaultdevice) ; add to 7960 device template and create new template named 7970
  168. devicetype = 7941 ; device type (see below)
  169. button = line, 995 ; Add SpeedDial to Helpdesk
  170. private = on ; permit the private function softkey for this device
  171. privacy = on ; full = disable hints notification on devices, on = hints showed depending on private key, off = hints always showed
  172. mwilamp = blink ; Set the MWI lamp style when MWI active to on, off, wink, flash or blink
  173. mwioncall = on ; Set the MWI on call.
  174.  
  175. [SEP001794CF3075](7941) ; Use Device Template 7960
  176. description = 3174890330 ; Give a description to the Phone (Displayed in the Right Top Corner on the phone)
  177. ;addon = 7914 ; Has an extension panel on the right of type 7914
  178. button = line, 995 ; Assign Line 98011 to Device
  179. button = empty ; Assign an Empty Button
  180. button = empty ; Assign Line 98012 to Device
  181. ;button = speeddial,Phone 2 Line 1, 98021, 98021@hint ; Add SpeedDial to Phone Number Two Line 1
  182. ;button = speeddial,Phone 3 Line 1, 98031, 98031@hint ; Add SpeedDial to Phone Number Three Line 1
  183. ;cfwdall = off ; Overwrite Templated setting
  184.  
  185. [SEP002244668800](7970) ; Use Device Template 7970
  186. description = Phone Number Two ; Give a description to the Phone (Displayed in the Right Top Corner on the phone)
  187. ; Buttons come in the following flavours:
  188. ; - empty: Empty button (no options)
  189. ; - line: Registers the line with identifier specified as <name>
  190. ; - speeddial: Adds a speeddial with label <name> and <option1> as number
  191. ; Optionally, <option2> can be used to specify a hint by extension@context as usual.
  192. ; - service: Adds a service url
  193. ; - Feature buttons have an on/off status represented on the device with a tick-box and can be used to set the device in a particular state.
  194. ; Option1 is the feature_name and option2 it's parameter.
  195. ; Currently Possible option1,option2 combinations:
  196. ; - privacy,callpresent = Make a private call, number is suppressed
  197. ; - privacy,hint = Make a private call, hint is suppressed
  198. ; - cfwdall,number = Forward all calls
  199. ; - cfwbusy,number = Forward on busy
  200. ; - cfwnoaswer,number = Forward on no-answer (not implemented yet)
  201. ; - DND,busy = Do-not-disturb, return Busy signal to Caller
  202. ; - DND,silent = Do-not-disturb, return nothing to caller
  203. ; For example:
  204. button = line, 98021 ; Line associated with this phone
  205. button = speeddial,Phone 1 Line 1, 98011, 98011@hint ; SpeedDial to 98011, Hint referes to an asterisk hint defined for this line, it will show when this line is in use and what number is connected to this line
  206. button = speeddial,Phone 1 Line 2, 98012, 98012@hint
  207. button = speeddial,Phone 3 Line One, 98031, 98031@hint
  208. button = feature,Private Call,privacy,callpresent ; Feature Button to set Privacy Phone Calls
  209. button = feature,DND Busy,DND,busy ; Feature Button to send incoming calls a busy signal
  210. button = feature,DND Silent,DND,silent ; Feature Button to send incoming calls a silent signal
  211.  
  212. [SEP113344668811] ; non templated device
  213. type = device ; specifies that this template is for a device, it will be inherited
  214. devicetype = 7940 ; device type (see below)
  215. description = Phone Number Three
  216. button = line, 98031
  217. button = speeddial,Phone 1 Line 1, 98011, 98011@hint
  218. button = speeddial,Phone 1 Line 2, 98012, 98012@hint
  219. button = speeddial,Phone 2 Line One, 98021, 98021@hint
  220. keepalive = 60 ; set 0 to disable the keepalive check.
  221. addon = 7914
  222. addon = 7914
  223. tzoffset = +2
  224. transfer = off ; enable or disable the transfer capability. It does remove the transfer softkey
  225. park = off ; take a look to the compile howto. Park stuff is not compiled by default
  226. cfwdall = on ; activate the callforward stuff and softkeys
  227. cfwdbusy = on
  228. cfwdnoanswer = on
  229. pickupexten = on ; enable Pickup function to direct pickup an extension
  230. pickupcontext = sccp ; context where direct pickup search for extensions. if not set it will be ignored.
  231. pickupmodeanswer = on ; on = asterisk way, the call has been answered when picked up
  232. dtmfmode = inband ; inband or outofband. outofband is the native cisco dtmf tone play.
  233. imageversion = P00405000700 ; useful to upgrade old firmwares (the ones that do not load *.xml from the tftp server)
  234. deny=0.0.0.0/0.0.0.0 ; Same as general
  235. permit=192.168.1.5/255.255.255.255 ; This device can register only using this ip address
  236. dnd = on ; turn on the dnd softkey for this device. Valid values are "off", "on" (busy signal), "reject" (busy signal), "silent" (ringer = silent) or user to toggle on phone
  237. trustphoneip = no ; The phone has a ip address. It could be private, so if the phone is behind NAT
  238. nat=on ; Device NAT support (default Off)
  239. directrtp=on ; This option allow devices to do direct RTP sessions (default Off)
  240. earlyrtp = none ; valid options: none, offhook, dial, ringout. default is none.
  241. private = on ; permit the private function softkey for this device
  242. mwilamp = on ; Set the MWI lamp style when MWI active to on, off, wink, flash or blink
  243. softkeyset = softkeyset ; use softkeyset with name softkeyset
  244.  
  245.  
  246. ; New Line Template Method
  247.  
  248. [defaultline](!) ; default template for lines
  249. type = line ; specifies that this template is for lines will be inherited
  250. ;context = sccp ; default asterisk context
  251. incominglimit = 4 ; more than 1 incoming call = call waiting.
  252. transfer = on ; per line transfer capability. on, off, 1, 0
  253. vmnum = *97 ; speeddial for voicemail administration, just a number to dial
  254. meetmenum = 2663 ; this extension will receive meetme requests, SCCP_MEETME_ROOM channel variable will
  255. ; contain the room number dialed into simpleswitch.
  256. ;trnsfvm = 1000 ; extension to redirect the caller (e.g for voicemail)
  257. secondary_dialtone_digits = 9 ; digits for the secondary dialtone (max 9 digits)
  258. secondary_dialtone_tone = 0x22 ; outside dialtone
  259. musicclass=default ; Sets the default music on hold class
  260. language=en ; Default language setting
  261. audio_tos = 0xB8 ; sets the default audio/rtp packets Type of Service (TOS) (defaults to 0xb8 = 10111000 = 184 = DSCP:101110 = EF)
  262. ; Others possible values : 0x??, lowdelay, throughput, reliability, mincost(solaris), none
  263. audio_cos = 6 ; sets the default audio/rtp packets Class of Service (COS) (defaults to 6)
  264. video_tos = 0x88 ; sets the default video/rtp packets Type of Service (TOS) (defaults to 0x88 = 10001000 = 136 = DSCP:100010 = AF41)
  265. video_cos = 5 ; sets the default video/rtp packets Class of Service (COS) (defaults to 5)
  266. echocancel = on ; sets the phone echocancel for this line
  267. silencesuppression = off ; sets the silence suppression for this line
  268.  
  269. [98011](defaultline) ; define line 98001 using template defaultline
  270. id = 1000 ; future use
  271. pin = 1234 ; future use
  272. label = Phone 1 Line 1 ; button line label (7960, 7970, 7940, 7920)
  273. description = Line 98011 ; top diplay description
  274. mailbox = 10011 ; voicemail.conf (syntax: vmbox[@context][:folder])
  275. cid_name = MY CID ; caller id name
  276. cid_num = 98011 ; caller id number
  277. accountcode=79011 ; accountcode to ease billing
  278. callgroup=1,3-4 ; We are in caller groups 1,3,4. Valid for this line
  279. pickupgroup=1,3-5 ; We can do call pick-p for call group 1,3,4,5. Valid for this line
  280. ;amaflags = ; Sets the default AMA flag code stored in the CDR record for this line
  281. setvar=testvar2=my value
  282.  
  283. [995](defaultline)
  284. id = 1001 ; future use
  285. pin = 4356 ; future use
  286. label = Extension 995 ; button line label (7960, 7970, 7940, 7920)
  287. description = Line 995 ; top diplay description
  288. mailbox = 995 ; voicemail.conf (syntax: vmbox[@context][:folder])
  289. cid_name = Jay Hankins ; caller id name
  290. cid_num = 995 ; caller id number
  291. trnsfvm = *995
  292. accountcode=79012 ; accountcode to ease billing
  293. callgroup=1,4-9 ; We are in caller groups 1,3,4. Valid for this line
  294. pickupgroup=1,3-9 ; We can do call pick-p for call group 1,3,4,5. Valid for this line
  295. ;echocancel = off ; sets the phone echocancel for this line (overwrite template)
  296. ;silencesuppression = on ; sets the silence suppression for this line (overwrite template)
  297.  
  298. [98021](defaultline)
  299. id = 1002 ; future use
  300. pin = 9987 ; future use
  301. label = Phone 2 Line 1 ; button line label (7960, 7970, 7940, 7920)
  302. description = Line 98021 ; top diplay description
  303. mailbox = 10021 ; voicemail.conf (syntax: vmbox[@context][:folder])
  304. cid_name = ME_ME_ME ; caller id name
  305. cid_num = 98021 ; caller id number
  306. accountcode=79021 ; accountcode to ease billing
  307. callgroup=1 ; We are in caller groups 1,3,4. Valid for this line
  308. pickupgroup=1 ; We can do call pick-p for call group 1,3,4,5. Valid for this line
  309. incominglimit = 1 ; more than 1 incoming call = call waiting. (overwrite template)
  310. adhocnumber = 98012 ; Adhoc Number or Private-line automatic ringdown (PLAR):
  311. ; Adhoc/PLAR circuits have statically configured endpoints and do
  312. ; not require the user dialing to connect calls.
  313. ; - The adhocNumber is dialed as soon as the Phone is taken off-hook or
  314. ; when the new-call button is pressed
  315. ; - The number will not be dialed when choosing a line; so when you choose
  316. ; a line you can enter a number manually.
  317.  
  318. [98031] ; non templated line
  319. type = line ; specifies that this template is for lines will be inherited
  320. id = 1003 ; future use
  321. pin = 6573 ; future use
  322. label = Phone 3 Line 1 ; button line label (7960, 7970, 7940, 7920)
  323. description = Line 98031 ; top diplay description
  324. mailbox = 10031 ; voicemail.conf (syntax: vmbox[@context][:folder])
  325. cid_name = NONTEMPL ; caller id name
  326. cid_num = 98031 ; caller id number
  327. context = sccp ; default asterisk context
  328. incominglimit = 2 ; more than 1 incoming call = call waiting.
  329. transfer = on ; per line transfer capability. on, off, 1, 0
  330. vmnum = 600 ; speeddial for voicemail administration, just a number to dial
  331. meetmenum = 700 ; this extension will receive meetme requests, SCCP_MEETME_ROOM channel variable will
  332. ; contain the room number dialed into simpleswitch.
  333. trnsfvm = 1000 ; extension to redirect the caller (e.g for voicemail)
  334. secondary_dialtone_digits = 9 ; digits for the secondary dialtone (max 9 digits)
  335. secondary_dialtone_tone = 0x22 ; outside dialtone
  336. musicclass=default ; Sets the default music on hold class
  337. language=en ; Default language setting
  338. echocancel = on ; sets the phone echocancel for this line
  339. silencesuppression = off ; sets the silence suppression for this line
  340. accountcode=79004 ; accountcode to ease billing
  341. callgroup=2-4 ; We are in caller groups 1,3,4. Valid for this line
  342. pickupgroup=2 ; We can do call pick-p for call group 1,3,4,5. Valid for this line
  343. ;amaflags = ; Sets the default AMA flag code stored in the CDR record for this line
  344. setvar=testvar2=value
  345.  
  346.  
  347. ;create a user defined softkeyset
  348. ;valid softkeys:
  349. ;redial, newcall, cfwdall, cfwdbusy, cfwdnoanswer, pickup, gpickup, conflist, dnd, hold, endcall, park, select
  350. ;idivert, resume, newcall, transfer, dirtrfr, answer, transvm, private, meetme, barge, cbarge, conf, back join
  351.  
  352. [softkeyset]
  353. type=softkeyset
  354. onhook = redial,newcall,cfwdall,dnd
  355. connected = hold,endcall,transfer,park,select,cfwdall,cfwdbusy,idivert
  356. onhold = resume,newcall,endcall,transfer,confrn,select,dirtrfr,idivert
  357. ringin = answer,endcall,idivert
  358. offhook = redial,endcall,private,cfwdall,cfwdbusy,pickup,gpickup,meetme,barge
  359. conntrans = hold,endcall,transfer,confrn,park,select,dirtrfr,cfwdall,cfwdbusy
  360. digitsfoll = back,endcall
  361. connconf = hold,endcall,join
  362. ringout = endcall,transfer,cfwdall,idivert
  363. offhookfeat = redial,endcall
  364. onhint = pickup,barge
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375. ; phone types
  376. ; 12 -- Cisco Unified IP Phone 12SP+ (or other 12 variants)
  377. ; 30 -- Cisco Unified IP Phone 30VIP (or other 30 variants)
  378. ; 7902 -- Cisco Unified IP Phone 7902G
  379. ; 7905 -- Cisco Unified IP Phone 7905G
  380. ; 7906 -- Cisco Unified IP Phone 7906G
  381. ; 7910 -- Cisco Unified IP Phone 7910G
  382. ; 7911 -- Cisco Unified IP Phone 7911G
  383. ; 7912 -- Cisco Unified IP Phone 7912G
  384. ; 7935 -- Cisco Unified IP Conference Station 7935
  385. ; 7936 -- Cisco Unified IP Conference Station 7936
  386. ; 7937 -- Cisco Unified IP Conference Station 7937G
  387. ; 7920 -- Cisco Unified IP Wireless Phone 7920
  388. ; 7921 -- Cisco Unified IP Wireless Phone 7921G
  389. ; 7931 -- Cisco Unified IP Phone 7931G
  390. ; 7940 -- Cisco Unified IP Phone 7940G
  391. ; 7941 -- Cisco Unified IP Phone 7941G/7941G-GE
  392. ; 7942 -- Cisco Unified IP Phone 7942G
  393. ; 7945 -- Cisco Unified IP Phone 7945G
  394. ; 7960 -- Cisco Unified IP Phone 7960G
  395. ; 7961 -- Cisco Unified IP Phone 7961G/7961G-GE
  396. ; 7962 -- Cisco Unified IP Phone 7962G
  397. ; 7965 -- Cisco Unified IP Phone 7965G
  398. ; 7970 -- Cisco Unified IP Phone 7970G
  399. ; 7971 -- Cisco Unified IP Phone 7971G-GE
  400. ; 7975 -- Cisco Unified IP Phone 7975G
  401. ; 7985 -- Cisco Unified IP Phone 7985G
  402. ; ata -- Cisco ATA-186 or Cisco ATA-188
  403. ; kirk -- Kirk telecom ip phones
  404. ; cipc -- Cisco IP Communicator
  405. ; nokia-icc -- Nokias ICC Cisco client
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement