Yealink update templates to be more consistent with each other. Add additional stun and ice settings.
This commit is contained in:
parent
56a6af353d
commit
de8e1e39bd
|
|
@ -0,0 +1,74 @@
|
|||
<YealinkIPPhoneDirectory>
|
||||
{foreach $contacts as $row}
|
||||
{if $smarty.get.contacts == "users" && $row.category == "users"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given != ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number != ""}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "groups" && $row.category == "groups"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given != ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number != ""}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "extensions" && $row.category == "extensions"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given != ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
{if $row.phone_number != ""}
|
||||
<Telephone>{$row.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$row.phone_extension}</Telephone>
|
||||
{/if}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "all"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given != ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
|
||||
{if $row.category == "extensions"}
|
||||
{if $row.phone_number != ""}
|
||||
<Telephone>{$row.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$row.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{else}
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number != ""}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{/if}
|
||||
</DirectoryEntry>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</YealinkIPPhoneDirectory>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<root_favorite_set>
|
||||
<item id_name="localdirectory" display_name="Local Directory" priority="2" enable="0" />
|
||||
<item id_name="history" display_name="History" priority="3" enable="1" />
|
||||
<item id_name="networkcalllog" display_name="Network CallLog" priority="4" enable="0" />
|
||||
<item id_name="remotedirectory" display_name="Remote Phone Book" priority="5" enable="1" />
|
||||
<item id_name="ldap" display_name="LDAP" priority="1" enable="0" />
|
||||
<item id_name="networkdirectory" display_name="Network Directory" priority="6" enable="0" />
|
||||
</root_favorite_set>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,74 @@
|
|||
<YealinkIPPhoneDirectory>
|
||||
{foreach $contacts as $row}
|
||||
{if $smarty.get.contacts == "users" && $row.category == "users"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given != ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number != ""}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "groups" && $row.category == "groups"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given != ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number != ""}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "extensions" && $row.category == "extensions"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given != ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
{if $row.phone_number != ""}
|
||||
<Telephone>{$row.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$row.phone_extension}</Telephone>
|
||||
{/if}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "all"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given != ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
|
||||
{if $row.category == "extensions"}
|
||||
{if $row.phone_number != ""}
|
||||
<Telephone>{$row.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$row.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{else}
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number != ""}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{/if}
|
||||
</DirectoryEntry>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</YealinkIPPhoneDirectory>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<root_favorite_set>
|
||||
<item id_name="localdirectory" display_name="Local Directory" priority="2" enable="0" />
|
||||
<item id_name="history" display_name="History" priority="3" enable="1" />
|
||||
<item id_name="networkcalllog" display_name="Network CallLog" priority="4" enable="0" />
|
||||
<item id_name="remotedirectory" display_name="Remote Phone Book" priority="5" enable="1" />
|
||||
<item id_name="ldap" display_name="LDAP" priority="1" enable="0" />
|
||||
<item id_name="networkdirectory" display_name="Network Directory" priority="6" enable="0" />
|
||||
</root_favorite_set>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -27,9 +27,26 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
##0-ipv4, 1-ipv6, 2-ipv4&ipv6
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
|
||||
#Enable or disable LLDP; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
#Enable or disable CDP; 0-Disabled, 1-Enabled (default);
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
|
||||
#The interval (in seconds) for the IP phone to send CDP requests. Integer from 1 to 3600
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
#Configure the duplex mode and the speed of the WAN port.
|
||||
#0-Auto negotiate (default), 1-Full duplex 10Mbps, 2-Full duplex 100Mbps, 3-Half duplex 10Mbps, 4-Half duplex 100Mbps;
|
||||
network.internet_port.speed_duplex =
|
||||
|
|
@ -107,7 +124,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -308,6 +325,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -540,7 +580,7 @@ remote_phonebook.data.1.name = Users
|
|||
{if isset($yealink_remote_phonebook_1_url) }
|
||||
remote_phonebook.data.1.url = {$yealink_remote_phonebook_1_url}
|
||||
{else}
|
||||
remote_phonebook.data.1.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=users
|
||||
remote_phonebook.data.1.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=users
|
||||
{/if}
|
||||
|
||||
{if isset($yealink_remote_phonebook_2_name) }
|
||||
|
|
@ -551,7 +591,7 @@ remote_phonebook.data.2.name = Groups
|
|||
{if isset($yealink_remote_phonebook_2_url) }
|
||||
remote_phonebook.data.2.url = {$yealink_remote_phonebook_2_url}
|
||||
{else}
|
||||
remote_phonebook.data.2.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=groups
|
||||
remote_phonebook.data.2.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=groups
|
||||
{/if}
|
||||
|
||||
{if isset($yealink_remote_phonebook_3_name) }
|
||||
|
|
@ -562,7 +602,7 @@ remote_phonebook.data.3.name = Extensions
|
|||
{if isset($yealink_remote_phonebook_3_url) }
|
||||
remote_phonebook.data.3.url = {$yealink_remote_phonebook_3_url}
|
||||
{else}
|
||||
remote_phonebook.data.3.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=extensions
|
||||
remote_phonebook.data.3.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=extensions
|
||||
{/if}
|
||||
|
||||
remote_phonebook.data.4.name = {$yealink_remote_phonebook_4_name}
|
||||
|
|
|
|||
|
|
@ -27,9 +27,26 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network ##
|
||||
#######################################################################################
|
||||
##0-ipv4, 1-ipv6, 2-ipv4&ipv6
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
|
||||
#Enable or disable LLDP; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
#Enable or disable CDP; 0-Disabled, 1-Enabled (default);
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
|
||||
#The interval (in seconds) for the IP phone to send CDP requests. Integer from 1 to 3600
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
#Configure the duplex mode and the speed of the WAN port.
|
||||
#0-Auto negotiate (default), 1-Full duplex 10Mbps, 2-Full duplex 100Mbps, 3-Half duplex 10Mbps, 4-Half duplex 100Mbps;
|
||||
network.internet_port.speed_duplex =
|
||||
|
|
@ -38,6 +55,7 @@ network.pc_port.speed_duplex =
|
|||
network.pc_port.dhcp_server = 1
|
||||
{if isset($dns_server_primary)}network.static_dns_enable = 1{else}network.static_dns_enable = 0{/if}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -107,7 +125,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -308,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -540,7 +581,7 @@ remote_phonebook.data.1.name = Users
|
|||
{if isset($yealink_remote_phonebook_1_url) }
|
||||
remote_phonebook.data.1.url = {$yealink_remote_phonebook_1_url}
|
||||
{else}
|
||||
remote_phonebook.data.1.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=users
|
||||
remote_phonebook.data.1.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=users
|
||||
{/if}
|
||||
|
||||
{if isset($yealink_remote_phonebook_2_name) }
|
||||
|
|
@ -551,7 +592,7 @@ remote_phonebook.data.2.name = Groups
|
|||
{if isset($yealink_remote_phonebook_2_url) }
|
||||
remote_phonebook.data.2.url = {$yealink_remote_phonebook_2_url}
|
||||
{else}
|
||||
remote_phonebook.data.2.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=groups
|
||||
remote_phonebook.data.2.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=groups
|
||||
{/if}
|
||||
|
||||
{if isset($yealink_remote_phonebook_3_name) }
|
||||
|
|
@ -562,7 +603,7 @@ remote_phonebook.data.3.name = Extensions
|
|||
{if isset($yealink_remote_phonebook_3_url) }
|
||||
remote_phonebook.data.3.url = {$yealink_remote_phonebook_3_url}
|
||||
{else}
|
||||
remote_phonebook.data.3.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=extensions
|
||||
remote_phonebook.data.3.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=extensions
|
||||
{/if}
|
||||
|
||||
remote_phonebook.data.4.name = {$yealink_remote_phonebook_4_name}
|
||||
|
|
@ -843,7 +884,7 @@ features.pickup.blf_audio_enable =
|
|||
#######################################################################################
|
||||
## Phone Setting ##
|
||||
#######################################################################################
|
||||
#Enable or disable the photo display on handset 0 = disable, 1= enable
|
||||
#Enable or disable the photo display on handset 0 = disable, 1 = enable
|
||||
phone_setting.contact_photo_display.enable = 0
|
||||
|
||||
#Enable or disable the called party information display 0 = disable 1 = enable
|
||||
|
|
@ -1221,7 +1262,7 @@ linekey.27.type =
|
|||
linekey.27.xml_phonebook =
|
||||
linekey.27.label =
|
||||
#######################################################################################
|
||||
## Programable key ##
|
||||
## Programmable key ##
|
||||
#######################################################################################
|
||||
#X ranges from 1 to 13.
|
||||
#programablekey.x.type--Customize the programmable key type.
|
||||
|
|
@ -1567,7 +1608,7 @@ call_list.url =
|
|||
#######################################################################################
|
||||
#Configure the access URL for downloading the open VPN tar.
|
||||
#Before using this parameter, you should store the desired VPN file to the provisioning server
|
||||
openvpn.url =
|
||||
openvpn.url = {$yealink_openvpn_url}
|
||||
|
||||
#######################################################################################
|
||||
## Level ##
|
||||
|
|
@ -1586,10 +1627,11 @@ super_search.url =
|
|||
## Directory Setting ##
|
||||
#######################################################################################
|
||||
#Configure the access URL of the directory setting file.
|
||||
directory_setting.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
|
||||
directory_setting.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
|
||||
|
||||
#######################################################################################
|
||||
## Configure the access URL of firmware ##
|
||||
#######################################################################################
|
||||
#Before using this parameter, you should store the desired firmware (x.71.x.x.rom) to the provisioning server.
|
||||
firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t23p}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,9 +27,26 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
##0-ipv4, 1-ipv6, 2-ipv4&ipv6
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
|
||||
#Enable or disable LLDP; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
#Enable or disable CDP; 0-Disabled, 1-Enabled (default);
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
|
||||
#The interval (in seconds) for the IP phone to send CDP requests. Integer from 1 to 3600
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
#Configure the duplex mode and the speed of the WAN port.
|
||||
#0-Auto negotiate (default), 1-Full duplex 10Mbps, 2-Full duplex 100Mbps, 3-Half duplex 10Mbps, 4-Half duplex 100Mbps;
|
||||
network.internet_port.speed_duplex =
|
||||
|
|
@ -107,7 +124,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -308,6 +325,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -540,7 +580,7 @@ remote_phonebook.data.1.name = Users
|
|||
{if isset($yealink_remote_phonebook_1_url) }
|
||||
remote_phonebook.data.1.url = {$yealink_remote_phonebook_1_url}
|
||||
{else}
|
||||
remote_phonebook.data.1.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=users
|
||||
remote_phonebook.data.1.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=users
|
||||
{/if}
|
||||
|
||||
{if isset($yealink_remote_phonebook_2_name) }
|
||||
|
|
@ -551,7 +591,7 @@ remote_phonebook.data.2.name = Groups
|
|||
{if isset($yealink_remote_phonebook_2_url) }
|
||||
remote_phonebook.data.2.url = {$yealink_remote_phonebook_2_url}
|
||||
{else}
|
||||
remote_phonebook.data.2.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=groups
|
||||
remote_phonebook.data.2.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=groups
|
||||
{/if}
|
||||
|
||||
{if isset($yealink_remote_phonebook_3_name) }
|
||||
|
|
@ -562,7 +602,7 @@ remote_phonebook.data.3.name = Extensions
|
|||
{if isset($yealink_remote_phonebook_3_url) }
|
||||
remote_phonebook.data.3.url = {$yealink_remote_phonebook_3_url}
|
||||
{else}
|
||||
remote_phonebook.data.3.url = http://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=extensions
|
||||
remote_phonebook.data.3.url = https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=directory.xml&contacts=extensions
|
||||
{/if}
|
||||
|
||||
remote_phonebook.data.4.name = {$yealink_remote_phonebook_4_name}
|
||||
|
|
|
|||
|
|
@ -27,9 +27,26 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network ##
|
||||
#######################################################################################
|
||||
##0-ipv4, 1-ipv6, 2-ipv4&ipv6
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
|
||||
#Enable or disable LLDP; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
#Enable or disable CDP; 0-Disabled, 1-Enabled (default);
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
|
||||
#The interval (in seconds) for the IP phone to send CDP requests. Integer from 1 to 3600
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
#Configure the duplex mode and the speed of the WAN port.
|
||||
#0-Auto negotiate (default), 1-Full duplex 10Mbps, 2-Full duplex 100Mbps, 3-Half duplex 10Mbps, 4-Half duplex 100Mbps;
|
||||
network.internet_port.speed_duplex =
|
||||
|
|
@ -38,6 +55,7 @@ network.pc_port.speed_duplex =
|
|||
network.pc_port.dhcp_server = 1
|
||||
{if isset($dns_server_primary)}network.static_dns_enable = 1{else}network.static_dns_enable = 0{/if}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -107,7 +125,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -308,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -843,7 +884,7 @@ features.pickup.blf_audio_enable =
|
|||
#######################################################################################
|
||||
## Phone Setting ##
|
||||
#######################################################################################
|
||||
#Enable or disable the photo display on handset 0 = disable, 1= enable
|
||||
#Enable or disable the photo display on handset 0 = disable, 1 = enable
|
||||
phone_setting.contact_photo_display.enable = 0
|
||||
|
||||
#Enable or disable the called party information display 0 = disable 1 = enable
|
||||
|
|
@ -1221,7 +1262,7 @@ linekey.27.type =
|
|||
linekey.27.xml_phonebook =
|
||||
linekey.27.label =
|
||||
#######################################################################################
|
||||
## Programable key ##
|
||||
## Programmable key ##
|
||||
#######################################################################################
|
||||
#X ranges from 1 to 13.
|
||||
#programablekey.x.type--Customize the programmable key type.
|
||||
|
|
@ -1567,7 +1608,7 @@ call_list.url =
|
|||
#######################################################################################
|
||||
#Configure the access URL for downloading the open VPN tar.
|
||||
#Before using this parameter, you should store the desired VPN file to the provisioning server
|
||||
openvpn.url =
|
||||
openvpn.url = {$yealink_openvpn_url}
|
||||
|
||||
#######################################################################################
|
||||
## Level ##
|
||||
|
|
@ -1593,3 +1634,4 @@ directory_setting.url = https://{if isset($http_auth_username)}{$http_auth_usern
|
|||
#######################################################################################
|
||||
#Before using this parameter, you should store the desired firmware (x.71.x.x.rom) to the provisioning server.
|
||||
firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t27p}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,9 +27,26 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
##0-ipv4, 1-ipv6, 2-ipv4&ipv6
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
|
||||
#Enable or disable LLDP; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
#Enable or disable CDP; 0-Disabled, 1-Enabled (default);
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
|
||||
#The interval (in seconds) for the IP phone to send CDP requests. Integer from 1 to 3600
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
#Configure the duplex mode and the speed of the WAN port.
|
||||
#0-Auto negotiate (default), 1-Full duplex 10Mbps, 2-Full duplex 100Mbps, 3-Half duplex 10Mbps, 4-Half duplex 100Mbps;
|
||||
network.internet_port.speed_duplex =
|
||||
|
|
@ -38,6 +55,7 @@ network.pc_port.speed_duplex =
|
|||
network.pc_port.dhcp_server = 1
|
||||
{if isset($dns_server_primary)}network.static_dns_enable = 1{else}network.static_dns_enable = 0{/if}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -107,7 +125,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -308,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -843,7 +884,7 @@ features.pickup.blf_audio_enable =
|
|||
#######################################################################################
|
||||
## Phone Setting ##
|
||||
#######################################################################################
|
||||
#Enable or disable the photo display on handset 0 = disable, 1= enable
|
||||
#Enable or disable the photo display on handset 0 = disable, 1 = enable
|
||||
phone_setting.contact_photo_display.enable = 0
|
||||
|
||||
#Enable or disable the called party information display 0 = disable 1 = enable
|
||||
|
|
@ -1593,3 +1634,4 @@ directory_setting.url = https://{if isset($http_auth_username)}{$http_auth_usern
|
|||
#######################################################################################
|
||||
#Before using this parameter, you should store the desired firmware (x.71.x.x.rom) to the provisioning server.
|
||||
firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t29g}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,9 +27,26 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
### Network Advanced ##
|
||||
## Network ##
|
||||
#######################################################################################
|
||||
##0-ipv4, 1-ipv6, 2-ipv4&ipv6
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
|
||||
#Enable or disable LLDP; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
#Enable or disable CDP; 0-Disabled, 1-Enabled (default);
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
|
||||
#The interval (in seconds) for the IP phone to send CDP requests. Integer from 1 to 3600
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
#Configure the duplex mode and the speed of the WAN port.
|
||||
#0-Auto negotiate (default), 1-Full duplex 10Mbps, 2-Full duplex 100Mbps, 3-Half duplex 10Mbps, 4-Half duplex 100Mbps;
|
||||
network.internet_port.speed_duplex =
|
||||
|
|
@ -38,6 +55,7 @@ network.pc_port.speed_duplex =
|
|||
network.pc_port.dhcp_server = 1
|
||||
{if isset($dns_server_primary)}network.static_dns_enable = 1{else}network.static_dns_enable = 0{/if}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -57,11 +75,11 @@ network.vlan.pc_port_enable =
|
|||
|
||||
#Configure the VLAN ID, it ranges from 1 to 4094, the default value is 1.
|
||||
#Require reboot;
|
||||
network.vlan.pc_port_vid =
|
||||
network.vlan.pc_port_vid = {$yealink_vlan_pc_id}
|
||||
|
||||
#Configure the VLAN priority, it ranges from 0 (default) to 7.
|
||||
#Require reboot;
|
||||
network.vlan.pc_port_priority =
|
||||
network.vlan.pc_port_priority = {$yealink_vlan_pc_cos}
|
||||
|
||||
#Enable or disable the DHCP to obtain the information of the VLAN; 0-Disabled; 1-Enabled (default);
|
||||
#Require reboot;
|
||||
|
|
@ -107,7 +125,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -297,7 +315,7 @@ watch_dog.enable =
|
|||
sip.use_23_as_pound =
|
||||
|
||||
#Enable or disable the RFC2543 Hold feature; 0-Disabled (default), 1-Enabled;
|
||||
sip.rfc2543_hold =
|
||||
sip.rfc2543_hold = {$yealink_rfc2543_hold}
|
||||
|
||||
#Enable or disable the phone to keep sending the SIP messages to the outbound server; 0-Disabled, 1-Enabled (default);
|
||||
sip.use_out_bound_in_dialog =
|
||||
|
|
@ -308,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -641,8 +682,11 @@ features.group_listen_in_talking_enable =
|
|||
features.call_completion_enable =
|
||||
|
||||
#Enable or disable the phone to dial the IP address directly; 0-Disabled, 1-Enabled (default);
|
||||
features.direct_ip_call_enable = 0
|
||||
sip.trust_ctrl=1
|
||||
features.direct_ip_call_enable = {$yealink_direct_ip_call_enable}
|
||||
sip.trust_ctrl = {$yealink_trust_ctrl}
|
||||
|
||||
#It enables or disables the IP phone to display the feature name instead of the feature access code when dialing and in talk;(0-Disabled;1-Enabled)
|
||||
features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_enable}
|
||||
|
||||
#Configure the power Indicator LED to turn on or turn off; 0-On (default), 1-Off;
|
||||
features.power_led_on = 1
|
||||
|
|
@ -661,6 +705,12 @@ features.idle_talk_power_led_flash_enable =
|
|||
#Enbale or disable the server to release the BLA line automatically; 0-Disabled (default), 1-Enabled;
|
||||
features.auto_release_bla_line =
|
||||
|
||||
#It enables or disables the IP phone to display the pop-up message box when it receives a new voice mail.
|
||||
features.voice_mail_popup.enable = {$yealink_voice_mail_popup_enable}
|
||||
|
||||
#It enables or disables the IP phone to display the pop-up message box when it misses a call.
|
||||
features.missed_call_popup.enable = {$yealink_missed_call_popup_enable}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features FWD ##
|
||||
|
|
@ -685,7 +735,7 @@ features.dnd.emergency_authorized_number =
|
|||
## Features BLF ##
|
||||
#######################################################################################
|
||||
#Configure the LED flashing mode of the BLF key (line key). The value is 0(default) or 1.
|
||||
features.blf_led_mode =
|
||||
features.blf_led_mode = {$yealink_blf_led_mode}
|
||||
|
||||
features.blf_list_version = 0
|
||||
features.blf_and_callpark_idle_led_enable = 0
|
||||
|
|
@ -834,7 +884,7 @@ features.pickup.blf_audio_enable =
|
|||
#######################################################################################
|
||||
## Phone Setting ##
|
||||
#######################################################################################
|
||||
#Enable or disable the photo display on handset 0 = disable, 1 = enable
|
||||
#Enable or disable the photo display on handset 0 = disable, 1= enable
|
||||
phone_setting.contact_photo_display.enable = 0
|
||||
|
||||
#Enable or disable the called party information display 0 = disable 1 = enable
|
||||
|
|
@ -881,8 +931,8 @@ phone_setting.headsetkey_mode =
|
|||
#Enable or disabled mail power led flash. 0-Disabled, 1-Enabled.
|
||||
phone_setting.mail_power_led_flash_enable = 1
|
||||
|
||||
#Disable missed call power led flash 0-Disabled, 1-Enabled
|
||||
phone_setting.missed_call_power_led_flash.enable = 0
|
||||
#It enables or disables the power indicator LED to flash when the IP phone misses a call.
|
||||
phone_setting.missed_call_power_led_flash.enable = {$yealink_missed_call_power_led_flash_enable}
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting UI ##
|
||||
|
|
@ -1212,7 +1262,7 @@ linekey.27.type =
|
|||
linekey.27.xml_phonebook =
|
||||
linekey.27.label =
|
||||
#######################################################################################
|
||||
## Programablekey ##
|
||||
## Programable key ##
|
||||
#######################################################################################
|
||||
#X ranges from 1 to 13.
|
||||
#programablekey.x.type--Customize the programmable key type.
|
||||
|
|
@ -1496,7 +1546,7 @@ server_certificates.delete =
|
|||
## Contact ##
|
||||
#######################################################################################
|
||||
#Before using these parameters, you should store the desired resource files to the provisioning server.
|
||||
#For more information, refer to Yealink SIP-T46G IP Phone Family Administrator Guide.
|
||||
#For more information, refer to Yealink SIP-T40G IP Phone Family Administrator Guide.
|
||||
local_contact.data.url =
|
||||
|
||||
#######################################################################################
|
||||
|
|
|
|||
|
|
@ -27,9 +27,26 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
### Network Advanced ##
|
||||
## Network ##
|
||||
#######################################################################################
|
||||
##0-ipv4, 1-ipv6, 2-ipv4&ipv6
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
|
||||
#Enable or disable LLDP; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
#Enable or disable CDP; 0-Disabled, 1-Enabled (default);
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
|
||||
#The interval (in seconds) for the IP phone to send CDP requests. Integer from 1 to 3600
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
#Configure the duplex mode and the speed of the WAN port.
|
||||
#0-Auto negotiate (default), 1-Full duplex 10Mbps, 2-Full duplex 100Mbps, 3-Half duplex 10Mbps, 4-Half duplex 100Mbps;
|
||||
network.internet_port.speed_duplex =
|
||||
|
|
@ -38,6 +55,7 @@ network.pc_port.speed_duplex =
|
|||
network.pc_port.dhcp_server = 1
|
||||
{if isset($dns_server_primary)}network.static_dns_enable = 1{else}network.static_dns_enable = 0{/if}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -57,11 +75,11 @@ network.vlan.pc_port_enable =
|
|||
|
||||
#Configure the VLAN ID, it ranges from 1 to 4094, the default value is 1.
|
||||
#Require reboot;
|
||||
network.vlan.pc_port_vid =
|
||||
network.vlan.pc_port_vid = {$yealink_vlan_pc_id}
|
||||
|
||||
#Configure the VLAN priority, it ranges from 0 (default) to 7.
|
||||
#Require reboot;
|
||||
network.vlan.pc_port_priority =
|
||||
network.vlan.pc_port_priority = {$yealink_vlan_pc_cos}
|
||||
|
||||
#Enable or disable the DHCP to obtain the information of the VLAN; 0-Disabled; 1-Enabled (default);
|
||||
#Require reboot;
|
||||
|
|
@ -107,7 +125,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -297,7 +315,7 @@ watch_dog.enable =
|
|||
sip.use_23_as_pound =
|
||||
|
||||
#Enable or disable the RFC2543 Hold feature; 0-Disabled (default), 1-Enabled;
|
||||
sip.rfc2543_hold =
|
||||
sip.rfc2543_hold = {$yealink_rfc2543_hold}
|
||||
|
||||
#Enable or disable the phone to keep sending the SIP messages to the outbound server; 0-Disabled, 1-Enabled (default);
|
||||
sip.use_out_bound_in_dialog =
|
||||
|
|
@ -308,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -641,8 +682,11 @@ features.group_listen_in_talking_enable =
|
|||
features.call_completion_enable =
|
||||
|
||||
#Enable or disable the phone to dial the IP address directly; 0-Disabled, 1-Enabled (default);
|
||||
features.direct_ip_call_enable = 0
|
||||
sip.trust_ctrl=1
|
||||
features.direct_ip_call_enable = {$yealink_direct_ip_call_enable}
|
||||
sip.trust_ctrl = {$yealink_trust_ctrl}
|
||||
|
||||
#It enables or disables the IP phone to display the feature name instead of the feature access code when dialing and in talk;(0-Disabled;1-Enabled)
|
||||
features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_enable}
|
||||
|
||||
#Configure the power Indicator LED to turn on or turn off; 0-On (default), 1-Off;
|
||||
features.power_led_on = 1
|
||||
|
|
@ -661,6 +705,12 @@ features.idle_talk_power_led_flash_enable =
|
|||
#Enbale or disable the server to release the BLA line automatically; 0-Disabled (default), 1-Enabled;
|
||||
features.auto_release_bla_line =
|
||||
|
||||
#It enables or disables the IP phone to display the pop-up message box when it receives a new voice mail.
|
||||
features.voice_mail_popup.enable = {$yealink_voice_mail_popup_enable}
|
||||
|
||||
#It enables or disables the IP phone to display the pop-up message box when it misses a call.
|
||||
features.missed_call_popup.enable = {$yealink_missed_call_popup_enable}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features FWD ##
|
||||
|
|
@ -685,7 +735,7 @@ features.dnd.emergency_authorized_number =
|
|||
## Features BLF ##
|
||||
#######################################################################################
|
||||
#Configure the LED flashing mode of the BLF key (line key). The value is 0(default) or 1.
|
||||
features.blf_led_mode =
|
||||
features.blf_led_mode = {$yealink_blf_led_mode}
|
||||
|
||||
features.blf_list_version = 0
|
||||
features.blf_and_callpark_idle_led_enable = 0
|
||||
|
|
@ -881,8 +931,8 @@ phone_setting.headsetkey_mode =
|
|||
#Enable or disabled mail power led flash. 0-Disabled, 1-Enabled.
|
||||
phone_setting.mail_power_led_flash_enable = 1
|
||||
|
||||
#Disable missed call power led flash 0-Disabled, 1-Enabled
|
||||
phone_setting.missed_call_power_led_flash.enable = 0
|
||||
#It enables or disables the power indicator LED to flash when the IP phone misses a call.
|
||||
phone_setting.missed_call_power_led_flash.enable = {$yealink_missed_call_power_led_flash_enable}
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting UI ##
|
||||
|
|
@ -1212,7 +1262,7 @@ linekey.27.type =
|
|||
linekey.27.xml_phonebook =
|
||||
linekey.27.label =
|
||||
#######################################################################################
|
||||
## Programablekey ##
|
||||
## Programable key ##
|
||||
#######################################################################################
|
||||
#X ranges from 1 to 13.
|
||||
#programablekey.x.type--Customize the programmable key type.
|
||||
|
|
@ -1496,7 +1546,7 @@ server_certificates.delete =
|
|||
## Contact ##
|
||||
#######################################################################################
|
||||
#Before using these parameters, you should store the desired resource files to the provisioning server.
|
||||
#For more information, refer to Yealink SIP-T46G IP Phone Family Administrator Guide.
|
||||
#For more information, refer to Yealink SIP-T40p IP Phone Family Administrator Guide.
|
||||
local_contact.data.url =
|
||||
|
||||
#######################################################################################
|
||||
|
|
|
|||
|
|
@ -27,9 +27,26 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network ##
|
||||
#######################################################################################
|
||||
##0-ipv4, 1-ipv6, 2-ipv4&ipv6
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
|
||||
#Enable or disable LLDP; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
#Enable or disable CDP; 0-Disabled, 1-Enabled (default);
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
|
||||
#The interval (in seconds) for the IP phone to send CDP requests. Integer from 1 to 3600
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
#Configure the duplex mode and the speed of the WAN port.
|
||||
#0-Auto negotiate (default), 1-Full duplex 10Mbps, 2-Full duplex 100Mbps, 3-Half duplex 10Mbps, 4-Half duplex 100Mbps;
|
||||
network.internet_port.speed_duplex =
|
||||
|
|
@ -38,6 +55,7 @@ network.pc_port.speed_duplex =
|
|||
network.pc_port.dhcp_server = 1
|
||||
{if isset($dns_server_primary)}network.static_dns_enable = 1{else}network.static_dns_enable = 0{/if}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -107,7 +125,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -308,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -843,7 +884,7 @@ features.pickup.blf_audio_enable =
|
|||
#######################################################################################
|
||||
## Phone Setting ##
|
||||
#######################################################################################
|
||||
#Enable or disable the photo display on handset 0 = disable, 1= enable
|
||||
#Enable or disable the photo display on handset 0 = disable, 1 = enable
|
||||
phone_setting.contact_photo_display.enable = 0
|
||||
|
||||
#Enable or disable the called party information display 0 = disable 1 = enable
|
||||
|
|
@ -1593,3 +1634,4 @@ directory_setting.url = https://{if isset($http_auth_username)}{$http_auth_usern
|
|||
#######################################################################################
|
||||
#Before using this parameter, you should store the desired firmware (x.71.x.x.rom) to the provisioning server.
|
||||
firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t41p}
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -125,7 +125,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -326,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -861,7 +884,7 @@ features.pickup.blf_audio_enable =
|
|||
#######################################################################################
|
||||
## Phone Setting ##
|
||||
#######################################################################################
|
||||
#Enable or disable the photo display on handset 0 = disable, 1= enable
|
||||
#Enable or disable the photo display on handset 0 = disable, 1 = enable
|
||||
phone_setting.contact_photo_display.enable = 0
|
||||
|
||||
#Enable or disable the called party information display 0 = disable 1 = enable
|
||||
|
|
@ -1239,7 +1262,7 @@ linekey.27.type =
|
|||
linekey.27.xml_phonebook =
|
||||
linekey.27.label =
|
||||
#######################################################################################
|
||||
## Programable key ##
|
||||
## Programmable key ##
|
||||
#######################################################################################
|
||||
#X ranges from 1 to 13.
|
||||
#programablekey.x.type--Customize the programmable key type.
|
||||
|
|
@ -1585,7 +1608,7 @@ call_list.url =
|
|||
#######################################################################################
|
||||
#Configure the access URL for downloading the open VPN tar.
|
||||
#Before using this parameter, you should store the desired VPN file to the provisioning server
|
||||
openvpn.url =
|
||||
openvpn.url = {$yealink_openvpn_url}
|
||||
|
||||
#######################################################################################
|
||||
## Level ##
|
||||
|
|
@ -1611,3 +1634,4 @@ directory_setting.url = https://{if isset($http_auth_username)}{$http_auth_usern
|
|||
#######################################################################################
|
||||
#Before using this parameter, you should store the desired firmware (x.71.x.x.rom) to the provisioning server.
|
||||
firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t42g}
|
||||
|
||||
|
|
|
|||
|
|
@ -100,7 +100,6 @@ static.network.vlan.dhcp_enable =
|
|||
static.network.vlan.dhcp_option =
|
||||
static.network.vlan.vlan_change.enable =
|
||||
|
||||
|
||||
static.network.vlan.pc_port_priority = {$yealink_vlan_pc_cos}
|
||||
static.network.vlan.pc_port_vid = {$yealink_vlan_pc_id}
|
||||
static.network.vlan.pc_port_enable =
|
||||
|
|
@ -319,7 +318,6 @@ static.auto_provision.local_log.backup.append.max_file_size =
|
|||
static.auto_provision.local_log.backup.append.limit_mode=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
|
|
@ -357,12 +355,14 @@ security.tls_cipher_list =
|
|||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
|
|
@ -370,7 +370,6 @@ static.trusted_certificates.url =
|
|||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
|
|
@ -385,8 +384,6 @@ static.auto_provision.encryption.call_log =
|
|||
static.auto_provision.encryption.config =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
|
|
@ -407,14 +404,12 @@ features.local_conf.combine_with_one_press.enable=
|
|||
phone_setting.call_appearance.conference_via_new_linekey=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
|
|
@ -461,6 +456,7 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
|
|
@ -501,6 +497,7 @@ features.dtmf.min_interval=
|
|||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
|
|
@ -519,6 +516,7 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
|
|
@ -532,6 +530,7 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -539,6 +538,7 @@ voice.echo_cancellation =
|
|||
voice.cng =
|
||||
voice.vad =
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Backup Server ##
|
||||
################################################################
|
||||
|
|
@ -561,6 +561,7 @@ sip.unreg_with_socket_close=
|
|||
phone_setting.disable_account_without_username.enable=
|
||||
features.auto_answer.first_call_only=
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Advanced config ##
|
||||
################################################################
|
||||
|
|
@ -616,6 +617,7 @@ sip.nat_turn.password =
|
|||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
|
|
@ -636,6 +638,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -745,7 +748,6 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
|
|
@ -816,7 +818,6 @@ directory_setting.local_directory.priority =
|
|||
#programablekey.X.extension
|
||||
##Programablekey X ranges(T48G/T48S/T46G/T46S: X=1-10, 12-14;T42G/T42S/T41P/T41S/T40P/T40G: X=1-10, 13;T29G/T27P/T27G: X=1-14;T23P/T23G/T21(P) E2: 1-10, 14;T19(P) E2: X=1-9, 13, 14;)##
|
||||
|
||||
|
||||
programablekey.1.type =
|
||||
programablekey.1.label =
|
||||
programablekey.1.value =
|
||||
|
|
@ -826,6 +827,7 @@ programablekey.1.xml_phonebook =
|
|||
programablekey.1.pickup_value =
|
||||
programablekey.1.extension =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
|
|
@ -863,6 +865,7 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dsskey ##
|
||||
#######################################################################################
|
||||
|
|
@ -877,7 +880,6 @@ features.keep_switch_page_key.enable=
|
|||
phone_setting.idle_dsskey_and_title.transparency=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -926,6 +928,7 @@ expansion_module.2.key.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
expansion_module.2.key.{$row.device_key_id}.xml_phonebook =
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## EDK ##
|
||||
#######################################################################################
|
||||
|
|
@ -960,7 +963,6 @@ edk.edkprompt.1.type=
|
|||
edk.edkprompt.1.userfeedback=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
|
|
@ -995,7 +997,6 @@ forward.idle_access_always_fwd.enable=
|
|||
features.forward_call_popup.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
|
|
@ -1021,7 +1022,6 @@ phone_setting.emergency.number = {$yealink_emergency_number}
|
|||
phone_setting.phone_lock.lock_time_out = {$yealink_lock_timeout}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
|
|
@ -1051,7 +1051,6 @@ features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_
|
|||
voice_mail.number.1=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
|
|
@ -1059,8 +1058,6 @@ features.text_message.enable=
|
|||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
|
|
@ -1086,7 +1083,6 @@ features.intercom.barge=
|
|||
features.intercom.tone=
|
||||
features.intercom.mute=
|
||||
|
||||
|
||||
voice.handset_send=
|
||||
voice.handfree_send =
|
||||
voice.headset_send =
|
||||
|
|
@ -1094,8 +1090,6 @@ features.intercom.headset_prior.enable=
|
|||
features.ringer_device.is_use_headset=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
|
|
@ -1134,7 +1128,6 @@ auto_redial.times=
|
|||
auto_redial.interval=
|
||||
auto_redial.enable=
|
||||
|
||||
|
||||
sip.rfc2543_hold = {$yealink_rfc2543_hold}
|
||||
sip.use_23_as_pound=
|
||||
forward.international.enable=
|
||||
|
|
@ -1142,6 +1135,7 @@ phone_setting.headsetkey_mode=
|
|||
phone_setting.is_deal180=
|
||||
phone_setting.change_183_to_180=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1195,7 +1189,6 @@ action_url.transfer_call =
|
|||
action_url.unregistered =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
|
|
@ -1232,7 +1225,6 @@ local_time.time_zone = {$yealink_time_zone}
|
|||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
|
|
@ -1290,6 +1282,7 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
|
|
@ -1306,8 +1299,6 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1326,7 +1317,6 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1346,6 +1336,7 @@ dialplan.area_code.max_len = 15
|
|||
dialplan.area_code.min_len = 1
|
||||
dialplan.area_code.code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Rings Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1371,6 +1362,7 @@ distinctive_ring_tones.alert_info.8.ringer = {$yealink_ring_file_8}
|
|||
distinctive_ring_tones.alert_info.9.ringer = {$yealink_ring_file_9}
|
||||
distinctive_ring_tones.alert_info.10.ringer = {$yealink_ring_file_10}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## IME Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1378,6 +1370,7 @@ directory.search_default_input_method=
|
|||
directory.edit_default_input_method=
|
||||
gui_input_method.url=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1407,7 +1400,6 @@ screensaver.wait_time=
|
|||
screensaver.xml_browser.url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Saving ##
|
||||
#######################################################################################
|
||||
|
|
@ -1438,7 +1430,7 @@ features.power_saving.intelligent_mode=
|
|||
##Single File Size: <=5MB
|
||||
##2MB of space should bereserved for the phone
|
||||
|
||||
wallpaper_upload.url = {$yealink_t46s_wallpaper}
|
||||
wallpaper_upload.url = {$yealink_t42s_wallpaper}
|
||||
phone_setting.backgrounds=
|
||||
|
||||
## phone_setting.backgrounds_with_dsskey_unfold(Only support T48G/S)
|
||||
|
|
@ -1453,6 +1445,7 @@ expansion_module.backgrounds=
|
|||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
|
|
@ -1501,6 +1494,7 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode = {$yealink_blf_led_mode}
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
|
|
@ -1508,7 +1502,6 @@ features.auto_release_bla_line=
|
|||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
|
|
@ -1532,8 +1525,6 @@ acd.enable=
|
|||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1567,7 +1558,6 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
|
|
@ -1580,8 +1570,6 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
|
|
@ -1596,7 +1584,6 @@ voice_mail.message_key.mode=
|
|||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
|
|
@ -1615,7 +1602,6 @@ features.call_decline.enable =
|
|||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
|
|
@ -1645,8 +1631,6 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ network.secondary_dns = {$dns_server_secondary}
|
|||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network ##
|
||||
#######################################################################################
|
||||
|
|
@ -54,6 +55,7 @@ network.pc_port.speed_duplex =
|
|||
network.pc_port.dhcp_server = 1
|
||||
{if isset($dns_server_primary)}network.static_dns_enable = 1{else}network.static_dns_enable = 0{/if}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -125,6 +127,17 @@ network.802_1x.client_cert_url =
|
|||
#Require reboot;
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
#######################################################################################
|
||||
#Enable or disable the LLDP feature; 0-Disabled, 1-Enabled (default);
|
||||
#Require reboot;
|
||||
network.lldp.enable =
|
||||
|
||||
#Configure the interval(in seconds) the phone broadcasts the LLDP request. It ranges from 1 to 3600, the default value is 60.
|
||||
#Require reboot;
|
||||
network.lldp.packet_interval =
|
||||
|
||||
#######################################################################################
|
||||
## SNMP ##
|
||||
#######################################################################################
|
||||
|
|
@ -313,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -848,7 +884,7 @@ features.pickup.blf_audio_enable =
|
|||
#######################################################################################
|
||||
## Phone Setting ##
|
||||
#######################################################################################
|
||||
#Enable or disable the photo display on handset 0 = disable, 1= enable
|
||||
#Enable or disable the photo display on handset 0 = disable, 1 = enable
|
||||
phone_setting.contact_photo_display.enable = 0
|
||||
|
||||
#Enable or disable the called party information display 0 = disable 1 = enable
|
||||
|
|
@ -1226,7 +1262,7 @@ linekey.27.type =
|
|||
linekey.27.xml_phonebook =
|
||||
linekey.27.label =
|
||||
#######################################################################################
|
||||
## Programablekey ##
|
||||
## Programmable key ##
|
||||
#######################################################################################
|
||||
#X ranges from 1 to 13.
|
||||
#programablekey.x.type--Customize the programmable key type.
|
||||
|
|
@ -1598,3 +1634,4 @@ directory_setting.url = https://{if isset($http_auth_username)}{$http_auth_usern
|
|||
#######################################################################################
|
||||
#Before using this parameter, you should store the desired firmware (x.71.x.x.rom) to the provisioning server.
|
||||
firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t46g}
|
||||
|
||||
|
|
|
|||
|
|
@ -169,19 +169,20 @@ static.auto_provision.weekly_upgrade_interval =
|
|||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Flexible Autop ##
|
||||
#######################################################################################
|
||||
|
|
@ -190,6 +191,7 @@ static.auto_provision.flexible.begin_time =
|
|||
static.auto_provision.flexible.interval =
|
||||
static.auto_provision.flexible.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision Other ##
|
||||
#######################################################################################
|
||||
|
|
@ -215,13 +217,13 @@ static.auto_provision.aes_key_16.mac =
|
|||
static.auto_provision.aes_key_16.com =
|
||||
features.custom_version_info =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
|
|
@ -243,7 +245,6 @@ static.autoprovision.1.com_aes =
|
|||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
|
|
@ -258,8 +259,6 @@ static.managementserver.connection_request_password =
|
|||
static.managementserver.connection_request_username =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Redirect ##
|
||||
#######################################################################################
|
||||
|
|
@ -319,7 +318,6 @@ static.auto_provision.local_log.backup.append.max_file_size =
|
|||
static.auto_provision.local_log.backup.append.limit_mode=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
|
|
@ -357,12 +355,14 @@ security.tls_cipher_list =
|
|||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
|
|
@ -370,7 +370,6 @@ static.trusted_certificates.url =
|
|||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
|
|
@ -385,8 +384,6 @@ static.auto_provision.encryption.call_log =
|
|||
static.auto_provision.encryption.config =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
|
|
@ -407,14 +404,12 @@ features.local_conf.combine_with_one_press.enable=
|
|||
phone_setting.call_appearance.conference_via_new_linekey=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
|
|
@ -461,6 +456,7 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
|
|
@ -501,6 +497,7 @@ features.dtmf.min_interval=
|
|||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
|
|
@ -519,6 +516,7 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
|
|
@ -532,6 +530,7 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -539,6 +538,7 @@ voice.echo_cancellation =
|
|||
voice.cng =
|
||||
voice.vad =
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Backup Server ##
|
||||
################################################################
|
||||
|
|
@ -561,6 +561,7 @@ sip.unreg_with_socket_close=
|
|||
phone_setting.disable_account_without_username.enable=
|
||||
features.auto_answer.first_call_only=
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Advanced config ##
|
||||
################################################################
|
||||
|
|
@ -637,6 +638,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -746,7 +748,6 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
|
|
@ -817,7 +818,6 @@ directory_setting.local_directory.priority =
|
|||
#programablekey.X.extension
|
||||
##Programablekey X ranges(T48G/T48S/T46G/T46S: X=1-10, 12-14;T42G/T42S/T41P/T41S/T40P/T40G: X=1-10, 13;T29G/T27P/T27G: X=1-14;T23P/T23G/T21(P) E2: 1-10, 14;T19(P) E2: X=1-9, 13, 14;)##
|
||||
|
||||
|
||||
programablekey.1.type =
|
||||
programablekey.1.label =
|
||||
programablekey.1.value =
|
||||
|
|
@ -827,6 +827,7 @@ programablekey.1.xml_phonebook =
|
|||
programablekey.1.pickup_value =
|
||||
programablekey.1.extension =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
|
|
@ -864,6 +865,7 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dsskey ##
|
||||
#######################################################################################
|
||||
|
|
@ -878,7 +880,6 @@ features.keep_switch_page_key.enable=
|
|||
phone_setting.idle_dsskey_and_title.transparency=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -927,6 +928,7 @@ expansion_module.2.key.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
expansion_module.2.key.{$row.device_key_id}.xml_phonebook =
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## EDK ##
|
||||
#######################################################################################
|
||||
|
|
@ -961,7 +963,6 @@ edk.edkprompt.1.type=
|
|||
edk.edkprompt.1.userfeedback=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
|
|
@ -996,7 +997,6 @@ forward.idle_access_always_fwd.enable=
|
|||
features.forward_call_popup.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
|
|
@ -1022,7 +1022,6 @@ phone_setting.emergency.number = {$yealink_emergency_number}
|
|||
phone_setting.phone_lock.lock_time_out = {$yealink_lock_timeout}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
|
|
@ -1052,7 +1051,6 @@ features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_
|
|||
voice_mail.number.1=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
|
|
@ -1060,8 +1058,6 @@ features.text_message.enable=
|
|||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
|
|
@ -1087,7 +1083,6 @@ features.intercom.barge=
|
|||
features.intercom.tone=
|
||||
features.intercom.mute=
|
||||
|
||||
|
||||
voice.handset_send=
|
||||
voice.handfree_send =
|
||||
voice.headset_send =
|
||||
|
|
@ -1095,8 +1090,6 @@ features.intercom.headset_prior.enable=
|
|||
features.ringer_device.is_use_headset=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
|
|
@ -1135,7 +1128,6 @@ auto_redial.times=
|
|||
auto_redial.interval=
|
||||
auto_redial.enable=
|
||||
|
||||
|
||||
sip.rfc2543_hold = {$yealink_rfc2543_hold}
|
||||
sip.use_23_as_pound=
|
||||
forward.international.enable=
|
||||
|
|
@ -1143,6 +1135,7 @@ phone_setting.headsetkey_mode=
|
|||
phone_setting.is_deal180=
|
||||
phone_setting.change_183_to_180=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1196,7 +1189,6 @@ action_url.transfer_call =
|
|||
action_url.unregistered =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
|
|
@ -1233,7 +1225,6 @@ local_time.time_zone = {$yealink_time_zone}
|
|||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
|
|
@ -1291,6 +1282,7 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
|
|
@ -1307,8 +1299,6 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1327,7 +1317,6 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1347,6 +1336,7 @@ dialplan.area_code.max_len = 15
|
|||
dialplan.area_code.min_len = 1
|
||||
dialplan.area_code.code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Rings Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1372,6 +1362,7 @@ distinctive_ring_tones.alert_info.8.ringer = {$yealink_ring_file_8}
|
|||
distinctive_ring_tones.alert_info.9.ringer = {$yealink_ring_file_9}
|
||||
distinctive_ring_tones.alert_info.10.ringer = {$yealink_ring_file_10}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## IME Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1379,6 +1370,7 @@ directory.search_default_input_method=
|
|||
directory.edit_default_input_method=
|
||||
gui_input_method.url=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1408,7 +1400,6 @@ screensaver.wait_time=
|
|||
screensaver.xml_browser.url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Saving ##
|
||||
#######################################################################################
|
||||
|
|
@ -1454,6 +1445,7 @@ expansion_module.backgrounds=
|
|||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
|
|
@ -1502,6 +1494,7 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode = {$yealink_blf_led_mode}
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
|
|
@ -1509,7 +1502,6 @@ features.auto_release_bla_line=
|
|||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
|
|
@ -1533,8 +1525,6 @@ acd.enable=
|
|||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1568,7 +1558,6 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
|
|
@ -1581,8 +1570,6 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
|
|
@ -1597,7 +1584,6 @@ voice_mail.message_key.mode=
|
|||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
|
|
@ -1616,7 +1602,6 @@ features.call_decline.enable =
|
|||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
|
|
@ -1646,8 +1631,6 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
|
|
@ -1692,3 +1675,4 @@ directory_setting.gb_pab_directory.enable =
|
|||
directory_setting.gb_pab_directory.priority =
|
||||
search_in_dialing.gb_pab_directory.priority =
|
||||
search_in_dialing.gb_pab_directory.enable =
|
||||
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ network.802_1x.client_cert_url =
|
|||
#######################################################################################
|
||||
#Enable or disable the VPN feature; 0-Disabled (default), 1-Enabled;
|
||||
#Require reboot;
|
||||
network.vpn_enable =
|
||||
network.vpn_enable = {$yealink_network_vpn_enable}
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
|
|
@ -326,6 +326,29 @@ sip.reg_surge_prevention =
|
|||
#Configures the local SIP port. Integer from 1024 to 65535
|
||||
{if isset($yealink_sip_listen_port)}sip.listen_port = {$yealink_sip_listen_port}{else}sip.listen_port = 5060{/if}
|
||||
|
||||
|
||||
################################################################
|
||||
# NAT&ICE ##
|
||||
################################################################
|
||||
network.static_nat.enable = {if isset($yealink_static_nat)}1{else}0{/if}
|
||||
|
||||
network.static_nat.addr = {$yealink_static_nat}
|
||||
|
||||
ice.enable =
|
||||
|
||||
sip.nat_stun.enable = {if isset($stun_server)}1{else}0{/if}
|
||||
|
||||
sip.nat_stun.server = {$stun_server}
|
||||
sip.nat_stun.port = {if isset($stun_port)}{$stun_port}{else}3478{/if}
|
||||
|
||||
|
||||
sip.nat_turn.enable =
|
||||
sip.nat_turn.username =
|
||||
sip.nat_turn.password =
|
||||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -688,6 +711,7 @@ features.voice_mail_popup.enable = {$yealink_voice_mail_popup_enable}
|
|||
#It enables or disables the IP phone to display the pop-up message box when it misses a call.
|
||||
features.missed_call_popup.enable = {$yealink_missed_call_popup_enable}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features FWD ##
|
||||
#######################################################################################
|
||||
|
|
@ -860,7 +884,7 @@ features.pickup.blf_audio_enable =
|
|||
#######################################################################################
|
||||
## Phone Setting ##
|
||||
#######################################################################################
|
||||
#Enable or disable the photo display on handset 0 = disable, 1= enable
|
||||
#Enable or disable the photo display on handset 0 = disable, 1 = enable
|
||||
phone_setting.contact_photo_display.enable = 0
|
||||
|
||||
#Enable or disable the called party information display 0 = disable 1 = enable
|
||||
|
|
@ -1584,7 +1608,7 @@ call_list.url =
|
|||
#######################################################################################
|
||||
#Configure the access URL for downloading the open VPN tar.
|
||||
#Before using this parameter, you should store the desired VPN file to the provisioning server
|
||||
openvpn.url =
|
||||
openvpn.url = {$yealink_openvpn_url}
|
||||
|
||||
#######################################################################################
|
||||
## Level ##
|
||||
|
|
|
|||
|
|
@ -370,7 +370,6 @@ static.trusted_certificates.url =
|
|||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
|
|
@ -457,6 +456,7 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
|
|
@ -497,6 +497,7 @@ features.dtmf.min_interval=
|
|||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
|
|
@ -515,6 +516,7 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
|
|
@ -528,6 +530,7 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -535,6 +538,7 @@ voice.echo_cancellation =
|
|||
voice.cng =
|
||||
voice.vad =
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Backup Server ##
|
||||
################################################################
|
||||
|
|
@ -557,6 +561,7 @@ sip.unreg_with_socket_close=
|
|||
phone_setting.disable_account_without_username.enable=
|
||||
features.auto_answer.first_call_only=
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Advanced config ##
|
||||
################################################################
|
||||
|
|
@ -612,6 +617,7 @@ sip.nat_turn.password =
|
|||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
|
|
@ -632,6 +638,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -741,7 +748,6 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
|
|
@ -812,7 +818,6 @@ directory_setting.local_directory.priority =
|
|||
#programablekey.X.extension
|
||||
##Programablekey X ranges(T48G/T48S/T46G/T46S: X=1-10, 12-14;T42G/T42S/T41P/T41S/T40P/T40G: X=1-10, 13;T29G/T27P/T27G: X=1-14;T23P/T23G/T21(P) E2: 1-10, 14;T19(P) E2: X=1-9, 13, 14;)##
|
||||
|
||||
|
||||
programablekey.1.type =
|
||||
programablekey.1.label =
|
||||
programablekey.1.value =
|
||||
|
|
@ -822,6 +827,7 @@ programablekey.1.xml_phonebook =
|
|||
programablekey.1.pickup_value =
|
||||
programablekey.1.extension =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
|
|
@ -859,6 +865,7 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dsskey ##
|
||||
#######################################################################################
|
||||
|
|
@ -873,7 +880,6 @@ features.keep_switch_page_key.enable=
|
|||
phone_setting.idle_dsskey_and_title.transparency=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -922,6 +928,7 @@ expansion_module.2.key.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
expansion_module.2.key.{$row.device_key_id}.xml_phonebook =
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## EDK ##
|
||||
#######################################################################################
|
||||
|
|
@ -956,7 +963,6 @@ edk.edkprompt.1.type=
|
|||
edk.edkprompt.1.userfeedback=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
|
|
@ -991,7 +997,6 @@ forward.idle_access_always_fwd.enable=
|
|||
features.forward_call_popup.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
|
|
@ -1017,7 +1022,6 @@ phone_setting.emergency.number = {$yealink_emergency_number}
|
|||
phone_setting.phone_lock.lock_time_out = {$yealink_lock_timeout}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
|
|
@ -1047,7 +1051,6 @@ features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_
|
|||
voice_mail.number.1=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
|
|
@ -1055,8 +1058,6 @@ features.text_message.enable=
|
|||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
|
|
@ -1082,7 +1083,6 @@ features.intercom.barge=
|
|||
features.intercom.tone=
|
||||
features.intercom.mute=
|
||||
|
||||
|
||||
voice.handset_send=
|
||||
voice.handfree_send =
|
||||
voice.headset_send =
|
||||
|
|
@ -1090,8 +1090,6 @@ features.intercom.headset_prior.enable=
|
|||
features.ringer_device.is_use_headset=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
|
|
@ -1130,7 +1128,6 @@ auto_redial.times=
|
|||
auto_redial.interval=
|
||||
auto_redial.enable=
|
||||
|
||||
|
||||
sip.rfc2543_hold = {$yealink_rfc2543_hold}
|
||||
sip.use_23_as_pound=
|
||||
forward.international.enable=
|
||||
|
|
@ -1138,6 +1135,7 @@ phone_setting.headsetkey_mode=
|
|||
phone_setting.is_deal180=
|
||||
phone_setting.change_183_to_180=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1191,7 +1189,6 @@ action_url.transfer_call =
|
|||
action_url.unregistered =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
|
|
@ -1228,7 +1225,6 @@ local_time.time_zone = {$yealink_time_zone}
|
|||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
|
|
@ -1286,6 +1282,7 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
|
|
@ -1302,8 +1299,6 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1322,7 +1317,6 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1342,6 +1336,7 @@ dialplan.area_code.max_len = 15
|
|||
dialplan.area_code.min_len = 1
|
||||
dialplan.area_code.code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Rings Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1367,6 +1362,7 @@ distinctive_ring_tones.alert_info.8.ringer = {$yealink_ring_file_8}
|
|||
distinctive_ring_tones.alert_info.9.ringer = {$yealink_ring_file_9}
|
||||
distinctive_ring_tones.alert_info.10.ringer = {$yealink_ring_file_10}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## IME Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1374,6 +1370,7 @@ directory.search_default_input_method=
|
|||
directory.edit_default_input_method=
|
||||
gui_input_method.url=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1403,7 +1400,6 @@ screensaver.wait_time=
|
|||
screensaver.xml_browser.url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Saving ##
|
||||
#######################################################################################
|
||||
|
|
@ -1449,6 +1445,7 @@ expansion_module.backgrounds=
|
|||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
|
|
@ -1497,6 +1494,7 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode = {$yealink_blf_led_mode}
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
|
|
@ -1504,7 +1502,6 @@ features.auto_release_bla_line=
|
|||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
|
|
@ -1528,8 +1525,6 @@ acd.enable=
|
|||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1563,7 +1558,6 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
|
|
@ -1576,8 +1570,6 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
|
|
@ -1592,7 +1584,6 @@ voice_mail.message_key.mode=
|
|||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
|
|
@ -1611,7 +1602,6 @@ features.call_decline.enable =
|
|||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
|
|
@ -1641,8 +1631,6 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#!version:1.0.0.1
|
||||
|
||||
##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.##
|
||||
|
|
@ -6,11 +5,10 @@
|
|||
#######################################################################################
|
||||
## Network CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable =
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network IPv6 ##
|
||||
#######################################################################################
|
||||
|
|
@ -23,6 +21,7 @@ static.network.ipv6_internet_port.ip =
|
|||
static.network.ipv6_internet_port.type =
|
||||
static.network.ipv6_prefix =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network WiFi ##
|
||||
#######################################################################################
|
||||
|
|
@ -54,7 +53,7 @@ static.wifi.show_scan_prompt =
|
|||
#######################################################################################
|
||||
## Network Internet ##
|
||||
#######################################################################################
|
||||
static.network.ip_address_mode =
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
static.network.span_to_pc_port =
|
||||
static.network.vlan.pc_port_mode =
|
||||
static.network.static_dns_enable =
|
||||
|
|
@ -87,15 +86,13 @@ static.network.pc_port.speed_duplex =
|
|||
static.network.internet_port.speed_duplex =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable =
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -103,7 +100,6 @@ static.network.vlan.dhcp_enable =
|
|||
static.network.vlan.dhcp_option =
|
||||
static.network.vlan.vlan_change.enable =
|
||||
|
||||
|
||||
static.network.vlan.pc_port_priority =
|
||||
static.network.vlan.pc_port_vid =
|
||||
static.network.vlan.pc_port_enable =
|
||||
|
|
@ -120,7 +116,6 @@ static.network.vpn_enable =
|
|||
static.openvpn.url =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network 802.1x ##
|
||||
#######################################################################################
|
||||
|
|
@ -133,15 +128,12 @@ static.network.802_1x.eap_fast_provision_mode =
|
|||
static.network.802_1x.anonymous_identity =
|
||||
static.network.802_1x.proxy_eap_logoff.enable =
|
||||
|
||||
|
||||
static.auto_provision.custom.protect =
|
||||
static.auto_provision.custom.sync =
|
||||
static.auto_provision.custom.sync.path =
|
||||
static.auto_provision.custom.upload_method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## ZERO Touch ##
|
||||
#######################################################################################
|
||||
|
|
@ -169,25 +161,27 @@ static.auto_provision.weekly.end_time =
|
|||
static.auto_provision.weekly.begin_time =
|
||||
static.auto_provision.weekly_upgrade_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Flexible Autop ##
|
||||
#######################################################################################
|
||||
|
|
@ -196,6 +190,7 @@ static.auto_provision.flexible.begin_time =
|
|||
static.auto_provision.flexible.interval =
|
||||
static.auto_provision.flexible.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision Other ##
|
||||
#######################################################################################
|
||||
|
|
@ -221,13 +216,13 @@ static.auto_provision.aes_key_16.mac =
|
|||
static.auto_provision.aes_key_16.com =
|
||||
features.custom_version_info =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
|
|
@ -249,7 +244,6 @@ static.autoprovision.1.com_aes =
|
|||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
|
|
@ -264,8 +258,6 @@ static.managementserver.connection_request_password =
|
|||
static.managementserver.connection_request_username =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Redirect ##
|
||||
#######################################################################################
|
||||
|
|
@ -325,7 +317,6 @@ static.auto_provision.local_log.backup.append.max_file_size =
|
|||
static.auto_provision.local_log.backup.append.limit_mode=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
|
|
@ -361,12 +352,14 @@ security.tls_cipher_list =
|
|||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
|
|
@ -374,7 +367,6 @@ static.trusted_certificates.url =
|
|||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
|
|
@ -389,8 +381,6 @@ static.auto_provision.encryption.call_log =
|
|||
static.auto_provision.encryption.config =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
|
|
@ -411,14 +401,12 @@ features.local_conf.combine_with_one_press.enable=
|
|||
phone_setting.call_appearance.conference_via_new_linekey=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
|
|
@ -465,6 +453,7 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
|
|
@ -505,6 +494,7 @@ features.dtmf.min_interval=
|
|||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
|
|
@ -523,6 +513,7 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
|
|
@ -536,6 +527,7 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -543,6 +535,7 @@ voice.echo_cancellation =
|
|||
voice.cng =
|
||||
voice.vad =
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Backup Server ##
|
||||
################################################################
|
||||
|
|
@ -565,6 +558,7 @@ sip.unreg_with_socket_close=
|
|||
phone_setting.disable_account_without_username.enable=
|
||||
features.auto_answer.first_call_only=
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Advanced config ##
|
||||
################################################################
|
||||
|
|
@ -610,11 +604,11 @@ static.sip.nat_stun.enable=
|
|||
static.sip.nat_stun.server=
|
||||
static.sip.nat_stun.port=
|
||||
|
||||
|
||||
static.ice.enable=
|
||||
static.network.static_nat.enable=
|
||||
static.network.static_nat.addr=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
|
|
@ -635,6 +629,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -742,8 +737,6 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
|
|
@ -814,7 +807,6 @@ directory_setting.local_directory.priority =
|
|||
#programablekey.X.extension
|
||||
##Programablekey X ranges(T48G/T48S/T46G/T46S: X=1-10, 12-14;T42G/T42S/T41P/T41S/T40P/T40G: X=1-10, 13;T29G/T27P/T27G: X=1-14;T23P/T23G/T21(P) E2: 1-10, 14;T19(P) E2: X=1-9, 13, 14;)##
|
||||
|
||||
|
||||
programablekey.1.type =
|
||||
programablekey.1.label =
|
||||
programablekey.1.value =
|
||||
|
|
@ -824,6 +816,7 @@ programablekey.1.xml_phonebook =
|
|||
programablekey.1.pickup_value =
|
||||
programablekey.1.extension =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
|
|
@ -861,13 +854,14 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dsskey ##
|
||||
#######################################################################################
|
||||
features.block_linekey_in_menu.enable =
|
||||
features.shorten_linekey_label.enable =
|
||||
features.flash_url_dsskey_led.enable =
|
||||
features.config_dsskey_length =
|
||||
features.config_dsskey_length = {$yealink_dsskey_length}
|
||||
phone_setting.page_tip =
|
||||
features.keep_switch_page_key.enable=
|
||||
|
||||
|
|
@ -875,7 +869,6 @@ features.keep_switch_page_key.enable=
|
|||
phone_setting.idle_dsskey_and_title.transparency=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -959,7 +952,6 @@ edk.edkprompt.1.type=
|
|||
edk.edkprompt.1.userfeedback=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
|
|
@ -994,7 +986,6 @@ forward.idle_access_always_fwd.enable=
|
|||
features.forward_call_popup.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
|
|
@ -1020,7 +1011,6 @@ phone_setting.emergency.number=
|
|||
phone_setting.phone_lock.lock_time_out=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
|
|
@ -1050,7 +1040,6 @@ features.hide_feature_access_codes.enable=
|
|||
voice_mail.number.1=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
|
|
@ -1058,8 +1047,6 @@ features.text_message.enable=
|
|||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
|
|
@ -1085,7 +1072,6 @@ features.intercom.barge=
|
|||
features.intercom.tone=
|
||||
features.intercom.mute=
|
||||
|
||||
|
||||
voice.handset_send=
|
||||
voice.handfree_send =
|
||||
voice.headset_send =
|
||||
|
|
@ -1093,8 +1079,6 @@ features.intercom.headset_prior.enable=
|
|||
features.ringer_device.is_use_headset=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
|
|
@ -1133,7 +1117,6 @@ auto_redial.times=
|
|||
auto_redial.interval=
|
||||
auto_redial.enable=
|
||||
|
||||
|
||||
sip.rfc2543_hold=
|
||||
sip.use_23_as_pound=
|
||||
forward.international.enable=
|
||||
|
|
@ -1141,6 +1124,7 @@ phone_setting.headsetkey_mode=
|
|||
phone_setting.is_deal180=
|
||||
phone_setting.change_183_to_180=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1194,7 +1178,6 @@ action_url.transfer_call =
|
|||
action_url.unregistered =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
|
|
@ -1215,7 +1198,7 @@ auto_dst.url =
|
|||
local_time.manual_time_enable =
|
||||
local_time.manual_ntp_srv_prior =
|
||||
local_time.time_format =
|
||||
local_time.date_format =
|
||||
local_time.date_format = {$yealink_date_format}
|
||||
local_time.dhcp_time =
|
||||
|
||||
local_time.summer_time =
|
||||
|
|
@ -1225,11 +1208,10 @@ local_time.end_time =
|
|||
local_time.offset_time =
|
||||
local_time.interval =
|
||||
|
||||
local_time.ntp_server1 =
|
||||
local_time.ntp_server2 =
|
||||
local_time.time_zone =
|
||||
local_time.time_zone_name =
|
||||
|
||||
local_time.ntp_server1 = {$ntp_server_primary}
|
||||
local_time.ntp_server2 = {$ntp_server_secondary}
|
||||
local_time.time_zone = {$yealink_time_zone_name}
|
||||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
|
|
@ -1289,6 +1271,7 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
|
|
@ -1305,8 +1288,6 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1325,7 +1306,6 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1345,6 +1325,7 @@ dialplan.area_code.max_len =
|
|||
dialplan.area_code.min_len=
|
||||
dialplan.area_code.code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Rings Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1370,6 +1351,7 @@ distinctive_ring_tones.alert_info.8.ringer = {$yealink_ring_file_8}
|
|||
distinctive_ring_tones.alert_info.9.ringer = {$yealink_ring_file_9}
|
||||
distinctive_ring_tones.alert_info.10.ringer = {$yealink_ring_file_10}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## IME Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1377,6 +1359,7 @@ directory.search_default_input_method=
|
|||
directory.edit_default_input_method=
|
||||
gui_input_method.url=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1404,7 +1387,6 @@ screensaver.wait_time=
|
|||
screensaver.xml_browser.url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Saving ##
|
||||
#######################################################################################
|
||||
|
|
@ -1450,6 +1432,7 @@ expansion_module.backgrounds=
|
|||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
|
|
@ -1498,6 +1481,7 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode=
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
|
|
@ -1505,7 +1489,6 @@ features.auto_release_bla_line=
|
|||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
|
|
@ -1529,8 +1512,6 @@ acd.enable=
|
|||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1564,7 +1545,6 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
|
|
@ -1577,8 +1557,6 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
|
|
@ -1593,7 +1571,6 @@ voice_mail.message_key.mode=
|
|||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
|
|
@ -1612,7 +1589,6 @@ features.call_decline.enable =
|
|||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
|
|
@ -1642,8 +1618,6 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
|
|
@ -1688,4 +1662,3 @@ directory_setting.gb_pab_directory.enable =
|
|||
directory_setting.gb_pab_directory.priority =
|
||||
search_in_dialing.gb_pab_directory.priority =
|
||||
search_in_dialing.gb_pab_directory.enable =
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#!version:1.0.0.1
|
||||
|
||||
##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.##
|
||||
|
|
@ -10,7 +9,6 @@ static.network.cdp.enable = {$yealink_cdp_enable}
|
|||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network IPv6 ##
|
||||
#######################################################################################
|
||||
|
|
@ -23,6 +21,7 @@ static.network.ipv6_internet_port.ip =
|
|||
static.network.ipv6_internet_port.type =
|
||||
static.network.ipv6_prefix =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network WiFi ##
|
||||
#######################################################################################
|
||||
|
|
@ -87,7 +86,6 @@ static.network.pc_port.speed_duplex =
|
|||
static.network.internet_port.speed_duplex =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network LLDP ##
|
||||
#######################################################################################
|
||||
|
|
@ -95,7 +93,6 @@ static.network.lldp.enable = {$yealink_lldp_enable}
|
|||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -103,7 +100,6 @@ static.network.vlan.dhcp_enable =
|
|||
static.network.vlan.dhcp_option =
|
||||
static.network.vlan.vlan_change.enable =
|
||||
|
||||
|
||||
static.network.vlan.pc_port_priority =
|
||||
static.network.vlan.pc_port_vid =
|
||||
static.network.vlan.pc_port_enable =
|
||||
|
|
@ -120,7 +116,6 @@ static.network.vpn_enable =
|
|||
static.openvpn.url =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network 802.1x ##
|
||||
#######################################################################################
|
||||
|
|
@ -133,15 +128,12 @@ static.network.802_1x.eap_fast_provision_mode =
|
|||
static.network.802_1x.anonymous_identity =
|
||||
static.network.802_1x.proxy_eap_logoff.enable =
|
||||
|
||||
|
||||
static.auto_provision.custom.protect =
|
||||
static.auto_provision.custom.sync =
|
||||
static.auto_provision.custom.sync.path =
|
||||
static.auto_provision.custom.upload_method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## ZERO Touch ##
|
||||
#######################################################################################
|
||||
|
|
@ -169,25 +161,27 @@ static.auto_provision.weekly.end_time =
|
|||
static.auto_provision.weekly.begin_time =
|
||||
static.auto_provision.weekly_upgrade_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Flexible Autop ##
|
||||
#######################################################################################
|
||||
|
|
@ -196,6 +190,7 @@ static.auto_provision.flexible.begin_time =
|
|||
static.auto_provision.flexible.interval =
|
||||
static.auto_provision.flexible.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision Other ##
|
||||
#######################################################################################
|
||||
|
|
@ -221,13 +216,13 @@ static.auto_provision.aes_key_16.mac =
|
|||
static.auto_provision.aes_key_16.com =
|
||||
features.custom_version_info =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
|
|
@ -249,7 +244,6 @@ static.autoprovision.1.com_aes =
|
|||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
|
|
@ -264,8 +258,6 @@ static.managementserver.connection_request_password =
|
|||
static.managementserver.connection_request_username =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Redirect ##
|
||||
#######################################################################################
|
||||
|
|
@ -325,7 +317,6 @@ static.auto_provision.local_log.backup.append.max_file_size =
|
|||
static.auto_provision.local_log.backup.append.limit_mode=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
|
|
@ -361,12 +352,14 @@ security.tls_cipher_list =
|
|||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
|
|
@ -374,7 +367,6 @@ static.trusted_certificates.url =
|
|||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
|
|
@ -389,8 +381,6 @@ static.auto_provision.encryption.call_log =
|
|||
static.auto_provision.encryption.config =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
|
|
@ -411,14 +401,12 @@ features.local_conf.combine_with_one_press.enable=
|
|||
phone_setting.call_appearance.conference_via_new_linekey=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
|
|
@ -465,6 +453,7 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
|
|
@ -505,6 +494,7 @@ features.dtmf.min_interval=
|
|||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
|
|
@ -523,6 +513,7 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
|
|
@ -536,6 +527,7 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
|
|
@ -543,6 +535,7 @@ voice.echo_cancellation =
|
|||
voice.cng =
|
||||
voice.vad =
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Backup Server ##
|
||||
################################################################
|
||||
|
|
@ -565,6 +558,7 @@ sip.unreg_with_socket_close=
|
|||
phone_setting.disable_account_without_username.enable=
|
||||
features.auto_answer.first_call_only=
|
||||
|
||||
|
||||
################################################################
|
||||
# SIP Advanced config ##
|
||||
################################################################
|
||||
|
|
@ -610,11 +604,11 @@ static.sip.nat_stun.enable=
|
|||
static.sip.nat_stun.server=
|
||||
static.sip.nat_stun.port=
|
||||
|
||||
|
||||
static.ice.enable=
|
||||
static.network.static_nat.enable=
|
||||
static.network.static_nat.addr=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
|
|
@ -635,6 +629,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -742,8 +737,6 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
|
|
@ -814,7 +807,6 @@ directory_setting.local_directory.priority =
|
|||
#programablekey.X.extension
|
||||
##Programablekey X ranges(T48G/T48S/T46G/T46S: X=1-10, 12-14;T42G/T42S/T41P/T41S/T40P/T40G: X=1-10, 13;T29G/T27P/T27G: X=1-14;T23P/T23G/T21(P) E2: 1-10, 14;T19(P) E2: X=1-9, 13, 14;)##
|
||||
|
||||
|
||||
programablekey.1.type =
|
||||
programablekey.1.label =
|
||||
programablekey.1.value =
|
||||
|
|
@ -824,6 +816,7 @@ programablekey.1.xml_phonebook =
|
|||
programablekey.1.pickup_value =
|
||||
programablekey.1.extension =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
|
|
@ -861,6 +854,7 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dsskey ##
|
||||
#######################################################################################
|
||||
|
|
@ -875,7 +869,6 @@ features.keep_switch_page_key.enable=
|
|||
phone_setting.idle_dsskey_and_title.transparency=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -924,6 +917,7 @@ expansion_module.2.key.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
expansion_module.2.key.{$row.device_key_id}.xml_phonebook =
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## EDK ##
|
||||
#######################################################################################
|
||||
|
|
@ -958,7 +952,6 @@ edk.edkprompt.1.type=
|
|||
edk.edkprompt.1.userfeedback=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
|
|
@ -993,7 +986,6 @@ forward.idle_access_always_fwd.enable=
|
|||
features.forward_call_popup.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
|
|
@ -1019,7 +1011,6 @@ phone_setting.emergency.number=
|
|||
phone_setting.phone_lock.lock_time_out=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
|
|
@ -1049,7 +1040,6 @@ features.hide_feature_access_codes.enable=
|
|||
voice_mail.number.1=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
|
|
@ -1057,8 +1047,6 @@ features.text_message.enable=
|
|||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
|
|
@ -1084,7 +1072,6 @@ features.intercom.barge=
|
|||
features.intercom.tone=
|
||||
features.intercom.mute=
|
||||
|
||||
|
||||
voice.handset_send=
|
||||
voice.handfree_send =
|
||||
voice.headset_send =
|
||||
|
|
@ -1092,8 +1079,6 @@ features.intercom.headset_prior.enable=
|
|||
features.ringer_device.is_use_headset=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
|
|
@ -1132,7 +1117,6 @@ auto_redial.times=
|
|||
auto_redial.interval=
|
||||
auto_redial.enable=
|
||||
|
||||
|
||||
sip.rfc2543_hold=
|
||||
sip.use_23_as_pound=
|
||||
forward.international.enable=
|
||||
|
|
@ -1140,6 +1124,7 @@ phone_setting.headsetkey_mode=
|
|||
phone_setting.is_deal180=
|
||||
phone_setting.change_183_to_180=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1193,7 +1178,6 @@ action_url.transfer_call =
|
|||
action_url.unregistered =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
|
|
@ -1230,7 +1214,6 @@ local_time.time_zone = {$yealink_time_zone_name}
|
|||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
|
|
@ -1288,6 +1271,7 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
|
|
@ -1304,8 +1288,6 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1324,7 +1306,6 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
|
|
@ -1344,6 +1325,7 @@ dialplan.area_code.max_len =
|
|||
dialplan.area_code.min_len=
|
||||
dialplan.area_code.code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Rings Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1369,6 +1351,7 @@ distinctive_ring_tones.alert_info.8.ringer = {$yealink_ring_file_8}
|
|||
distinctive_ring_tones.alert_info.9.ringer = {$yealink_ring_file_9}
|
||||
distinctive_ring_tones.alert_info.10.ringer = {$yealink_ring_file_10}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## IME Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1376,6 +1359,7 @@ directory.search_default_input_method=
|
|||
directory.edit_default_input_method=
|
||||
gui_input_method.url=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -1403,7 +1387,6 @@ screensaver.wait_time=
|
|||
screensaver.xml_browser.url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Saving ##
|
||||
#######################################################################################
|
||||
|
|
@ -1449,6 +1432,7 @@ expansion_module.backgrounds=
|
|||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
|
|
@ -1497,6 +1481,7 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode=
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
|
|
@ -1504,7 +1489,6 @@ features.auto_release_bla_line=
|
|||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
|
|
@ -1528,8 +1512,6 @@ acd.enable=
|
|||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
|
|
@ -1563,7 +1545,6 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
|
|
@ -1576,8 +1557,6 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
|
|
@ -1592,7 +1571,6 @@ voice_mail.message_key.mode=
|
|||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
|
|
@ -1611,7 +1589,6 @@ features.call_decline.enable =
|
|||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
|
|
@ -1641,8 +1618,6 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
|
|
@ -1687,4 +1662,3 @@ directory_setting.gb_pab_directory.enable =
|
|||
directory_setting.gb_pab_directory.priority =
|
||||
search_in_dialing.gb_pab_directory.priority =
|
||||
search_in_dialing.gb_pab_directory.enable =
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,9 @@
|
|||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## PPPoE ##
|
||||
## PPPoE ##
|
||||
#######################################################################################
|
||||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
|
@ -62,6 +63,7 @@ network.attempt_expired_time =
|
|||
network.dhcp.server_mac1 =
|
||||
network.dhcp.server_mac2 =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -78,6 +80,7 @@ static.network.vlan.dhcp_option =
|
|||
##(Except T19P/T21P Models) 0-Disable 1-Enable
|
||||
static.network.vlan.vlan_change.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## WEB Port ##
|
||||
#######################################################################################
|
||||
|
|
@ -92,6 +95,7 @@ static.network.port.https =
|
|||
static.wui.https_enable =
|
||||
static.wui.http_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## QoS ##
|
||||
#######################################################################################
|
||||
|
|
@ -103,6 +107,7 @@ static.network.qos.rtptos =
|
|||
##The default value is 26.It takes effect after a reboot.Integer from 0 to 63
|
||||
static.network.qos.signaltos =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## 802.1X ##
|
||||
#######################################################################################
|
||||
|
|
@ -115,29 +120,35 @@ static.network.802_1x.client_cert_url =
|
|||
##It configure the mouth of the PC 802.1 x - logoff function.It takes effect after a reboot.
|
||||
##The default value is 0-Dsable , 1-Enable
|
||||
static.network.802_1x.proxy_eap_logoff.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## OpenVPN(Except T19P Model) ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable =
|
||||
static.network.lldp.enable = static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable =
|
||||
static.network.cdp.enable = static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Span to PC ##
|
||||
#######################################################################################
|
||||
static.network.span_to_pc_port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP Port ##
|
||||
#######################################################################################
|
||||
|
|
@ -146,6 +157,7 @@ sip.max_udp_port=
|
|||
sip.min_tcp_port=
|
||||
sip.max_tcp_port=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Syslog ##
|
||||
#######################################################################################
|
||||
|
|
@ -166,8 +178,9 @@ static.syslog.ftp.max_logfile =
|
|||
static.syslog.ftp.post_mode =
|
||||
static.syslog.log_upload_period =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
static.managementserver.enable =
|
||||
static.managementserver.username =
|
||||
|
|
@ -178,6 +191,7 @@ static.managementserver.connection_request_password =
|
|||
static.managementserver.periodic_inform_enable =
|
||||
static.managementserver.periodic_inform_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision ## ##
|
||||
#######################################################################################
|
||||
|
|
@ -195,28 +209,34 @@ static.auto_provision.custom.protect =
|
|||
static.auto_provision.custom.upload_method=
|
||||
|
||||
auto_provision.attempt_expired_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
|
|
@ -225,6 +245,7 @@ static.auto_provision.weekly.dayofweek =
|
|||
static.auto_provision.weekly.begin_time =
|
||||
static.auto_provision.weekly.end_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
|
|
@ -232,6 +253,7 @@ static.auto_provision.server.url = {$yealink_provision_url}
|
|||
static.auto_provision.server.username = {$http_auth_username}
|
||||
static.auto_provision.server.password = {$http_auth_password}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop AES Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -256,6 +278,7 @@ static.auto_provision.dhcp_option.option60_value =
|
|||
##0-Disable 1-Enable
|
||||
static.auto_provision.reboot_force.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop wildcard ##
|
||||
#######################################################################################
|
||||
|
|
@ -294,11 +317,13 @@ static.autoprovision.1.com_aes =
|
|||
##The default value is blank.It takes effect after a reboot.
|
||||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SIP Advanced ##
|
||||
#######################################################################################
|
||||
|
|
@ -322,8 +347,6 @@ sip.timer_t1 =
|
|||
sip.timer_t2 =
|
||||
sip.timer_t4 =
|
||||
|
||||
|
||||
|
||||
##It is XSI authentication mode.0-Disable 1-Enable (Except T19P/T21P Models)
|
||||
sip.authentication_for_xsi =
|
||||
##It is DSS KEY to call park type, whether the trigger BLF function.It takes effect after a reboot.
|
||||
|
|
@ -357,6 +380,7 @@ voice.vad =
|
|||
voice.cng =
|
||||
voice.echo_cancellation =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
|
|
@ -365,6 +389,7 @@ voice.jib.min =
|
|||
voice.jib.max =
|
||||
voice.jib.normal =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
|
|
@ -380,6 +405,7 @@ voice.tone.stutter =
|
|||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Volume ##
|
||||
#######################################################################################
|
||||
|
|
@ -396,6 +422,7 @@ voice.handfree_send =
|
|||
voice.handset_send =
|
||||
voice.headset_send =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Transfer ##
|
||||
#######################################################################################
|
||||
|
|
@ -429,6 +456,7 @@ transfer.dsskey_deal_type =
|
|||
##The default value is 1.
|
||||
transfer.multi_call_trans_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -445,6 +473,7 @@ wui_lang.url =
|
|||
wui_lang_note.url =
|
||||
wui_lang.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Auto Redial ##
|
||||
#######################################################################################
|
||||
|
|
@ -452,6 +481,7 @@ auto_redial.enable =
|
|||
auto_redial.interval =
|
||||
auto_redial.times =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Zero Touch ##
|
||||
#######################################################################################
|
||||
|
|
@ -460,6 +490,7 @@ static.zero_touch.wait_time =
|
|||
static.zero_touch.network_fail_wait_times =
|
||||
static.zero_touch.network_fail_delay_times =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Push XML ##
|
||||
#######################################################################################
|
||||
|
|
@ -467,6 +498,7 @@ push_xml.server =
|
|||
push_xml.block_in_calling=
|
||||
push_xml.sip_notify=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dial Plan ##
|
||||
#######################################################################################
|
||||
|
|
@ -564,8 +596,9 @@ features.remote_phonebook.enable =
|
|||
##The default value is 21600.Integer from 3600 to 2592000,and 0.
|
||||
features.remote_phonebook.flash_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
##It enables or disables LDAP feature.0-Disabled,1-Enabled.
|
||||
##The default value is 0.
|
||||
|
|
@ -641,6 +674,7 @@ ldap.incoming_call_special_search.enable =
|
|||
ldap.tls_mode =
|
||||
ldap.call_out_lookup = {$ldap_dial_lookup}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features ##
|
||||
#######################################################################################
|
||||
|
|
@ -670,7 +704,6 @@ gui_input_method.delete =
|
|||
features.off_hook_answer.enable =
|
||||
features.auto_linekeys.enable =
|
||||
|
||||
|
||||
features.blf_pickup_only_send_code =
|
||||
##It is configured in the middle of the screen shows the current default at the bottom of the account name.
|
||||
##The default is 0.CNT version 1.
|
||||
|
|
@ -684,7 +717,6 @@ features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_
|
|||
static.features.hide_zero_touch_url.enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Forward ##
|
||||
#######################################################################################
|
||||
|
|
@ -692,6 +724,7 @@ static.features.hide_zero_touch_url.enable =
|
|||
features.fwd_mode =
|
||||
features.fwd_diversion_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features DND ##
|
||||
#######################################################################################
|
||||
|
|
@ -704,11 +737,13 @@ features.dnd_refuse_code =
|
|||
features.dnd.emergency_enable =
|
||||
features.dnd.emergency_authorized_number =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth(Only for T46G model) ##
|
||||
#######################################################################################
|
||||
features.bluetooth_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features BLF ##
|
||||
#######################################################################################
|
||||
|
|
@ -722,6 +757,7 @@ features.blf_led_mode = {$yealink_blf_led_mode}
|
|||
##The default value is 0.It takes effect after a reboot.
|
||||
features.blf_list_version =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Intercom ##
|
||||
#######################################################################################
|
||||
|
|
@ -732,6 +768,7 @@ features.intercom.barge =
|
|||
features.intercom.led.enable =
|
||||
features.intercom.subscribe.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Hotline ##
|
||||
#######################################################################################
|
||||
|
|
@ -743,6 +780,7 @@ features.hotline_number =
|
|||
##The default value of delay time is 4.Integer from 0 to 10
|
||||
features.hotline_delay =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features DTMF ##
|
||||
#######################################################################################
|
||||
|
|
@ -758,6 +796,7 @@ features.dtmf.duration =
|
|||
features.dtmf.volume =
|
||||
features.play_local_dtmf_tone_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Audio Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -774,6 +813,7 @@ features.play_hold_tone.delay =
|
|||
features.redial_tone =
|
||||
features.partition_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Action URI ##
|
||||
#######################################################################################
|
||||
|
|
@ -787,11 +827,13 @@ features.password_dial.enable =
|
|||
features.password_dial.prefix =
|
||||
features.password_dial.length =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features History ##
|
||||
#######################################################################################
|
||||
features.save_call_history =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Notification Popups ##
|
||||
#######################################################################################
|
||||
|
|
@ -800,12 +842,14 @@ features.missed_call_popup.enable= {$yealink_missed_call_popup_enable}
|
|||
features.forward_call_popup.enable=
|
||||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Ringtone ##
|
||||
#######################################################################################
|
||||
ringtone.url =
|
||||
ringtone.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -828,7 +872,6 @@ phone_setting.called_party_info_display.enable =
|
|||
phone_setting.call_info_display_method =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Led Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -844,7 +887,6 @@ phone_setting.hold_and_held_power_led_flash_enable =
|
|||
phone_setting.active_backlight_level =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting Display ##
|
||||
#######################################################################################
|
||||
|
|
@ -854,6 +896,7 @@ phone_setting.backlight_time = {$yealink_backlight_time}
|
|||
phone_setting.backgrounds = Config:yealink_t56a_wallpaper.png
|
||||
wallpaper_upload.url = {$yealink_t56a_wallpaper}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting BLF ##
|
||||
#######################################################################################
|
||||
|
|
@ -869,6 +912,7 @@ phone_setting.auto_blf_list_enable =
|
|||
###The default value is 0.
|
||||
phone_setting.blf_list_sequence_type =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Key Lock ##
|
||||
#######################################################################################
|
||||
|
|
@ -877,7 +921,6 @@ phone_setting.blf_list_sequence_type =
|
|||
###The default value is 0.
|
||||
phone_setting.phone_lock.enable = {$yealink_lock_enable}
|
||||
|
||||
|
||||
###It configures the password for unlocking the keypad.
|
||||
###The default value is 123.
|
||||
phone_setting.phone_lock.unlock_pin = {$yealink_lock_pin}
|
||||
|
|
@ -887,6 +930,7 @@ phone_setting.phone_lock.unlock_pin = {$yealink_lock_pin}
|
|||
phone_setting.phone_lock.lock_time_out = {$yealink_lock_timeout}
|
||||
phone_setting.emergency.number = {$yealink_emergency_number}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast ##
|
||||
#######################################################################################
|
||||
|
|
@ -905,12 +949,15 @@ multicast.listen_address.1.ip_address =
|
|||
|
||||
multicast.paging_address.1.ip_address =
|
||||
multicast.paging_address.1.label =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Super Search ##
|
||||
## Super Search ##
|
||||
#######################################################################################
|
||||
super_search.recent_call =
|
||||
super_search.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
|
|
@ -969,12 +1016,14 @@ static.security.var_enable =
|
|||
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
|
|
@ -982,7 +1031,6 @@ static.server_certificates.url =
|
|||
static.server_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Line Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -1050,6 +1098,7 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Programable Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -1062,7 +1111,6 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
#33-Status 34-Hot Desking 38-LDAP 40-Prefix 41-Zero Touch 43-Local Directory 44-Network Directory 45-Local Group
|
||||
#46-Network Group 47-XML Directory 50-Keypad Lock 51-Switch Account Up 52-Switch Account Down 55-Meet-Me Conference 61-Directory
|
||||
|
||||
|
||||
###programablekey.X.type =
|
||||
###programablekey.X.line =
|
||||
###programablekey.X.value =
|
||||
|
|
@ -1119,6 +1167,7 @@ programablekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key(Only for T26P/T28P/T46G Models) ##
|
||||
#######################################################################################
|
||||
|
|
@ -1180,6 +1229,7 @@ expansion_module.2.key.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
expansion_module.2.key.{$row.device_key_id}.xml_phonebook =
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward Always ##
|
||||
#######################################################################################
|
||||
|
|
@ -1188,6 +1238,7 @@ forward.always.target =
|
|||
forward.always.on_code =
|
||||
forward.always.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward Busy ##
|
||||
#######################################################################################
|
||||
|
|
@ -1196,6 +1247,7 @@ forward.busy.target =
|
|||
forward.busy.on_code =
|
||||
forward.busy.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward No Answer ##
|
||||
#######################################################################################
|
||||
|
|
@ -1205,6 +1257,7 @@ forward.no_answer.timeout =
|
|||
forward.no_answer.on_code =
|
||||
forward.no_answer.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward International ##
|
||||
#######################################################################################
|
||||
|
|
@ -1214,20 +1267,18 @@ forward.no_answer.off_code =
|
|||
forward.international.enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking Startup ##
|
||||
#######################################################################################
|
||||
phone_setting.logon_wizard =
|
||||
|
||||
|
||||
##############
|
||||
hotdesking.startup_register_name_enable =
|
||||
hotdesking.startup_username_enable =
|
||||
hotdesking.startup_password_enable =
|
||||
hotdesking.startup_sip_server_enable =
|
||||
hotdesking.startup_outbound_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking Dsskey ##
|
||||
#######################################################################################
|
||||
|
|
@ -1237,6 +1288,7 @@ hotdesking.dsskey_password_enable =
|
|||
hotdesking.dsskey_sip_server_enable =
|
||||
hotdesking.dsskey_outbound_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
|
|
@ -1245,7 +1297,7 @@ hotdesking.dsskey_outbound_enable =
|
|||
###distinctive_ring_tones.alert_info.x.ringer =
|
||||
|
||||
###It configures the internal ringer text for distinctive ringtone.
|
||||
###Example: distinctive_ring_tones.alert_info.1.text = family
|
||||
###Example: distinctive_ring_tones.alert_info.1.text = Family
|
||||
###The default value is blank.
|
||||
distinctive_ring_tones.alert_info.1.text = {$yealink_ring_text_1}
|
||||
distinctive_ring_tones.alert_info.2.text = {$yealink_ring_text_2}
|
||||
|
|
@ -1273,6 +1325,7 @@ distinctive_ring_tones.alert_info.8.ringer = {$yealink_ring_file_8}
|
|||
distinctive_ring_tones.alert_info.9.ringer = {$yealink_ring_file_9}
|
||||
distinctive_ring_tones.alert_info.10.ringer = {$yealink_ring_file_10}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Waiting ##
|
||||
#######################################################################################
|
||||
|
|
@ -1281,6 +1334,7 @@ call_waiting.tone =
|
|||
call_waiting.on_code =
|
||||
call_waiting.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL ##
|
||||
#######################################################################################
|
||||
|
|
@ -1323,7 +1377,6 @@ action_url.held =
|
|||
action_url.unheld =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
|
|
@ -1334,6 +1387,7 @@ local_contact.data_photo_tar.url =
|
|||
|
||||
local_contact.photo.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Factory Configuration ##
|
||||
#######################################################################################
|
||||
|
|
@ -1341,12 +1395,14 @@ local_contact.photo.url =
|
|||
static.custom_factory_configuration.url =
|
||||
static.features.custom_factory_config.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Configuration ##
|
||||
#######################################################################################
|
||||
|
||||
static.configuration.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
|
|
@ -1366,6 +1422,7 @@ custom_softkey_talking.url =
|
|||
###The default value is blank.It takes effect after a reboot.
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t56a}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTCP ##
|
||||
#######################################################################################
|
||||
|
|
@ -1398,7 +1455,6 @@ voice.rtcp_xr.enable =
|
|||
voice.rtcp_cname =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
|
|
@ -1455,6 +1511,7 @@ static.auto_provision.attempt_expired_time =
|
|||
phone_setting.ringback_timeout =
|
||||
phone_setting.ringing_timeout =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V80-SP1 Add ##
|
||||
#######################################################################################
|
||||
|
|
@ -1466,6 +1523,8 @@ static.wifi.1.security_mode =
|
|||
static.wifi.1.cipher_type =
|
||||
static.wifi.1.password =
|
||||
features.bluetooth_adapter_name=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V80-SP2 Add ##
|
||||
#######################################################################################
|
||||
|
|
@ -1483,6 +1542,7 @@ features.power_saving.office_hour.saturday =
|
|||
features.power_saving.office_hour.sunday =
|
||||
screensaver.wait_time=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V81 Add ##
|
||||
#######################################################################################
|
||||
|
|
@ -1498,7 +1558,7 @@ dialplan.digitmap.no_match_action =
|
|||
dialplan.digitmap.active.on_hook_dialing =
|
||||
static.auto_provision.flexible.enable =
|
||||
static.auto_provision.flexible.interval=
|
||||
static.auto_provision.flexible.begin_time =
|
||||
static.auto_provision.flexible.begin_time =
|
||||
static.auto_provision.flexible.end_time =
|
||||
voice.jib.wifi.adaptive =
|
||||
voice.jib.wifi.min =
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -7,8 +7,9 @@
|
|||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## PPPoE ##
|
||||
## PPPoE ##
|
||||
#######################################################################################
|
||||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
|
@ -62,6 +63,7 @@ network.attempt_expired_time =
|
|||
network.dhcp.server_mac1 =
|
||||
network.dhcp.server_mac2 =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
|
|
@ -78,6 +80,7 @@ static.network.vlan.dhcp_option =
|
|||
##(Except T19P/T21P Models) 0-Disable 1-Enable
|
||||
static.network.vlan.vlan_change.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## WEB Port ##
|
||||
#######################################################################################
|
||||
|
|
@ -92,6 +95,7 @@ static.network.port.https =
|
|||
static.wui.https_enable =
|
||||
static.wui.http_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## QoS ##
|
||||
#######################################################################################
|
||||
|
|
@ -103,6 +107,7 @@ static.network.qos.rtptos =
|
|||
##The default value is 26.It takes effect after a reboot.Integer from 0 to 63
|
||||
static.network.qos.signaltos =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## 802.1X ##
|
||||
#######################################################################################
|
||||
|
|
@ -115,29 +120,35 @@ static.network.802_1x.client_cert_url =
|
|||
##It configure the mouth of the PC 802.1 x - logoff function.It takes effect after a reboot.
|
||||
##The default value is 0-Dsable , 1-Enable
|
||||
static.network.802_1x.proxy_eap_logoff.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## OpenVPN(Except T19P Model) ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable = static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable = static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Span to PC ##
|
||||
#######################################################################################
|
||||
static.network.span_to_pc_port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP Port ##
|
||||
#######################################################################################
|
||||
|
|
@ -146,6 +157,7 @@ sip.max_udp_port=
|
|||
sip.min_tcp_port=
|
||||
sip.max_tcp_port=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Syslog ##
|
||||
#######################################################################################
|
||||
|
|
@ -166,8 +178,9 @@ static.syslog.ftp.max_logfile =
|
|||
static.syslog.ftp.post_mode =
|
||||
static.syslog.log_upload_period =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
static.managementserver.enable =
|
||||
static.managementserver.username =
|
||||
|
|
@ -178,6 +191,7 @@ static.managementserver.connection_request_password =
|
|||
static.managementserver.periodic_inform_enable =
|
||||
static.managementserver.periodic_inform_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision ## ##
|
||||
#######################################################################################
|
||||
|
|
@ -195,28 +209,34 @@ static.auto_provision.custom.protect =
|
|||
static.auto_provision.custom.upload_method=
|
||||
|
||||
auto_provision.attempt_expired_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
|
|
@ -225,6 +245,7 @@ static.auto_provision.weekly.dayofweek =
|
|||
static.auto_provision.weekly.begin_time =
|
||||
static.auto_provision.weekly.end_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
|
|
@ -232,6 +253,7 @@ static.auto_provision.server.url = {$yealink_provision_url}
|
|||
static.auto_provision.server.username = {$http_auth_username}
|
||||
static.auto_provision.server.password = {$http_auth_password}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop AES Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -256,6 +278,7 @@ static.auto_provision.dhcp_option.option60_value =
|
|||
##0-Disable 1-Enable
|
||||
static.auto_provision.reboot_force.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop wildcard ##
|
||||
#######################################################################################
|
||||
|
|
@ -294,11 +317,13 @@ static.autoprovision.1.com_aes =
|
|||
##The default value is blank.It takes effect after a reboot.
|
||||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SIP Advanced ##
|
||||
#######################################################################################
|
||||
|
|
@ -322,8 +347,6 @@ sip.timer_t1 =
|
|||
sip.timer_t2 =
|
||||
sip.timer_t4 =
|
||||
|
||||
|
||||
|
||||
##It is XSI authentication mode.0-Disable 1-Enable (Except T19P/T21P Models)
|
||||
sip.authentication_for_xsi =
|
||||
##It is DSS KEY to call park type, whether the trigger BLF function.It takes effect after a reboot.
|
||||
|
|
@ -357,6 +380,7 @@ voice.vad =
|
|||
voice.cng =
|
||||
voice.echo_cancellation =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
|
|
@ -365,6 +389,7 @@ voice.jib.min =
|
|||
voice.jib.max =
|
||||
voice.jib.normal =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
|
|
@ -380,6 +405,7 @@ voice.tone.stutter =
|
|||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Volume ##
|
||||
#######################################################################################
|
||||
|
|
@ -396,6 +422,7 @@ voice.handfree_send =
|
|||
voice.handset_send =
|
||||
voice.headset_send =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Transfer ##
|
||||
#######################################################################################
|
||||
|
|
@ -429,6 +456,7 @@ transfer.dsskey_deal_type =
|
|||
##The default value is 1.
|
||||
transfer.multi_call_trans_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -445,6 +473,7 @@ wui_lang.url =
|
|||
wui_lang_note.url =
|
||||
wui_lang.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Auto Redial ##
|
||||
#######################################################################################
|
||||
|
|
@ -452,6 +481,7 @@ auto_redial.enable =
|
|||
auto_redial.interval =
|
||||
auto_redial.times =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Zero Touch ##
|
||||
#######################################################################################
|
||||
|
|
@ -460,6 +490,7 @@ static.zero_touch.wait_time =
|
|||
static.zero_touch.network_fail_wait_times =
|
||||
static.zero_touch.network_fail_delay_times =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Push XML ##
|
||||
#######################################################################################
|
||||
|
|
@ -467,6 +498,7 @@ push_xml.server =
|
|||
push_xml.block_in_calling=
|
||||
push_xml.sip_notify=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dial Plan ##
|
||||
#######################################################################################
|
||||
|
|
@ -564,8 +596,9 @@ features.remote_phonebook.enable =
|
|||
##The default value is 21600.Integer from 3600 to 2592000,and 0.
|
||||
features.remote_phonebook.flash_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
##It enables or disables LDAP feature.0-Disabled,1-Enabled.
|
||||
##The default value is 0.
|
||||
|
|
@ -641,6 +674,7 @@ ldap.incoming_call_special_search.enable =
|
|||
ldap.tls_mode =
|
||||
ldap.call_out_lookup = {$ldap_dial_lookup}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features ##
|
||||
#######################################################################################
|
||||
|
|
@ -670,7 +704,6 @@ gui_input_method.delete =
|
|||
features.off_hook_answer.enable =
|
||||
features.auto_linekeys.enable =
|
||||
|
||||
|
||||
features.blf_pickup_only_send_code =
|
||||
##It is configured in the middle of the screen shows the current default at the bottom of the account name.
|
||||
##The default is 0.CNT version 1.
|
||||
|
|
@ -684,7 +717,6 @@ features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_
|
|||
static.features.hide_zero_touch_url.enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Forward ##
|
||||
#######################################################################################
|
||||
|
|
@ -692,6 +724,7 @@ static.features.hide_zero_touch_url.enable =
|
|||
features.fwd_mode =
|
||||
features.fwd_diversion_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features DND ##
|
||||
#######################################################################################
|
||||
|
|
@ -704,11 +737,13 @@ features.dnd_refuse_code =
|
|||
features.dnd.emergency_enable =
|
||||
features.dnd.emergency_authorized_number =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth(Only for T46G model) ##
|
||||
#######################################################################################
|
||||
features.bluetooth_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features BLF ##
|
||||
#######################################################################################
|
||||
|
|
@ -722,6 +757,7 @@ features.blf_led_mode = {$yealink_blf_led_mode}
|
|||
##The default value is 0.It takes effect after a reboot.
|
||||
features.blf_list_version =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Intercom ##
|
||||
#######################################################################################
|
||||
|
|
@ -732,6 +768,7 @@ features.intercom.barge =
|
|||
features.intercom.led.enable =
|
||||
features.intercom.subscribe.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Hotline ##
|
||||
#######################################################################################
|
||||
|
|
@ -743,6 +780,7 @@ features.hotline_number =
|
|||
##The default value of delay time is 4.Integer from 0 to 10
|
||||
features.hotline_delay =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features DTMF ##
|
||||
#######################################################################################
|
||||
|
|
@ -758,6 +796,7 @@ features.dtmf.duration =
|
|||
features.dtmf.volume =
|
||||
features.play_local_dtmf_tone_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Audio Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -774,6 +813,7 @@ features.play_hold_tone.delay =
|
|||
features.redial_tone =
|
||||
features.partition_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Action URI ##
|
||||
#######################################################################################
|
||||
|
|
@ -787,11 +827,13 @@ features.password_dial.enable =
|
|||
features.password_dial.prefix =
|
||||
features.password_dial.length =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features History ##
|
||||
#######################################################################################
|
||||
features.save_call_history =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Notification Popups ##
|
||||
#######################################################################################
|
||||
|
|
@ -800,12 +842,14 @@ features.missed_call_popup.enable= {$yealink_missed_call_popup_enable}
|
|||
features.forward_call_popup.enable=
|
||||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Ringtone ##
|
||||
#######################################################################################
|
||||
ringtone.url =
|
||||
ringtone.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -828,7 +872,6 @@ phone_setting.called_party_info_display.enable =
|
|||
phone_setting.call_info_display_method =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Led Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -844,7 +887,6 @@ phone_setting.hold_and_held_power_led_flash_enable =
|
|||
phone_setting.active_backlight_level =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting Display ##
|
||||
#######################################################################################
|
||||
|
|
@ -854,6 +896,7 @@ phone_setting.backlight_time = {$yealink_backlight_time}
|
|||
phone_setting.backgrounds = Config:yealink_t58v_wallpaper.png
|
||||
wallpaper_upload.url = {$yealink_t58v_wallpaper}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting BLF ##
|
||||
#######################################################################################
|
||||
|
|
@ -869,6 +912,7 @@ phone_setting.auto_blf_list_enable =
|
|||
###The default value is 0.
|
||||
phone_setting.blf_list_sequence_type =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Key Lock ##
|
||||
#######################################################################################
|
||||
|
|
@ -877,7 +921,6 @@ phone_setting.blf_list_sequence_type =
|
|||
###The default value is 0.
|
||||
phone_setting.phone_lock.enable = {$yealink_lock_enable}
|
||||
|
||||
|
||||
###It configures the password for unlocking the keypad.
|
||||
###The default value is 123.
|
||||
phone_setting.phone_lock.unlock_pin = {$yealink_lock_pin}
|
||||
|
|
@ -887,6 +930,7 @@ phone_setting.phone_lock.unlock_pin = {$yealink_lock_pin}
|
|||
phone_setting.phone_lock.lock_time_out = {$yealink_lock_timeout}
|
||||
phone_setting.emergency.number = {$yealink_emergency_number}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast ##
|
||||
#######################################################################################
|
||||
|
|
@ -905,12 +949,15 @@ multicast.listen_address.1.ip_address =
|
|||
|
||||
multicast.paging_address.1.ip_address =
|
||||
multicast.paging_address.1.label =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Super Search ##
|
||||
## Super Search ##
|
||||
#######################################################################################
|
||||
super_search.recent_call =
|
||||
super_search.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
|
|
@ -969,12 +1016,14 @@ static.security.var_enable =
|
|||
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
|
|
@ -982,7 +1031,6 @@ static.server_certificates.url =
|
|||
static.server_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Line Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -1050,6 +1098,7 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Programable Key ##
|
||||
#######################################################################################
|
||||
|
|
@ -1062,7 +1111,6 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
#33-Status 34-Hot Desking 38-LDAP 40-Prefix 41-Zero Touch 43-Local Directory 44-Network Directory 45-Local Group
|
||||
#46-Network Group 47-XML Directory 50-Keypad Lock 51-Switch Account Up 52-Switch Account Down 55-Meet-Me Conference 61-Directory
|
||||
|
||||
|
||||
###programablekey.X.type =
|
||||
###programablekey.X.line =
|
||||
###programablekey.X.value =
|
||||
|
|
@ -1119,6 +1167,7 @@ programablekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key(Only for T26P/T28P/T46G Models) ##
|
||||
#######################################################################################
|
||||
|
|
@ -1180,6 +1229,7 @@ expansion_module.2.key.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
expansion_module.2.key.{$row.device_key_id}.xml_phonebook =
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward Always ##
|
||||
#######################################################################################
|
||||
|
|
@ -1188,6 +1238,7 @@ forward.always.target =
|
|||
forward.always.on_code =
|
||||
forward.always.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward Busy ##
|
||||
#######################################################################################
|
||||
|
|
@ -1196,6 +1247,7 @@ forward.busy.target =
|
|||
forward.busy.on_code =
|
||||
forward.busy.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward No Answer ##
|
||||
#######################################################################################
|
||||
|
|
@ -1205,6 +1257,7 @@ forward.no_answer.timeout =
|
|||
forward.no_answer.on_code =
|
||||
forward.no_answer.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward International ##
|
||||
#######################################################################################
|
||||
|
|
@ -1214,20 +1267,18 @@ forward.no_answer.off_code =
|
|||
forward.international.enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking Startup ##
|
||||
#######################################################################################
|
||||
phone_setting.logon_wizard =
|
||||
|
||||
|
||||
##############
|
||||
hotdesking.startup_register_name_enable =
|
||||
hotdesking.startup_username_enable =
|
||||
hotdesking.startup_password_enable =
|
||||
hotdesking.startup_sip_server_enable =
|
||||
hotdesking.startup_outbound_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking Dsskey ##
|
||||
#######################################################################################
|
||||
|
|
@ -1237,6 +1288,7 @@ hotdesking.dsskey_password_enable =
|
|||
hotdesking.dsskey_sip_server_enable =
|
||||
hotdesking.dsskey_outbound_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
|
|
@ -1273,6 +1325,7 @@ distinctive_ring_tones.alert_info.8.ringer = {$yealink_ring_file_8}
|
|||
distinctive_ring_tones.alert_info.9.ringer = {$yealink_ring_file_9}
|
||||
distinctive_ring_tones.alert_info.10.ringer = {$yealink_ring_file_10}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Waiting ##
|
||||
#######################################################################################
|
||||
|
|
@ -1281,6 +1334,7 @@ call_waiting.tone =
|
|||
call_waiting.on_code =
|
||||
call_waiting.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL ##
|
||||
#######################################################################################
|
||||
|
|
@ -1323,7 +1377,6 @@ action_url.held =
|
|||
action_url.unheld =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
|
|
@ -1334,6 +1387,7 @@ local_contact.data_photo_tar.url =
|
|||
|
||||
local_contact.photo.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Factory Configuration ##
|
||||
#######################################################################################
|
||||
|
|
@ -1341,12 +1395,14 @@ local_contact.photo.url =
|
|||
static.custom_factory_configuration.url =
|
||||
static.features.custom_factory_config.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Configuration ##
|
||||
#######################################################################################
|
||||
|
||||
static.configuration.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
|
|
@ -1366,6 +1422,7 @@ custom_softkey_talking.url =
|
|||
###The default value is blank.It takes effect after a reboot.
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t58v}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTCP ##
|
||||
#######################################################################################
|
||||
|
|
@ -1398,7 +1455,6 @@ voice.rtcp_xr.enable =
|
|||
voice.rtcp_cname =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
|
|
@ -1455,6 +1511,7 @@ static.auto_provision.attempt_expired_time =
|
|||
phone_setting.ringback_timeout =
|
||||
phone_setting.ringing_timeout =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V80-SP1 Add ##
|
||||
#######################################################################################
|
||||
|
|
@ -1466,6 +1523,8 @@ static.wifi.1.security_mode =
|
|||
static.wifi.1.cipher_type =
|
||||
static.wifi.1.password =
|
||||
features.bluetooth_adapter_name=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V80-SP2 Add ##
|
||||
#######################################################################################
|
||||
|
|
@ -1483,6 +1542,7 @@ features.power_saving.office_hour.saturday =
|
|||
features.power_saving.office_hour.sunday =
|
||||
screensaver.wait_time=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V81 Add ##
|
||||
#######################################################################################
|
||||
|
|
@ -1498,7 +1558,7 @@ dialplan.digitmap.no_match_action =
|
|||
dialplan.digitmap.active.on_hook_dialing =
|
||||
static.auto_provision.flexible.enable =
|
||||
static.auto_provision.flexible.interval=
|
||||
static.auto_provision.flexible.begin_time =
|
||||
static.auto_provision.flexible.begin_time =
|
||||
static.auto_provision.flexible.end_time =
|
||||
voice.jib.wifi.adaptive =
|
||||
voice.jib.wifi.min =
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue