File: gxp2000.template.txt

package info (click to toggle)
gsutil 3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 272 kB
  • sloc: perl: 2,664; makefile: 5
file content (1040 lines) | stat: -rw-r--r-- 19,075 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
################################################################################################
## Configuration template for GXP2000, firmware version 1.1.0.13
################################################################################################

#-----------------------------------------------------------------------------
# Network & security Settings
#-----------------------------------------------------------------------------

# Admin password for web interface
P2 = admin

# End User Password
P196 = 123

# DHCP support. 0 - yes, 1 - no
P8 = 0

# PPPoE support. PPPoE user ID
P82 =

# PPPoE password
P83 =

# Host name (option 12)
P146 =

# Domain name (option 15)
P147 = 

# Vendor Class Id (opion 60)
P148 = 

# IP Address. Ignore if DHCP or PPPoE is used
P9 = 
P10 = 
P11 = 
P12 = 

# Subnet mask. Ignore if DHCP or PPPoE is used
P13 = 255
P14 = 255
P15 = 255
P16 = 0

# Router. Ignore if DHCP or PPPoE is used
P17 = 
P18 = 
P19 = 
P20 = 

# Use this DNS server.  (if specified).
P92 = 
P93 = 
P94 = 
P95 = 

# DNS 1. Ignore if DHCP or PPPoE is used
P21 = 
P22 = 
P23 = 
P24 = 

# DNS 2. Ignore if DHCP or PPPoE is used
P25 = 0
P26 = 0
P27 = 0
P28 = 0

# Use NAT IP.  This will enable our SIP client to use this IP in the SIP message. Example 64.3.153.50.
P101 =

# Use Random Port. 0 - no, 1 - yes
P78 = 0

# Local RTP port (1024-65535, default 5004)
P39 = 5004 

#-----------------------------------------------------------------------------
# Syslog Server
#-----------------------------------------------------------------------------

# Syslog Server (name of the server, max length is 64 charactors)
P207 =

# Syslog Level (Default setting is NONE)
# 0 - NONE, 1 - DEBUG, 2 - INFO, 3 - WARNING, 4 - ERROR
P208 =

#-------------------------------------------------------------
# Firmware Upgrade & Configuration
#-------------------------------------------------------------

# Firmware Upgrade. 0 - TFTP Upgrade,  1 - HTTP Upgrade.
P212 = 0

# TFTP Server (for remote software upgrade and configuration)
# For firmware version 1.0.5.22 and above)
P213 =
P214 = 
P215 = 
P216 = 

# Firmware Path
P192 =

# Config server Path
P237 =

# Firmware file prefix
P232 = 

# Firmware file postfix
P233 = 

# Config file prefix
P234 = 

# Config file postfix
P235 = 

# DHCP option 66 overrides tftp server 0 - No, 1 - Yes
P145 = 1

# Automatic HTTP Upgrade. 0 - No, 1 - Yes (checking every defined days). Default is Yes.
P194 = 0

# Check for new firmware every () day, unit is in day, default is 7 days.
P193 = 

# Check for new firmware. 0 - Always, 1 - only when fw pre/postfix changes
P238 = 0

# Authenticate conf file. 0 - No, 1 - Yes
P240 = 0

#-----------------------------------------------------------------------------
# Time settings
#-----------------------------------------------------------------------------

# NTP Server
P30 =

# Time Zone. Offset in minutes to GMT plus 720 (0 = -12 hours)
P64 = 780

# Allow dhcp option 2 to override timezone. 0 - No, 1 - Yes
P143 = 1

# Daylight Savings Time. 0 - no, 1 - yes
P75 = 1

#-----------------------------------------------------------------------------
# General SIP Registration settings
#-----------------------------------------------------------------------------

# Keep-alive interval (in seconds. default 20 seconds)
P84 = 20

# STUN server
P76 = 

#-----------------------------------------------------------------------------
# Coming soon... (sic)
#-----------------------------------------------------------------------------

# G723 rate. 0 - 6.3kbps encoding rate, 1 - 5.3kbps encoding rate
#P49 = 0

# iLBC payload type. Between 96 and 127, default is 97.
#P96 = 97

# iLBC Frame Size. 0 - 20ms(default), 1 - 30ms.
#P97 = 0

#-----------------------------------------------------------------------------
# General codec/voice quality settings
#-----------------------------------------------------------------------------

# Silence Suppression. 0 - no, 1 - yes
P50 = 0

# Voice Frames per TX (up to 10/20/32/64 frames for G711/G726/G723/other codecs respectively)
P37 = 2

# IP QoS (IP Diff-Serv or Precedence value for RTP)
P38 = 48

# Layer 2 QoS. 802.1Q/VLAN Tag (VLAN classification for RTP)
P51 = 0

# Layer 2 QoS. 802.1p priority value (0 - 7)
P87 = 0

# DTMF Payload Type
P79 = 101

# Send Flash Event (Flash will be sent as a DTMF event if set to Yes). 0 - no, 1 - yes
P74 = 0


#-----------------------------------------------------------------------------
# Misc settings
#-----------------------------------------------------------------------------


# Use # as Dial Key (if set to Yes, "#" will function as the "(Re-)Dial" key). 0 - no, 1 - yes
P72 = 1

# Offhook Auto-Dial (User ID/extension to dial automatically when offhook)
P71 =

# Disable Call-Waiting. 0 - No, 1 - Yes.
P91 = 0

# Use Quick IP-call mode. 0 - No, 1 - Yes
P184 = 0

# No Key Entry Timeout. Default - 4 seconds.
P85 = 8

# Lock Keypad Update. (configuration update via keypad is disabled if set to Yes)
# 0 - No, 1 - Yes.
P88 = 0

# Date Display Format. 0 - Year-Month-Day, 1 - Month-Day-Year, 2 - Day-Month-Year
P102 = 2

# Date display format. 0 - 12 hr, 1 - 24 hr
P122 = 1

# Display clock instead of date. 0 - No, 1 - Yes
P123 = 0


# Use custom ring tone 1 if incoming caller ID is the following:
P105 =

# Use custom ring tone 2 if incoming caller ID is the following:
P106 =

# Use custom ring tone 3 if incoming caller ID is the following:
P107 =


###########################################################
# GXP 2000 Multipurpose keys & other settings
###########################################################

# LCD Backlight always on. 0 - No, 1 - Yes
P322 = 0

#--- Key 1 ----
# Key Mode. 0 - Speed Dial, 1 - Asterisk BLF
P323 = 0
# Account (0..3 --> Line 1..4)
P301 = 0
# Name
P302 =
# User ID
P303 =

#--- Key 2 ----
# Key Mode. 0 - Speed Dial, 1 - Asterisk BLF
P324 = 0
# Account (0..3 --> Line 1..4)
P304 = 0
# Name
P305 =
# User ID
P306 =

#--- Key 3 ----
# Key Mode. 0 - Speed Dial, 1 - Asterisk BLF
P325 = 0
# Account (0..3 --> Line 1..4)
P307 = 0
# Name
P308 =
# User ID
P309 =

#--- Key 4 ----
# Key Mode. 0 - Speed Dial, 1 - Asterisk BLF
P326 = 0
# Account (0..3 --> Line 1..4)
P310 = 0
# Name
P311 =
# User ID
P312 =

#--- Key 5 ----
# Key Mode. 0 - Speed Dial, 1 - Asterisk BLF
P327 = 0
# Account (0..3 --> Line 1..4)
P313 = 0
# Name
P314 =
# User ID
P315 =

#--- Key 6 ----
# Key Mode. 0 - Speed Dial, 1 - Asterisk BLF
P328 = 0
# Account (0..3 --> Line 1..4)
P316 = 0
# Name
P317 =
# User ID
P318 =

#--- Key 7 ----
# Key Mode. 0 - Speed Dial, 1 - Asterisk BLF
P329 = 0
# Account (0..3 --> Line 1..4)
P319 = 0
# Name
P320 =
# User ID
P321 =


# ------ Settings for router mode ---------

# System Device Mode. 0 - Switch, 1 - router
P231 = 0

# WAN side http access: 0 - Disabled, 1 - enabled
P190 = 0

# ICMP reply on wan port: 0 - Disabled, 1 - enabled
P189 = 0

# Cloned WAN MAC Addr (2x6 digit hex format)
P115 = 
P116 = 
P117 = 
P118 = 
P119 = 
P120 = 

# LAN subnet mask
P110 = 

# LAN DHCP base IP
P111 = 

# DHCP Lease time
P112 = 

# DMZ IP
P113 = 

# ---------Port forwarding-----------

# Row #1
# WAN Port
P150 = 
# LAN IP
P158 = 
# LAN Port
P166 =
# Protocol. 0 - UDP, 1 - TCP, 2 - TCP/UDP
P174 =

# Row #2
# WAN Port
P151 = 
# LAN IP
P159 = 
# LAN Port
P167 =
# Protocol. 0 - UDP, 1 - TCP, 2 - TCP/UDP
P175 =

# Row #3
# WAN Port
P152 = 
# LAN IP
P160 = 
# LAN Port
P168 =
# Protocol. 0 - UDP, 1 - TCP, 2 - TCP/UDP
P176 =

# Row #4
# WAN Port
P153 = 
# LAN IP
P161 = 
# LAN Port
P169 =
# Protocol. 0 - UDP, 1 - TCP, 2 - TCP/UDP
P177 =

# Row #5
# WAN Port
P154 = 
# LAN IP
P162 = 
# LAN Port
P170 =
# Protocol. 0 - UDP, 1 - TCP, 2 - TCP/UDP
P178 =

# Row #6
# WAN Port
P155 = 
# LAN IP
P163 = 
# LAN Port
P171 =
# Protocol. 0 - UDP, 1 - TCP, 2 - TCP/UDP
P179 =

# Row #7
# WAN Port
P156 = 
# LAN IP
P164 = 
# LAN Port
P172 =
# Protocol. 0 - UDP, 1 - TCP, 2 - TCP/UDP
P180 =

# Row #8
# WAN Port
P157 = 
# LAN IP
P165 = 
# LAN Port
P173 =
# Protocol. 0 - UDP, 1 - TCP, 2 - TCP/UDP
P181 =


###########################################################
# GXP 2000 Line 1 - 4 Settings
###########################################################


# ------------------------------
# ----- Line 1 Settings --------
# ------------------------------

# Account active. 0 - No, 1 - Yes
P271 =

# Account name
P270 =

# SIP Server
P47 =

# Outbound Proxy
P48 =

# SIP User ID
P35 =

# Authentication ID
P36 =

# Authentication password
P34 =

# User Caller Name (John Doe)
P3 =

# Use DNS SRV. 0 - No, 1 - Yes.
P103 = 

# SIP User ID is phone number. 0 - no, 1 - yes
P63 = 0

# SIP Registration. 0 - no, 1 - yes
P31 = 1

# Unregister On Reboot. 0 - no, 1 - yes
P81 = 1

# Register Expiration (in minutes. default 1 hour, max 45 days)
P32 = 60

# Local SIP port (default 5060)
P40 = 5060

# SIP T1 Timeout (1/hundreth seconds)
P209 = 100

# SIP T2 Interval (1/hundreth seconds)
P250 = 400

# NAT Traversal. 0 - yes, 1 - no, 2 - no but send keepalives
P52 = 1

# SUBSCRIBE for MWI. Whether or not send SUBSCRIBE for Message Waiting Indication.  0 - No, 1 - Yes.
P99 = 1

# Voice Mail UserID (User ID/extension for 3rd party voice mail system)
P33 =

# Proxy-Require (A SIP extension to enable firewall penetration)
P197 =

# Send DTMF. 0 - in audio 1 - via RTP(RFC2833) 2 - via SIP INFO
P73 = 1

# Early Dial (use "Yes" only if proxy supports 484 response). 0 - no, 1 - yes
P29 = 0

# Dial Plan (dial plan prefix string)
P66 =

# Enable/Disable Call Features,  0 - No, 1 - Yes.
P191 = 1

# Disable Missed Call, 0 - No, 1 - Yes.
P182 = 0

# Session expiration (in seconds)
P260 = 180

# Min-SE (in seconds)
P261 = 90

# Caller Request Timer 0 - No, 1 - Yes/request for timer when making outbound calls
P262 = 0

# Callee Request Timer 0 - No, 1 - Yes(When caller supports timer but did not request one)
P263 = 0

# Force timer 0 - No, 1 - Yes(Use timer even when remote party does not support)
P264 = 0

# UAC Specify Refresher, 0 - Omit, 1 - UAC, 2 - UAS
P266 = 0

# UAS Specify Refresher, 1 - UAC, 2 - UAS(When UAC did not specify refresher tag)
P267 = 1

# Force INVITE, 0 - No, 1 - Yes
P265 = 0

# Enable 100rel, 0 - No, 1 - Yes
P272 = 0

# Default Ring Tone. 0 - system ring tone, 1..3 --> custom ring tone 1..3
P104 = 0

# Send Anonymous (caller ID will be blocked if set to Yes). 0 - no, 1 - yes
P65 = 0

# Auto Answer
P90 = 0

# Allow Auto Answer by Call-Info, 0 - No, 1 - Yes (for intercom?)
P298 = 1

# Turn off speaker on remote disconnect, 0 - No, 1 - Yes
P299 = 1

# Codec preference settings (1..8)
# 0 - G711u
# 2 - G.726-32 (supported?)
# 3 - GSM
# 4 - G.723.1
# 8 - G711a
# 9 - G.722 (supported?)
#15 - G.728 (supported?)
#18 - G.729A/B
#98 - iLBC (supported?)
P57 = 18
P58 = 3
P59 = 8
P60 = 0
P61 = 0
P62 = 0
P46 = 0
P98 = 0

# Special feature
# 100 - Standard
# 101 - Nortel MCS
# 102 - Broadsoft
# 108 - CBCOM
# 109 - RNK
# 110 - Sylantro
P198 = 100


# ------------------------------
# ----- Line 2 Settings --------
# ------------------------------

# Account active. 0 - No, 1 - Yes
P401 =

# Account name
P417 =

# SIP Server
P402 =

# Outbound Proxy
P403 =

# SIP User ID
P404 =

# Authentication ID
P405 =

# Authentication password
P406 =

# User Caller Name (John Doe)
P407 =

# Use DNS SRV. 0 - No, 1 - Yes.
P408 = 

# SIP User ID is phone number. 0 - no, 1 - yes
P409 = 0

# SIP Registration. 0 - no, 1 - yes
P410 = 1

# Unregister On Reboot. 0 - no, 1 - yes
P411 = 0

# Register Expiration (in minutes. default 1 hour, max 45 days)
P412 = 60

# Local SIP port
P413 = 5062

# SIP T1 Timeout (1/hundreth seconds)
P440 = 100

# SIP T2 Interval (1/hundreth seconds)
P441 = 400

# NAT Traversal. 0 - yes, 1 - no, 2 - no but send keepalives
P414 = 1

# SUBSCRIBE for MWI. Whether or not send SUBSCRIBE for Message Waiting Indication.  0 - No, 1 - Yes.
P415 = 1

# Voice Mail UserID (User ID/extension for 3rd party voice mail system)
P426 =

# Proxy-Require (A SIP extension to enable firewall penetration)
P418 =

# Send DTMF. 0 - in audio 1 - via RTP(RFC2833) 2 - via SIP INFO
P416 = 1

# Early Dial (use "Yes" only if proxy supports 484 response). 0 - no, 1 - yes
P422 = 0

# Dial Plan (dial plan prefix string)
P419 =

# Enable/Disable Call Features,  0 - No, 1 - Yes.
P420 = 1

# Disable Missed Call, 0 - No, 1 - Yes.
P442 = 0

# Session expiration (in seconds)
P434 = 180

# Min-SE (in seconds)
P427 = 90

# Caller Request Timer 0 - No, 1 - Yes/request for timer when making outbound calls
P428 = 0

# Callee Request Timer 0 - No, 1 - Yes(When caller supports timer but did not request one)
P429 = 0

# Force timer 0 - No, 1 - Yes(Use timer even when remote party does not support)
P430 = 0

# UAC Specify Refresher, 0 - Omit, 1 - UAC, 2 - UAS
P432 = 0

# UAS Specify Refresher, 1 - UAC, 2 - UAS(When UAC did not specify refresher tag)
P433 = 1

# Force INVITE, 0 - No, 1 - Yes
P431 = 0

# Enable 100rel, 0 - No, 1 - Yes
P435 = 0

# Default Ring Tone. 0 - system ring tone, 1..3 --> custom ring tone 1..3
P423 = 0

# Send Anonymous (caller ID will be blocked if set to Yes). 0 - no, 1 - yes
P421 = 0

# Auto Answer
P425 = 0

# Allow Auto Answer by Call-Info, 0 - No, 1 - Yes (for intercom?)
P438 = 1

# Turn off speaker on remote disconnect, 0 - No, 1 - Yes
P439 = 0

# Codec preference settings (1..8)
# 0 - G711u
# 2 - G.726-32 (supported?)
# 3 - GSM
# 4 - G.723.1
# 8 - G711a
# 9 - G.722 (supported?)
#15 - G.728 (supported?)
#18 - G.729A/B
#98 - iLBC (supported?)
P451 = 18
P452 = 3
P453 = 8
P454 = 0
P455 = 0
P456 = 0
P457 = 0
P458 = 0

# Special feature
# 100 - Standard
# 101 - Nortel MCS
# 102 - Broadsoft
# 108 - CBCOM
# 109 - RNK
# 110 - Sylantro
P424 = 100


# ------------------------------
# ----- Line 3 Settings --------
# ------------------------------

# Account active. 0 - No, 1 - Yes
P501 =

# Account name
P517 =

# SIP Server
P502 =

# Outbound Proxy
P503 =

# SIP User ID
P504 =

# Authentication ID
P505 =

# Authentication password
P506 =

# User Caller Name (John Doe)
P507 =

# Use DNS SRV. 0 - No, 1 - Yes.
P508 = 

# SIP User ID is phone number. 0 - no, 1 - yes
P509 = 0

# SIP Registration. 0 - no, 1 - yes
P510 = 1

# Unregister On Reboot. 0 - no, 1 - yes
P511 = 0

# Register Expiration (in minutes. default 1 hour, max 45 days)
P512 = 60

# Local SIP port
P513 = 5064

# SIP T1 Timeout (1/hundreth seconds)
P540 = 100

# SIP T2 Interval (1/hundreth seconds)
P541 = 400

# NAT Traversal. 0 - yes, 1 - no, 2 - no but send keepalives
P514 = 1

# SUBSCRIBE for MWI. Whether or not send SUBSCRIBE for Message Waiting Indication.  0 - No, 1 - Yes.
P515 = 1

# Voice Mail UserID (User ID/extension for 3rd party voice mail system)
P526 =

# Proxy-Require (A SIP extension to enable firewall penetration)
P518 =

# Send DTMF. 0 - in audio 1 - via RTP(RFC2833) 2 - via SIP INFO
P516 = 1

# Early Dial (use "Yes" only if proxy supports 484 response). 0 - no, 1 - yes
P522 = 0

# Dial Plan (dial plan prefix string)
P519 =

# Enable/Disable Call Features,  0 - No, 1 - Yes.
P520 = 1

# Disable Missed Call, 0 - No, 1 - Yes.
P542 = 0

# Session expiration (in seconds)
P534 = 180

# Min-SE (in seconds)
P527 = 90

# Caller Request Timer 0 - No, 1 - Yes/request for timer when making outbound calls
P528 = 0

# Callee Request Timer 0 - No, 1 - Yes(When caller supports timer but did not request one)
P529 = 0

# Force timer 0 - No, 1 - Yes(Use timer even when remote party does not support)
P530 = 0

# UAC Specify Refresher, 0 - Omit, 1 - UAC, 2 - UAS
P532 = 0

# UAS Specify Refresher, 1 - UAC, 2 - UAS(When UAC did not specify refresher tag)
P533 = 1

# Force INVITE, 0 - No, 1 - Yes
P531 = 0

# Enable 100rel, 0 - No, 1 - Yes
P535 = 0

# Default Ring Tone. 0 - system ring tone, 1..3 --> custom ring tone 1..3
P523 = 0

# Send Anonymous (caller ID will be blocked if set to Yes). 0 - no, 1 - yes
P521 = 0

# Auto Answer
P525 = 0

# Allow Auto Answer by Call-Info, 0 - No, 1 - Yes (for intercom?)
P538 = 1

# Turn off speaker on remote disconnect, 0 - No, 1 - Yes
P539 = 0

# Codec preference settings (1..8)
# 0 - G711u
# 2 - G.726-32 (supported?)
# 3 - GSM
# 4 - G.723.1
# 8 - G711a
# 9 - G.722 (supported?)
#15 - G.728 (supported?)
#18 - G.729A/B
#98 - iLBC (supported?)
P551 = 18
P552 = 3
P553 = 8
P554 = 0
P555 = 0
P556 = 0
P557 = 0
P558 = 0

# Special feature
# 100 - Standard
# 101 - Nortel MCS
# 102 - Broadsoft
# 108 - CBCOM
# 109 - RNK
# 110 - Sylantro
P524 = 100


# ------------------------------
# ----- Line 4 Settings --------
# ------------------------------

# Account active. 0 - No, 1 - Yes
P601 =

# Account name
P617 =

# SIP Server
P602 =

# Outbound Proxy
P603 =

# SIP User ID
P604 =

# Authentication ID
P605 =

# Authentication password
P606 =

# User Caller Name (John Doe)
P607 =

# Use DNS SRV. 0 - No, 1 - Yes.
P608 = 

# SIP User ID is phone number. 0 - no, 1 - yes
P609 = 0

# SIP Registration. 0 - no, 1 - yes
P610 = 1

# Unregister On Reboot. 0 - no, 1 - yes
P611 = 0

# Register Expiration (in minutes. default 1 hour, max 45 days)
P612 = 60

# Local SIP port
P613 = 5066

# SIP T1 Timeout (1/hundreth seconds)
P640 = 100

# SIP T2 Interval (1/hundreth seconds)
P641 = 400

# NAT Traversal. 0 - yes, 1 - no, 2 - no but send keepalives
P614 = 1

# SUBSCRIBE for MWI. Whether or not send SUBSCRIBE for Message Waiting Indication.  0 - No, 1 - Yes.
P615 = 1

# Voice Mail UserID (User ID/extension for 3rd party voice mail system)
P626 =

# Proxy-Require (A SIP extension to enable firewall penetration)
P618 =

# Send DTMF. 0 - in audio 1 - via RTP(RFC2833) 2 - via SIP INFO
P616 = 1

# Early Dial (use "Yes" only if proxy supports 484 response). 0 - no, 1 - yes
P622 = 0

# Dial Plan (dial plan prefix string)
P619 =

# Enable/Disable Call Features,  0 - No, 1 - Yes.
P620 = 1

# Disable Missed Call, 0 - No, 1 - Yes.
P642 = 0

# Session expiration (in seconds)
P634 = 180

# Min-SE (in seconds)
P627 = 90

# Caller Request Timer 0 - No, 1 - Yes/request for timer when making outbound calls
P628 = 0

# Callee Request Timer 0 - No, 1 - Yes(When caller supports timer but did not request one)
P629 = 0

# Force timer 0 - No, 1 - Yes(Use timer even when remote party does not support)
P630 = 0

# UAC Specify Refresher, 0 - Omit, 1 - UAC, 2 - UAS
P632 = 0

# UAS Specify Refresher, 1 - UAC, 2 - UAS(When UAC did not specify refresher tag)
P633 = 1

# Force INVITE, 0 - No, 1 - Yes
P631 = 0

# Enable 100rel, 0 - No, 1 - Yes
P635 = 0

# Default Ring Tone. 0 - system ring tone, 1..3 --> custom ring tone 1..3
P623 = 0

# Send Anonymous (caller ID will be blocked if set to Yes). 0 - no, 1 - yes
P621 = 0

# Auto Answer
P625 = 0

# Allow Auto Answer by Call-Info, 0 - No, 1 - Yes (for intercom?)
P638 = 1

# Turn off speaker on remote disconnect, 0 - No, 1 - Yes
P639 = 0

# Codec preference settings (1..8)
# 0 - G711u
# 2 - G.726-32 (supported?)
# 3 - GSM
# 4 - G.723.1
# 8 - G711a
# 9 - G.722 (supported?)
#15 - G.728 (supported?)
#18 - G.729A/B
#98 - iLBC (supported?)
P651 = 18
P652 = 3
P653 = 8
P654 = 0
P655 = 0
P656 = 0
P657 = 0
P658 = 0

# Special feature
# 100 - Standard
# 101 - Nortel MCS
# 102 - Broadsoft
# 108 - CBCOM
# 109 - RNK
# 110 - Sylantro
P624 = 100