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}
|
||||
|
||||
|
|
|
|||
|
|
@ -3,14 +3,14 @@
|
|||
##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.##
|
||||
|
||||
#######################################################################################
|
||||
## Network CDP ##
|
||||
## Network CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable =
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network IPv6 ##
|
||||
## Network IPv6 ##
|
||||
#######################################################################################
|
||||
static.network.ipv6_static_dns_enable =
|
||||
static.network.ipv6_icmp_v6.enable =
|
||||
|
|
@ -23,7 +23,7 @@ static.network.ipv6_prefix =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network WiFi ##
|
||||
## Network WiFi ##
|
||||
#######################################################################################
|
||||
##static.wifi.X.label=
|
||||
##static.wifi.X.ssid=
|
||||
|
|
@ -51,7 +51,7 @@ static.wifi.show_scan_prompt =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Internet ##
|
||||
## Network Internet ##
|
||||
#######################################################################################
|
||||
static.network.ip_address_mode =
|
||||
static.network.span_to_pc_port =
|
||||
|
|
@ -67,7 +67,7 @@ static.network.internet_port.type =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
static.network.dhcp.option60type =
|
||||
|
|
@ -87,20 +87,19 @@ static.network.internet_port.speed_duplex =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network LLDP ##
|
||||
## Network LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable =
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network VLAN ##
|
||||
## Network VLAN ##
|
||||
#######################################################################################
|
||||
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 =
|
||||
|
|
@ -112,14 +111,14 @@ static.network.vlan.internet_port_vid = {$yealink_vlan_id}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network VPN ##
|
||||
## Network VPN ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network 802.1x ##
|
||||
## Network 802.1x ##
|
||||
#######################################################################################
|
||||
static.network.802_1x.mode =
|
||||
static.network.802_1x.identity =
|
||||
|
|
@ -137,7 +136,7 @@ static.auto_provision.custom.upload_method =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## ZERO Touch ##
|
||||
## ZERO Touch ##
|
||||
#######################################################################################
|
||||
static.zero_touch.enable =
|
||||
static.zero_touch.wait_time =
|
||||
|
|
@ -147,7 +146,7 @@ static.zero_touch.network_fail_wait_times =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
static.auto_provision.server.url = {$yealink_provision_url}
|
||||
static.auto_provision.server.username = {$http_auth_username}
|
||||
|
|
@ -155,7 +154,7 @@ static.auto_provision.server.password = {$http_auth_password}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
static.auto_provision.weekly.enable =
|
||||
static.auto_provision.weekly.dayofweek =
|
||||
|
|
@ -165,27 +164,27 @@ static.auto_provision.weekly_upgrade_interval =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Flexible Autop ##
|
||||
## Flexible Autop ##
|
||||
#######################################################################################
|
||||
static.auto_provision.flexible.end_time =
|
||||
static.auto_provision.flexible.begin_time =
|
||||
|
|
@ -194,7 +193,7 @@ static.auto_provision.flexible.enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision Other ##
|
||||
## Autoprovision Other ##
|
||||
#######################################################################################
|
||||
static.auto_provision.prompt.enable =
|
||||
static.auto_provision.attempt_expired_time =
|
||||
|
|
@ -220,13 +219,13 @@ features.custom_version_info =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
##static.autoprovision.X.name
|
||||
##static.autoprovision.X.code
|
||||
|
|
@ -247,7 +246,7 @@ static.autoprovision.1.mac_aes =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
|
||||
static.managementserver.enable =
|
||||
|
|
@ -261,20 +260,20 @@ static.managementserver.connection_request_username =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Redirect ##
|
||||
## Redirect ##
|
||||
#######################################################################################
|
||||
static.redirect.user_name =
|
||||
static.redirect.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Firmware Update ##
|
||||
## Firmware Update ##
|
||||
#######################################################################################
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t42s}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Confguration ##
|
||||
## Confguration ##
|
||||
#######################################################################################
|
||||
features.factory_reset_option =
|
||||
features.reset_by_long_press_enable =
|
||||
|
|
@ -286,7 +285,7 @@ static.custom_factory_configuration.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## SYSLOG ##
|
||||
## SYSLOG ##
|
||||
#######################################################################################
|
||||
static.syslog.enable =
|
||||
static.syslog.server =
|
||||
|
|
@ -308,7 +307,7 @@ static.network.promisc_mode.enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Log Backup ##
|
||||
## Log Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_log.backup.enable =
|
||||
static.auto_provision.local_log.backup.path =
|
||||
|
|
@ -319,22 +318,21 @@ static.auto_provision.local_log.backup.append.max_file_size =
|
|||
static.auto_provision.local_log.backup.append.limit_mode=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
static.security.var_enable =
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Quick Login ##
|
||||
## Quick Login ##
|
||||
#######################################################################################
|
||||
wui.quick_login =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Security ##
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
static.phone_setting.reserve_certs_enable =
|
||||
features.relog_offtime =
|
||||
|
|
@ -353,42 +351,41 @@ security.tls_cipher_list =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
wui.secure_domain_list =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Encryption ##
|
||||
## Encryption ##
|
||||
#######################################################################################
|
||||
static.auto_provision.encryption.directory =
|
||||
static.auto_provision.encryption.call_log =
|
||||
static.auto_provision.encryption.config =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
features.transfer_type=
|
||||
dialplan.transfer.mode =
|
||||
|
|
@ -400,23 +397,21 @@ phone_setting.call_appearance.transfer_via_new_linekey=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Conference ##
|
||||
## Conference ##
|
||||
#######################################################################################
|
||||
features.conference.with_previous_call.enable =
|
||||
features.local_conf.combine_with_one_press.enable=
|
||||
phone_setting.call_appearance.conference_via_new_linekey=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
phone_setting.incoming_call_when_dialing.priority=
|
||||
phone_setting.hold_or_swap.mode=
|
||||
|
|
@ -461,8 +456,9 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
phone_setting.custom_softkey_enable=
|
||||
custom_softkey_talking.url=
|
||||
|
|
@ -474,7 +470,7 @@ custom_softkey_call_failed.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth ##
|
||||
## Features Bluetooth ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.bluetooth_enable=
|
||||
|
|
@ -482,27 +478,28 @@ features.bluetooth_adapter_name=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features USB Record ##
|
||||
## Features USB Record ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.usb_call_recording.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Codec ##
|
||||
## Codec ##
|
||||
#######################################################################################
|
||||
voice.g726.aal2.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DTMF ##
|
||||
## DTMF ##
|
||||
#######################################################################################
|
||||
features.dtmf.min_interval=
|
||||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
|
@ -519,8 +516,9 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
voice.jib.normal=
|
||||
voice.jib.max =
|
||||
|
|
@ -532,13 +530,15 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
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,8 +617,9 @@ sip.nat_turn.password =
|
|||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
dns_cache_a.1.name =
|
||||
dns_cache_a.1.ip =
|
||||
|
|
@ -636,6 +638,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -673,7 +676,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
|
||||
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
|
||||
|
|
@ -699,7 +702,7 @@ local_contact.icon.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Remote Phonebook ##
|
||||
## Remote Phonebook ##
|
||||
#######################################################################################
|
||||
##remote_phonebook.data.X.url
|
||||
##remote_phonebook.data.X.name
|
||||
|
|
@ -745,9 +748,8 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
ldap.enable = {$ldap_enable}
|
||||
ldap.user = {$ldap_user}
|
||||
|
|
@ -773,7 +775,7 @@ ldap.call_out_lookup = {$ldap_dial_lookup}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## History ##
|
||||
## History ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_calllog.write_delay.terminated=
|
||||
static.auto_provision.local_calllog.backup.path=
|
||||
|
|
@ -789,14 +791,14 @@ features.redial_via_local_sip_server.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Backup ##
|
||||
## Contact Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_contact.backup.path =
|
||||
static.auto_provision.local_contact.backup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Other ##
|
||||
## Contact Other ##
|
||||
#######################################################################################
|
||||
directory.search_type=
|
||||
directory_setting.local_directory.enable =
|
||||
|
|
@ -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 ##
|
||||
#######################################################################################
|
||||
|
|
@ -1209,7 +1202,7 @@ phone_setting.missed_call_power_led_flash.enable = {$yealink_missed_call_power_l
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Time&Date ##
|
||||
## Time&Date ##
|
||||
#######################################################################################
|
||||
lcl.datetime.date.format =
|
||||
auto_dst.url =
|
||||
|
|
@ -1232,9 +1225,8 @@ local_time.time_zone = {$yealink_time_zone}
|
|||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
##multicast.listen_address.X.label
|
||||
##multicast.paging_address.X.channel
|
||||
|
|
@ -1264,7 +1256,7 @@ multicast.listen_address.1.volume=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Preference&Status ##
|
||||
## Preference&Status ##
|
||||
#######################################################################################
|
||||
##Not support T19P_E2
|
||||
static.features.default_account=
|
||||
|
|
@ -1290,8 +1282,9 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
dialplan.digitmap.enable=
|
||||
dialplan.digitmap.string=
|
||||
|
|
@ -1306,10 +1299,8 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan.emergency.enable=
|
||||
dialplan.emergency.1.value=
|
||||
|
|
@ -1326,9 +1317,8 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan_replace_rule.url=
|
||||
dialplan.replace.line_id.1=
|
||||
|
|
@ -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)
|
||||
|
|
@ -1449,12 +1441,13 @@ expansion_module.backgrounds=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## BSFT Setting ##
|
||||
## BSFT Setting ##
|
||||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
phone_setting.auto_blf_list_enable = 1
|
||||
phone_setting.blf_list_sequence_type = 1
|
||||
|
|
@ -1501,16 +1494,16 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode = {$yealink_blf_led_mode}
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
features.auto_release_bla_line=
|
||||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
features.call_park.enable=
|
||||
features.call_park.park_mode=
|
||||
|
|
@ -1526,16 +1519,14 @@ features.call_park.line_restriction.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft ACD ##
|
||||
## Broadsoft ACD ##
|
||||
#######################################################################################
|
||||
acd.enable=
|
||||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
bw.xsi.enable=
|
||||
sip.authentication_for_xsi =
|
||||
|
|
@ -1543,7 +1534,7 @@ default_input_method.xsi_password=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Network Directory ##
|
||||
## Broadsoft Network Directory ##
|
||||
#######################################################################################
|
||||
bw.xsi.directory.enable=
|
||||
bw.calllog_and_dir =
|
||||
|
|
@ -1567,9 +1558,8 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
features.pickup.direct_pickup_enable =
|
||||
features.pickup.group_pickup_enable =
|
||||
|
|
@ -1580,44 +1570,40 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
features.alert_info_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
#######################################################################################
|
||||
bw.voice_mail.visual.enable=
|
||||
voice_mail.message_key.mode=
|
||||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
bw.call_recording.mode =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Decline ##
|
||||
## Broadsoft Call Decline ##
|
||||
#######################################################################################
|
||||
features.call_decline.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF Ring Type ##
|
||||
## BLF Ring Type ##
|
||||
#######################################################################################
|
||||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
features.feature_key_sync.enable =
|
||||
features.forward.feature_key_sync.local_processing.enable =
|
||||
|
|
@ -1628,7 +1614,7 @@ call_waiting.mode =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft UC ##
|
||||
## Broadsoft UC ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T29G Models support the parameter
|
||||
bw.xmpp.enable =
|
||||
|
|
@ -1645,10 +1631,8 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
meta.enable =
|
||||
meta.login_mode =
|
||||
|
|
@ -1673,7 +1657,7 @@ meta.comm_portal.keep_alive_interval_time =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Genbend Setting ##
|
||||
## Genbend Setting ##
|
||||
#######################################################################################
|
||||
gb.sopi.enable=
|
||||
gb.sopi.gab.enable=
|
||||
|
|
|
|||
|
|
@ -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 ##
|
||||
#######################################################################################
|
||||
|
|
@ -311,7 +324,30 @@ sip.use_out_bound_in_dialog =
|
|||
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}
|
||||
{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}
|
||||
|
||||
|
|
|
|||
|
|
@ -3,14 +3,14 @@
|
|||
##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.##
|
||||
|
||||
#######################################################################################
|
||||
## Network CDP ##
|
||||
## Network CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable =
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network IPv6 ##
|
||||
## Network IPv6 ##
|
||||
#######################################################################################
|
||||
static.network.ipv6_static_dns_enable =
|
||||
static.network.ipv6_icmp_v6.enable =
|
||||
|
|
@ -23,7 +23,7 @@ static.network.ipv6_prefix =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network WiFi ##
|
||||
## Network WiFi ##
|
||||
#######################################################################################
|
||||
##static.wifi.X.label=
|
||||
##static.wifi.X.ssid=
|
||||
|
|
@ -51,7 +51,7 @@ static.wifi.show_scan_prompt =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Internet ##
|
||||
## Network Internet ##
|
||||
#######################################################################################
|
||||
static.network.ip_address_mode =
|
||||
static.network.span_to_pc_port =
|
||||
|
|
@ -67,7 +67,7 @@ static.network.internet_port.type =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
static.network.dhcp.option60type =
|
||||
|
|
@ -87,14 +87,14 @@ static.network.internet_port.speed_duplex =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network LLDP ##
|
||||
## Network LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable =
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network VLAN ##
|
||||
## Network VLAN ##
|
||||
#######################################################################################
|
||||
static.network.vlan.dhcp_enable =
|
||||
static.network.vlan.dhcp_option =
|
||||
|
|
@ -111,14 +111,14 @@ static.network.vlan.internet_port_vid = {$yealink_vlan_id}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network VPN ##
|
||||
## Network VPN ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network 802.1x ##
|
||||
## Network 802.1x ##
|
||||
#######################################################################################
|
||||
static.network.802_1x.mode =
|
||||
static.network.802_1x.identity =
|
||||
|
|
@ -136,7 +136,7 @@ static.auto_provision.custom.upload_method =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## ZERO Touch ##
|
||||
## ZERO Touch ##
|
||||
#######################################################################################
|
||||
static.zero_touch.enable =
|
||||
static.zero_touch.wait_time =
|
||||
|
|
@ -146,7 +146,7 @@ static.zero_touch.network_fail_wait_times =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
static.auto_provision.server.url = {$yealink_provision_url}
|
||||
static.auto_provision.server.username = {$http_auth_username}
|
||||
|
|
@ -154,7 +154,7 @@ static.auto_provision.server.password = {$http_auth_password}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
static.auto_provision.weekly.enable =
|
||||
static.auto_provision.weekly.dayofweek =
|
||||
|
|
@ -164,34 +164,36 @@ static.auto_provision.weekly_upgrade_interval =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Flexible Autop ##
|
||||
## Flexible Autop ##
|
||||
#######################################################################################
|
||||
static.auto_provision.flexible.end_time =
|
||||
static.auto_provision.flexible.begin_time =
|
||||
static.auto_provision.flexible.interval =
|
||||
static.auto_provision.flexible.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision Other ##
|
||||
## Autoprovision Other ##
|
||||
#######################################################################################
|
||||
static.auto_provision.prompt.enable =
|
||||
static.auto_provision.attempt_expired_time =
|
||||
|
|
@ -215,15 +217,15 @@ static.auto_provision.aes_key_16.mac =
|
|||
static.auto_provision.aes_key_16.com =
|
||||
features.custom_version_info =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
##static.autoprovision.X.name
|
||||
##static.autoprovision.X.code
|
||||
|
|
@ -243,9 +245,8 @@ static.autoprovision.1.com_aes =
|
|||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
|
||||
static.managementserver.enable =
|
||||
|
|
@ -258,23 +259,21 @@ static.managementserver.connection_request_password =
|
|||
static.managementserver.connection_request_username =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Redirect ##
|
||||
## Redirect ##
|
||||
#######################################################################################
|
||||
static.redirect.user_name =
|
||||
static.redirect.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Firmware Update ##
|
||||
## Firmware Update ##
|
||||
#######################################################################################
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t46s}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Confguration ##
|
||||
## Confguration ##
|
||||
#######################################################################################
|
||||
features.factory_reset_option =
|
||||
features.reset_by_long_press_enable =
|
||||
|
|
@ -286,7 +285,7 @@ static.custom_factory_configuration.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## SYSLOG ##
|
||||
## SYSLOG ##
|
||||
#######################################################################################
|
||||
static.syslog.enable =
|
||||
static.syslog.server =
|
||||
|
|
@ -308,7 +307,7 @@ static.network.promisc_mode.enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Log Backup ##
|
||||
## Log Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_log.backup.enable =
|
||||
static.auto_provision.local_log.backup.path =
|
||||
|
|
@ -319,22 +318,21 @@ static.auto_provision.local_log.backup.append.max_file_size =
|
|||
static.auto_provision.local_log.backup.append.limit_mode=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
static.security.var_enable =
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Quick Login ##
|
||||
## Quick Login ##
|
||||
#######################################################################################
|
||||
wui.quick_login =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Security ##
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
static.phone_setting.reserve_certs_enable =
|
||||
features.relog_offtime =
|
||||
|
|
@ -353,42 +351,41 @@ security.tls_cipher_list =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
wui.secure_domain_list =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Encryption ##
|
||||
## Encryption ##
|
||||
#######################################################################################
|
||||
static.auto_provision.encryption.directory =
|
||||
static.auto_provision.encryption.call_log =
|
||||
static.auto_provision.encryption.config =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
features.transfer_type=
|
||||
dialplan.transfer.mode =
|
||||
|
|
@ -400,23 +397,21 @@ phone_setting.call_appearance.transfer_via_new_linekey=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Conference ##
|
||||
## Conference ##
|
||||
#######################################################################################
|
||||
features.conference.with_previous_call.enable =
|
||||
features.local_conf.combine_with_one_press.enable=
|
||||
phone_setting.call_appearance.conference_via_new_linekey=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
phone_setting.incoming_call_when_dialing.priority=
|
||||
phone_setting.hold_or_swap.mode=
|
||||
|
|
@ -461,8 +456,9 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
phone_setting.custom_softkey_enable=
|
||||
custom_softkey_talking.url=
|
||||
|
|
@ -474,7 +470,7 @@ custom_softkey_call_failed.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth ##
|
||||
## Features Bluetooth ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.bluetooth_enable=
|
||||
|
|
@ -482,27 +478,28 @@ features.bluetooth_adapter_name=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features USB Record ##
|
||||
## Features USB Record ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.usb_call_recording.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Codec ##
|
||||
## Codec ##
|
||||
#######################################################################################
|
||||
voice.g726.aal2.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DTMF ##
|
||||
## DTMF ##
|
||||
#######################################################################################
|
||||
features.dtmf.min_interval=
|
||||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
|
@ -519,8 +516,9 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
voice.jib.normal=
|
||||
voice.jib.max =
|
||||
|
|
@ -532,13 +530,15 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
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 ##
|
||||
################################################################
|
||||
|
|
@ -618,7 +619,7 @@ sip.nat_turn.port =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
dns_cache_a.1.name =
|
||||
dns_cache_a.1.ip =
|
||||
|
|
@ -637,6 +638,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -674,7 +676,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
|
||||
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
|
||||
|
|
@ -700,7 +702,7 @@ local_contact.icon.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Remote Phonebook ##
|
||||
## Remote Phonebook ##
|
||||
#######################################################################################
|
||||
##remote_phonebook.data.X.url
|
||||
##remote_phonebook.data.X.name
|
||||
|
|
@ -746,9 +748,8 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
ldap.enable = {$ldap_enable}
|
||||
ldap.user = {$ldap_user}
|
||||
|
|
@ -774,7 +775,7 @@ ldap.call_out_lookup = {$ldap_dial_lookup}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## History ##
|
||||
## History ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_calllog.write_delay.terminated=
|
||||
static.auto_provision.local_calllog.backup.path=
|
||||
|
|
@ -790,14 +791,14 @@ features.redial_via_local_sip_server.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Backup ##
|
||||
## Contact Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_contact.backup.path =
|
||||
static.auto_provision.local_contact.backup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Other ##
|
||||
## Contact Other ##
|
||||
#######################################################################################
|
||||
directory.search_type=
|
||||
directory_setting.local_directory.enable =
|
||||
|
|
@ -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 ##
|
||||
#######################################################################################
|
||||
|
|
@ -1210,7 +1202,7 @@ phone_setting.missed_call_power_led_flash.enable = {$yealink_missed_call_power_l
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Time&Date ##
|
||||
## Time&Date ##
|
||||
#######################################################################################
|
||||
lcl.datetime.date.format =
|
||||
auto_dst.url =
|
||||
|
|
@ -1233,9 +1225,8 @@ local_time.time_zone = {$yealink_time_zone}
|
|||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
##multicast.listen_address.X.label
|
||||
##multicast.paging_address.X.channel
|
||||
|
|
@ -1265,7 +1256,7 @@ multicast.listen_address.1.volume=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Preference&Status ##
|
||||
## Preference&Status ##
|
||||
#######################################################################################
|
||||
##Not support T19P_E2
|
||||
static.features.default_account=
|
||||
|
|
@ -1291,8 +1282,9 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
dialplan.digitmap.enable=
|
||||
dialplan.digitmap.string=
|
||||
|
|
@ -1307,10 +1299,8 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan.emergency.enable=
|
||||
dialplan.emergency.1.value=
|
||||
|
|
@ -1327,9 +1317,8 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan_replace_rule.url=
|
||||
dialplan.replace.line_id.1=
|
||||
|
|
@ -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 ##
|
||||
#######################################################################################
|
||||
|
|
@ -1450,12 +1441,13 @@ expansion_module.backgrounds=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## BSFT Setting ##
|
||||
## BSFT Setting ##
|
||||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
phone_setting.auto_blf_list_enable = 1
|
||||
phone_setting.blf_list_sequence_type = 1
|
||||
|
|
@ -1502,16 +1494,16 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode = {$yealink_blf_led_mode}
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
features.auto_release_bla_line=
|
||||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
features.call_park.enable=
|
||||
features.call_park.park_mode=
|
||||
|
|
@ -1527,16 +1519,14 @@ features.call_park.line_restriction.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft ACD ##
|
||||
## Broadsoft ACD ##
|
||||
#######################################################################################
|
||||
acd.enable=
|
||||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
bw.xsi.enable=
|
||||
sip.authentication_for_xsi =
|
||||
|
|
@ -1544,7 +1534,7 @@ default_input_method.xsi_password=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Network Directory ##
|
||||
## Broadsoft Network Directory ##
|
||||
#######################################################################################
|
||||
bw.xsi.directory.enable=
|
||||
bw.calllog_and_dir =
|
||||
|
|
@ -1568,9 +1558,8 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
features.pickup.direct_pickup_enable =
|
||||
features.pickup.group_pickup_enable =
|
||||
|
|
@ -1581,44 +1570,40 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
features.alert_info_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
#######################################################################################
|
||||
bw.voice_mail.visual.enable=
|
||||
voice_mail.message_key.mode=
|
||||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
bw.call_recording.mode =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Decline ##
|
||||
## Broadsoft Call Decline ##
|
||||
#######################################################################################
|
||||
features.call_decline.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF Ring Type ##
|
||||
## BLF Ring Type ##
|
||||
#######################################################################################
|
||||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
features.feature_key_sync.enable =
|
||||
features.forward.feature_key_sync.local_processing.enable =
|
||||
|
|
@ -1629,7 +1614,7 @@ call_waiting.mode =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft UC ##
|
||||
## Broadsoft UC ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T29G Models support the parameter
|
||||
bw.xmpp.enable =
|
||||
|
|
@ -1646,10 +1631,8 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
meta.enable =
|
||||
meta.login_mode =
|
||||
|
|
@ -1674,7 +1657,7 @@ meta.comm_portal.keep_alive_interval_time =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Genbend Setting ##
|
||||
## Genbend Setting ##
|
||||
#######################################################################################
|
||||
gb.sopi.enable=
|
||||
gb.sopi.gab.enable=
|
||||
|
|
@ -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 ##
|
||||
|
|
|
|||
|
|
@ -3,14 +3,14 @@
|
|||
##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.##
|
||||
|
||||
#######################################################################################
|
||||
## Network CDP ##
|
||||
## Network CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable =
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network IPv6 ##
|
||||
## Network IPv6 ##
|
||||
#######################################################################################
|
||||
static.network.ipv6_static_dns_enable =
|
||||
static.network.ipv6_icmp_v6.enable =
|
||||
|
|
@ -23,7 +23,7 @@ static.network.ipv6_prefix =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network WiFi ##
|
||||
## Network WiFi ##
|
||||
#######################################################################################
|
||||
##static.wifi.X.label=
|
||||
##static.wifi.X.ssid=
|
||||
|
|
@ -51,7 +51,7 @@ static.wifi.show_scan_prompt =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Internet ##
|
||||
## Network Internet ##
|
||||
#######################################################################################
|
||||
static.network.ip_address_mode =
|
||||
static.network.span_to_pc_port =
|
||||
|
|
@ -67,7 +67,7 @@ static.network.internet_port.type =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
static.network.dhcp.option60type =
|
||||
|
|
@ -87,14 +87,14 @@ static.network.internet_port.speed_duplex =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network LLDP ##
|
||||
## Network LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable =
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network VLAN ##
|
||||
## Network VLAN ##
|
||||
#######################################################################################
|
||||
static.network.vlan.dhcp_enable =
|
||||
static.network.vlan.dhcp_option =
|
||||
|
|
@ -111,14 +111,14 @@ static.network.vlan.internet_port_vid = {$yealink_vlan_id}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network VPN ##
|
||||
## Network VPN ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network 802.1x ##
|
||||
## Network 802.1x ##
|
||||
#######################################################################################
|
||||
static.network.802_1x.mode =
|
||||
static.network.802_1x.identity =
|
||||
|
|
@ -136,7 +136,7 @@ static.auto_provision.custom.upload_method =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## ZERO Touch ##
|
||||
## ZERO Touch ##
|
||||
#######################################################################################
|
||||
static.zero_touch.enable =
|
||||
static.zero_touch.wait_time =
|
||||
|
|
@ -146,7 +146,7 @@ static.zero_touch.network_fail_wait_times =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
static.auto_provision.server.url = {$yealink_provision_url}
|
||||
static.auto_provision.server.username = {$http_auth_username}
|
||||
|
|
@ -154,7 +154,7 @@ static.auto_provision.server.password = {$http_auth_password}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
static.auto_provision.weekly.enable =
|
||||
static.auto_provision.weekly.dayofweek =
|
||||
|
|
@ -164,27 +164,27 @@ static.auto_provision.weekly_upgrade_interval =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Flexible Autop ##
|
||||
## Flexible Autop ##
|
||||
#######################################################################################
|
||||
static.auto_provision.flexible.end_time =
|
||||
static.auto_provision.flexible.begin_time =
|
||||
|
|
@ -193,7 +193,7 @@ static.auto_provision.flexible.enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision Other ##
|
||||
## Autoprovision Other ##
|
||||
#######################################################################################
|
||||
static.auto_provision.prompt.enable =
|
||||
static.auto_provision.attempt_expired_time =
|
||||
|
|
@ -219,13 +219,13 @@ features.custom_version_info =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
##static.autoprovision.X.name
|
||||
##static.autoprovision.X.code
|
||||
|
|
@ -246,7 +246,7 @@ static.autoprovision.1.mac_aes =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
|
||||
static.managementserver.enable =
|
||||
|
|
@ -260,20 +260,20 @@ static.managementserver.connection_request_username =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Redirect ##
|
||||
## Redirect ##
|
||||
#######################################################################################
|
||||
static.redirect.user_name =
|
||||
static.redirect.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Firmware Update ##
|
||||
## Firmware Update ##
|
||||
#######################################################################################
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t48s}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Confguration ##
|
||||
## Confguration ##
|
||||
#######################################################################################
|
||||
features.factory_reset_option =
|
||||
features.reset_by_long_press_enable =
|
||||
|
|
@ -285,7 +285,7 @@ static.custom_factory_configuration.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## SYSLOG ##
|
||||
## SYSLOG ##
|
||||
#######################################################################################
|
||||
static.syslog.enable =
|
||||
static.syslog.server =
|
||||
|
|
@ -307,7 +307,7 @@ static.network.promisc_mode.enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Log Backup ##
|
||||
## Log Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_log.backup.enable =
|
||||
static.auto_provision.local_log.backup.path =
|
||||
|
|
@ -319,20 +319,20 @@ static.auto_provision.local_log.backup.append.limit_mode=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
static.security.var_enable =
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Quick Login ##
|
||||
## Quick Login ##
|
||||
#######################################################################################
|
||||
wui.quick_login =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Security ##
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
static.phone_setting.reserve_certs_enable =
|
||||
features.relog_offtime =
|
||||
|
|
@ -351,34 +351,33 @@ security.tls_cipher_list =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
wui.secure_domain_list =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Encryption ##
|
||||
## Encryption ##
|
||||
#######################################################################################
|
||||
static.auto_provision.encryption.directory =
|
||||
static.auto_provision.encryption.call_log =
|
||||
|
|
@ -386,7 +385,7 @@ static.auto_provision.encryption.config =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
features.transfer_type=
|
||||
dialplan.transfer.mode =
|
||||
|
|
@ -398,7 +397,7 @@ phone_setting.call_appearance.transfer_via_new_linekey=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Conference ##
|
||||
## Conference ##
|
||||
#######################################################################################
|
||||
features.conference.with_previous_call.enable =
|
||||
features.local_conf.combine_with_one_press.enable=
|
||||
|
|
@ -406,13 +405,13 @@ phone_setting.call_appearance.conference_via_new_linekey=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
phone_setting.incoming_call_when_dialing.priority=
|
||||
phone_setting.hold_or_swap.mode=
|
||||
|
|
@ -457,8 +456,9 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
phone_setting.custom_softkey_enable=
|
||||
custom_softkey_talking.url=
|
||||
|
|
@ -470,7 +470,7 @@ custom_softkey_call_failed.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth ##
|
||||
## Features Bluetooth ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.bluetooth_enable=
|
||||
|
|
@ -478,27 +478,28 @@ features.bluetooth_adapter_name=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features USB Record ##
|
||||
## Features USB Record ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.usb_call_recording.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Codec ##
|
||||
## Codec ##
|
||||
#######################################################################################
|
||||
voice.g726.aal2.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DTMF ##
|
||||
## DTMF ##
|
||||
#######################################################################################
|
||||
features.dtmf.min_interval=
|
||||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
|
@ -515,8 +516,9 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
voice.jib.normal=
|
||||
voice.jib.max =
|
||||
|
|
@ -528,13 +530,15 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
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,8 +617,9 @@ sip.nat_turn.password =
|
|||
sip.nat_turn.server =
|
||||
sip.nat_turn.port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
dns_cache_a.1.name =
|
||||
dns_cache_a.1.ip =
|
||||
|
|
@ -632,6 +638,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -669,7 +676,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
|
||||
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
|
||||
|
|
@ -695,7 +702,7 @@ local_contact.icon.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Remote Phonebook ##
|
||||
## Remote Phonebook ##
|
||||
#######################################################################################
|
||||
##remote_phonebook.data.X.url
|
||||
##remote_phonebook.data.X.name
|
||||
|
|
@ -741,9 +748,8 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
ldap.enable = {$ldap_enable}
|
||||
ldap.user = {$ldap_user}
|
||||
|
|
@ -769,7 +775,7 @@ ldap.call_out_lookup = {$ldap_dial_lookup}
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## History ##
|
||||
## History ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_calllog.write_delay.terminated=
|
||||
static.auto_provision.local_calllog.backup.path=
|
||||
|
|
@ -785,14 +791,14 @@ features.redial_via_local_sip_server.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Backup ##
|
||||
## Contact Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_contact.backup.path =
|
||||
static.auto_provision.local_contact.backup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Other ##
|
||||
## Contact Other ##
|
||||
#######################################################################################
|
||||
directory.search_type=
|
||||
directory_setting.local_directory.enable =
|
||||
|
|
@ -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 ##
|
||||
#######################################################################################
|
||||
|
|
@ -1205,7 +1202,7 @@ phone_setting.missed_call_power_led_flash.enable = {$yealink_missed_call_power_l
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Time&Date ##
|
||||
## Time&Date ##
|
||||
#######################################################################################
|
||||
lcl.datetime.date.format =
|
||||
auto_dst.url =
|
||||
|
|
@ -1228,9 +1225,8 @@ local_time.time_zone = {$yealink_time_zone}
|
|||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
##multicast.listen_address.X.label
|
||||
##multicast.paging_address.X.channel
|
||||
|
|
@ -1260,7 +1256,7 @@ multicast.listen_address.1.volume=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Preference&Status ##
|
||||
## Preference&Status ##
|
||||
#######################################################################################
|
||||
##Not support T19P_E2
|
||||
static.features.default_account=
|
||||
|
|
@ -1286,8 +1282,9 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
dialplan.digitmap.enable=
|
||||
dialplan.digitmap.string=
|
||||
|
|
@ -1302,10 +1299,8 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan.emergency.enable=
|
||||
dialplan.emergency.1.value=
|
||||
|
|
@ -1322,9 +1317,8 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan_replace_rule.url=
|
||||
dialplan.replace.line_id.1=
|
||||
|
|
@ -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 ##
|
||||
#######################################################################################
|
||||
|
|
@ -1445,12 +1441,13 @@ expansion_module.backgrounds=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## BSFT Setting ##
|
||||
## BSFT Setting ##
|
||||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
phone_setting.auto_blf_list_enable = 1
|
||||
phone_setting.blf_list_sequence_type = 1
|
||||
|
|
@ -1497,16 +1494,16 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode = {$yealink_blf_led_mode}
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
features.auto_release_bla_line=
|
||||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
features.call_park.enable=
|
||||
features.call_park.park_mode=
|
||||
|
|
@ -1522,16 +1519,14 @@ features.call_park.line_restriction.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft ACD ##
|
||||
## Broadsoft ACD ##
|
||||
#######################################################################################
|
||||
acd.enable=
|
||||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
bw.xsi.enable=
|
||||
sip.authentication_for_xsi =
|
||||
|
|
@ -1539,7 +1534,7 @@ default_input_method.xsi_password=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Network Directory ##
|
||||
## Broadsoft Network Directory ##
|
||||
#######################################################################################
|
||||
bw.xsi.directory.enable=
|
||||
bw.calllog_and_dir =
|
||||
|
|
@ -1563,9 +1558,8 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
features.pickup.direct_pickup_enable =
|
||||
features.pickup.group_pickup_enable =
|
||||
|
|
@ -1576,44 +1570,40 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
features.alert_info_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
#######################################################################################
|
||||
bw.voice_mail.visual.enable=
|
||||
voice_mail.message_key.mode=
|
||||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
bw.call_recording.mode =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Decline ##
|
||||
## Broadsoft Call Decline ##
|
||||
#######################################################################################
|
||||
features.call_decline.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF Ring Type ##
|
||||
## BLF Ring Type ##
|
||||
#######################################################################################
|
||||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
features.feature_key_sync.enable =
|
||||
features.forward.feature_key_sync.local_processing.enable =
|
||||
|
|
@ -1624,7 +1614,7 @@ call_waiting.mode =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft UC ##
|
||||
## Broadsoft UC ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T29G Models support the parameter
|
||||
bw.xmpp.enable =
|
||||
|
|
@ -1641,10 +1631,8 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
meta.enable =
|
||||
meta.login_mode =
|
||||
|
|
@ -1669,7 +1657,7 @@ meta.comm_portal.keep_alive_interval_time =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Genbend Setting ##
|
||||
## Genbend Setting ##
|
||||
#######################################################################################
|
||||
gb.sopi.enable=
|
||||
gb.sopi.gab.enable=
|
||||
|
|
|
|||
|
|
@ -1,18 +1,16 @@
|
|||
|
||||
#!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.##
|
||||
|
||||
#######################################################################################
|
||||
## Network CDP ##
|
||||
## Network CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable =
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network IPv6 ##
|
||||
## Network IPv6 ##
|
||||
#######################################################################################
|
||||
static.network.ipv6_static_dns_enable =
|
||||
static.network.ipv6_icmp_v6.enable =
|
||||
|
|
@ -23,8 +21,9 @@ static.network.ipv6_internet_port.ip =
|
|||
static.network.ipv6_internet_port.type =
|
||||
static.network.ipv6_prefix =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network WiFi ##
|
||||
## Network WiFi ##
|
||||
#######################################################################################
|
||||
##static.wifi.X.label=
|
||||
##static.wifi.X.ssid=
|
||||
|
|
@ -52,9 +51,9 @@ static.wifi.show_scan_prompt =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Internet ##
|
||||
## 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 =
|
||||
|
|
@ -68,7 +67,7 @@ static.network.internet_port.type =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
static.network.dhcp.option60type =
|
||||
|
|
@ -87,23 +86,20 @@ static.network.pc_port.speed_duplex =
|
|||
static.network.internet_port.speed_duplex =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network LLDP ##
|
||||
## Network LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable =
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network VLAN ##
|
||||
## Network VLAN ##
|
||||
#######################################################################################
|
||||
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 =
|
||||
|
|
@ -114,15 +110,14 @@ static.network.vlan.internet_port_enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network VPN ##
|
||||
## Network VPN ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network 802.1x ##
|
||||
## Network 802.1x ##
|
||||
#######################################################################################
|
||||
static.network.802_1x.mode =
|
||||
static.network.802_1x.identity =
|
||||
|
|
@ -133,17 +128,14 @@ 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 ##
|
||||
## ZERO Touch ##
|
||||
#######################################################################################
|
||||
static.zero_touch.enable =
|
||||
static.zero_touch.wait_time =
|
||||
|
|
@ -153,7 +145,7 @@ static.zero_touch.network_fail_wait_times =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
static.auto_provision.server.url =
|
||||
static.auto_provision.server.username =
|
||||
|
|
@ -161,7 +153,7 @@ static.auto_provision.server.password =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
static.auto_provision.weekly.enable =
|
||||
static.auto_provision.weekly.dayofweek =
|
||||
|
|
@ -169,35 +161,38 @@ static.auto_provision.weekly.end_time =
|
|||
static.auto_provision.weekly.begin_time =
|
||||
static.auto_provision.weekly_upgrade_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Flexible Autop ##
|
||||
## Flexible Autop ##
|
||||
#######################################################################################
|
||||
static.auto_provision.flexible.end_time =
|
||||
static.auto_provision.flexible.begin_time =
|
||||
static.auto_provision.flexible.interval =
|
||||
static.auto_provision.flexible.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision Other ##
|
||||
## Autoprovision Other ##
|
||||
#######################################################################################
|
||||
static.auto_provision.prompt.enable =
|
||||
static.auto_provision.attempt_expired_time =
|
||||
|
|
@ -221,15 +216,15 @@ static.auto_provision.aes_key_16.mac =
|
|||
static.auto_provision.aes_key_16.com =
|
||||
features.custom_version_info =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
##static.autoprovision.X.name
|
||||
##static.autoprovision.X.code
|
||||
|
|
@ -249,9 +244,8 @@ static.autoprovision.1.com_aes =
|
|||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
|
||||
static.managementserver.enable =
|
||||
|
|
@ -264,23 +258,21 @@ static.managementserver.connection_request_password =
|
|||
static.managementserver.connection_request_username =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Redirect ##
|
||||
## Redirect ##
|
||||
#######################################################################################
|
||||
static.redirect.user_name =
|
||||
static.redirect.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Firmware Update ##
|
||||
## Firmware Update ##
|
||||
#######################################################################################
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t52s}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Confguration ##
|
||||
## Confguration ##
|
||||
#######################################################################################
|
||||
features.factory_reset_option =
|
||||
features.reset_by_long_press_enable =
|
||||
|
|
@ -292,7 +284,7 @@ static.custom_factory_configuration.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## SYSLOG ##
|
||||
## SYSLOG ##
|
||||
#######################################################################################
|
||||
static.syslog.enable =
|
||||
static.syslog.server =
|
||||
|
|
@ -314,7 +306,7 @@ static.network.promisc_mode.enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Log Backup ##
|
||||
## Log Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_log.backup.enable =
|
||||
static.auto_provision.local_log.backup.path =
|
||||
|
|
@ -325,22 +317,21 @@ static.auto_provision.local_log.backup.append.max_file_size =
|
|||
static.auto_provision.local_log.backup.append.limit_mode=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
static.security.var_enable =
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Quick Login ##
|
||||
## Quick Login ##
|
||||
#######################################################################################
|
||||
wui.quick_login =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Security ##
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
static.phone_setting.reserve_certs_enable =
|
||||
features.relog_offtime =
|
||||
|
|
@ -357,42 +348,41 @@ security.tls_cipher_list =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
wui.secure_domain_list =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Encryption ##
|
||||
## Encryption ##
|
||||
#######################################################################################
|
||||
static.auto_provision.encryption.directory =
|
||||
static.auto_provision.encryption.call_log =
|
||||
static.auto_provision.encryption.config =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
features.transfer_type=
|
||||
dialplan.transfer.mode =
|
||||
|
|
@ -404,23 +394,21 @@ phone_setting.call_appearance.transfer_via_new_linekey=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Conference ##
|
||||
## Conference ##
|
||||
#######################################################################################
|
||||
features.conference.with_previous_call.enable =
|
||||
features.local_conf.combine_with_one_press.enable=
|
||||
phone_setting.call_appearance.conference_via_new_linekey=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
phone_setting.incoming_call_when_dialing.priority=
|
||||
phone_setting.hold_or_swap.mode=
|
||||
|
|
@ -465,8 +453,9 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
phone_setting.custom_softkey_enable=
|
||||
custom_softkey_talking.url=
|
||||
|
|
@ -478,7 +467,7 @@ custom_softkey_call_failed.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth ##
|
||||
## Features Bluetooth ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.bluetooth_enable=
|
||||
|
|
@ -486,27 +475,28 @@ features.bluetooth_adapter_name=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features USB Record ##
|
||||
## Features USB Record ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.usb_call_recording.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Codec ##
|
||||
## Codec ##
|
||||
#######################################################################################
|
||||
voice.g726.aal2.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DTMF ##
|
||||
## DTMF ##
|
||||
#######################################################################################
|
||||
features.dtmf.min_interval=
|
||||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
|
@ -523,8 +513,9 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
voice.jib.normal=
|
||||
voice.jib.max =
|
||||
|
|
@ -536,13 +527,15 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
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,13 +604,13 @@ 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 ##
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
dns_cache_a.1.name =
|
||||
dns_cache_a.1.ip =
|
||||
|
|
@ -635,6 +629,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -672,7 +667,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
static.directory_setting.url=
|
||||
super_search.url=
|
||||
|
|
@ -696,7 +691,7 @@ local_contact.icon.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Remote Phonebook ##
|
||||
## Remote Phonebook ##
|
||||
#######################################################################################
|
||||
##remote_phonebook.data.X.url
|
||||
##remote_phonebook.data.X.name
|
||||
|
|
@ -742,10 +737,8 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
ldap.enable=
|
||||
ldap.user=
|
||||
|
|
@ -771,7 +764,7 @@ ldap.call_out_lookup=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## History ##
|
||||
## History ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_calllog.write_delay.terminated=
|
||||
static.auto_provision.local_calllog.backup.path=
|
||||
|
|
@ -787,23 +780,23 @@ features.redial_via_local_sip_server.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Backup ##
|
||||
## Contact Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_contact.backup.path =
|
||||
static.auto_provision.local_contact.backup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Other ##
|
||||
## Contact Other ##
|
||||
#######################################################################################
|
||||
directory.search_type=
|
||||
directory_setting.local_directory.enable =
|
||||
directory_setting.local_directory.priority =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Programablekey ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## Programablekey ##
|
||||
#######################################################################################
|
||||
#programablekey.X.type
|
||||
#programablekey.X.line
|
||||
#programablekey.X.value
|
||||
|
|
@ -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,9 +816,10 @@ programablekey.1.xml_phonebook =
|
|||
programablekey.1.pickup_value =
|
||||
programablekey.1.extension =
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
##linekey.X.line
|
||||
##linekey.X.value
|
||||
##linekey.X.pickup_value
|
||||
|
|
@ -861,13 +854,14 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
#######################################################################################
|
||||
## Dsskey ##
|
||||
#######################################################################################
|
||||
|
||||
#######################################################################################
|
||||
## 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,10 +869,9 @@ features.keep_switch_page_key.enable=
|
|||
phone_setting.idle_dsskey_and_title.transparency=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
##expansion_module.X.key.Y.type
|
||||
##expansion_module.X.key.Y.line
|
||||
##expansion_module.X.key.Y.value
|
||||
|
|
@ -925,9 +918,9 @@ expansion_module.2.key.{$row.device_key_id}.xml_phonebook =
|
|||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## EDK ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## EDK ##
|
||||
#######################################################################################
|
||||
##EDK Soft Keys(X ranges from 1 to 10)
|
||||
|
||||
features.enhanced_dss_keys.enable=
|
||||
|
|
@ -959,19 +952,18 @@ edk.edkprompt.1.type=
|
|||
edk.edkprompt.1.userfeedback=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
push_xml.server=
|
||||
push_xml.sip_notify=
|
||||
push_xml.block_in_calling=
|
||||
default_input_method.xml_browser_input_screen=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## Forward ##
|
||||
#######################################################################################
|
||||
features.fwd.allow=
|
||||
features.fwd_mode=
|
||||
forward.no_answer.enable=
|
||||
|
|
@ -994,9 +986,8 @@ forward.idle_access_always_fwd.enable=
|
|||
features.forward_call_popup.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
features.dnd.allow=
|
||||
features.dnd_mode=
|
||||
|
|
@ -1010,8 +1001,8 @@ features.dnd.emergency_enable=
|
|||
features.dnd.large_icon.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Lock ##
|
||||
#######################################################################################
|
||||
## Phone Lock ##
|
||||
#######################################################################################
|
||||
phone_setting.phone_lock.enable=
|
||||
phone_setting.phone_lock.lock_key_type=
|
||||
|
|
@ -1020,9 +1011,8 @@ phone_setting.emergency.number=
|
|||
phone_setting.phone_lock.lock_time_out=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
phone_setting.logon_wizard=
|
||||
phone_setting.logon_wizard_forever_wait=
|
||||
|
|
@ -1040,8 +1030,8 @@ hotdesking.dsskey_sip_server_enable=
|
|||
hotdesking.dsskey_outbound_enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Voice Mail ##
|
||||
#######################################################################################
|
||||
## Voice Mail ##
|
||||
#######################################################################################
|
||||
features.voice_mail_alert.enable=
|
||||
features.voice_mail_popup.enable=
|
||||
|
|
@ -1050,24 +1040,21 @@ features.hide_feature_access_codes.enable=
|
|||
voice_mail.number.1=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
features.text_message.enable=
|
||||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
action_url.is_ume=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Audio Intercom ##
|
||||
#######################################################################################
|
||||
## Audio Intercom ##
|
||||
#######################################################################################
|
||||
features.intercom.mode=
|
||||
features.intercom.subscribe.enable=
|
||||
|
|
@ -1085,7 +1072,6 @@ features.intercom.barge=
|
|||
features.intercom.tone=
|
||||
features.intercom.mute=
|
||||
|
||||
|
||||
voice.handset_send=
|
||||
voice.handfree_send =
|
||||
voice.headset_send =
|
||||
|
|
@ -1093,10 +1079,8 @@ features.intercom.headset_prior.enable=
|
|||
features.ringer_device.is_use_headset=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
features.ip_call.auto_answer.enable=
|
||||
features.show_default_account=
|
||||
|
|
@ -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,8 +1124,9 @@ phone_setting.headsetkey_mode=
|
|||
phone_setting.is_deal180=
|
||||
phone_setting.change_183_to_180=
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
#######################################################################################
|
||||
features.csta_control.enable=
|
||||
features.action_uri.enable=
|
||||
|
|
@ -1194,9 +1178,8 @@ action_url.transfer_call =
|
|||
action_url.unregistered =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
phone_setting.hold_and_held_power_led_flash_enable=
|
||||
phone_setting.mute_power_led_flash_enable=
|
||||
|
|
@ -1208,14 +1191,14 @@ phone_setting.missed_call_power_led_flash.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Time&Date ##
|
||||
## Time&Date ##
|
||||
#######################################################################################
|
||||
lcl.datetime.date.format =
|
||||
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,15 +1208,14 @@ 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}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
##multicast.listen_address.X.label
|
||||
##multicast.paging_address.X.channel
|
||||
|
|
@ -1263,7 +1245,7 @@ multicast.listen_address.1.volume=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Preference&Status ##
|
||||
## Preference&Status ##
|
||||
#######################################################################################
|
||||
##Not support T19P_E2
|
||||
static.features.default_account=
|
||||
|
|
@ -1289,8 +1271,9 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
dialplan.digitmap.enable=
|
||||
dialplan.digitmap.string=
|
||||
|
|
@ -1305,10 +1288,8 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan.emergency.enable=
|
||||
dialplan.emergency.1.value=
|
||||
|
|
@ -1325,9 +1306,8 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan_replace_rule.url=
|
||||
dialplan.replace.line_id.1=
|
||||
|
|
@ -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 ##
|
||||
#######################################################################################
|
||||
|
|
@ -1446,12 +1428,13 @@ expansion_module.backgrounds=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## BSFT Setting ##
|
||||
## BSFT Setting ##
|
||||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
phone_setting.auto_blf_list_enable=
|
||||
phone_setting.blf_list_sequence_type=
|
||||
|
|
@ -1498,16 +1481,16 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode=
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
features.auto_release_bla_line=
|
||||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
features.call_park.enable=
|
||||
features.call_park.park_mode=
|
||||
|
|
@ -1523,16 +1506,14 @@ features.call_park.line_restriction.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft ACD ##
|
||||
## Broadsoft ACD ##
|
||||
#######################################################################################
|
||||
acd.enable=
|
||||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
bw.xsi.enable=
|
||||
sip.authentication_for_xsi =
|
||||
|
|
@ -1540,7 +1521,7 @@ default_input_method.xsi_password=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Network Directory ##
|
||||
## Broadsoft Network Directory ##
|
||||
#######################################################################################
|
||||
bw.xsi.directory.enable=
|
||||
bw.calllog_and_dir =
|
||||
|
|
@ -1564,9 +1545,8 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
features.pickup.direct_pickup_enable =
|
||||
features.pickup.group_pickup_enable =
|
||||
|
|
@ -1577,44 +1557,40 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
features.alert_info_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
#######################################################################################
|
||||
bw.voice_mail.visual.enable=
|
||||
voice_mail.message_key.mode=
|
||||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
bw.call_recording.mode =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Decline ##
|
||||
## Broadsoft Call Decline ##
|
||||
#######################################################################################
|
||||
features.call_decline.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF Ring Type ##
|
||||
## BLF Ring Type ##
|
||||
#######################################################################################
|
||||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
features.feature_key_sync.enable =
|
||||
features.forward.feature_key_sync.local_processing.enable =
|
||||
|
|
@ -1625,7 +1601,7 @@ call_waiting.mode =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft UC ##
|
||||
## Broadsoft UC ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T29G Models support the parameter
|
||||
bw.xmpp.enable =
|
||||
|
|
@ -1642,10 +1618,8 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
meta.enable =
|
||||
meta.login_mode =
|
||||
|
|
@ -1670,7 +1644,7 @@ meta.comm_portal.keep_alive_interval_time =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Genbend Setting ##
|
||||
## Genbend Setting ##
|
||||
#######################################################################################
|
||||
gb.sopi.enable=
|
||||
gb.sopi.gab.enable=
|
||||
|
|
@ -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,18 +1,16 @@
|
|||
|
||||
#!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.##
|
||||
|
||||
#######################################################################################
|
||||
## Network CDP ##
|
||||
## Network CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network IPv6 ##
|
||||
## Network IPv6 ##
|
||||
#######################################################################################
|
||||
static.network.ipv6_static_dns_enable =
|
||||
static.network.ipv6_icmp_v6.enable =
|
||||
|
|
@ -23,8 +21,9 @@ static.network.ipv6_internet_port.ip =
|
|||
static.network.ipv6_internet_port.type =
|
||||
static.network.ipv6_prefix =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network WiFi ##
|
||||
## Network WiFi ##
|
||||
#######################################################################################
|
||||
##static.wifi.X.label=
|
||||
##static.wifi.X.ssid=
|
||||
|
|
@ -52,7 +51,7 @@ static.wifi.show_scan_prompt =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Internet ##
|
||||
## Network Internet ##
|
||||
#######################################################################################
|
||||
static.network.ip_address_mode = {$yealink_ip_address_mode}
|
||||
static.network.span_to_pc_port =
|
||||
|
|
@ -68,7 +67,7 @@ static.network.internet_port.type =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
static.network.dhcp.option60type =
|
||||
|
|
@ -87,23 +86,20 @@ static.network.pc_port.speed_duplex =
|
|||
static.network.internet_port.speed_duplex =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network LLDP ##
|
||||
## Network LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network VLAN ##
|
||||
## Network VLAN ##
|
||||
#######################################################################################
|
||||
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 =
|
||||
|
|
@ -114,15 +110,14 @@ static.network.vlan.internet_port_enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Network VPN ##
|
||||
## Network VPN ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network 802.1x ##
|
||||
## Network 802.1x ##
|
||||
#######################################################################################
|
||||
static.network.802_1x.mode =
|
||||
static.network.802_1x.identity =
|
||||
|
|
@ -133,17 +128,14 @@ 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 ##
|
||||
## ZERO Touch ##
|
||||
#######################################################################################
|
||||
static.zero_touch.enable =
|
||||
static.zero_touch.wait_time =
|
||||
|
|
@ -153,7 +145,7 @@ static.zero_touch.network_fail_wait_times =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
static.auto_provision.server.url =
|
||||
static.auto_provision.server.username =
|
||||
|
|
@ -161,7 +153,7 @@ static.auto_provision.server.password =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
static.auto_provision.weekly.enable =
|
||||
static.auto_provision.weekly.dayofweek =
|
||||
|
|
@ -169,35 +161,38 @@ static.auto_provision.weekly.end_time =
|
|||
static.auto_provision.weekly.begin_time =
|
||||
static.auto_provision.weekly_upgrade_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Flexible Autop ##
|
||||
## Flexible Autop ##
|
||||
#######################################################################################
|
||||
static.auto_provision.flexible.end_time =
|
||||
static.auto_provision.flexible.begin_time =
|
||||
static.auto_provision.flexible.interval =
|
||||
static.auto_provision.flexible.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autoprovision Other ##
|
||||
## Autoprovision Other ##
|
||||
#######################################################################################
|
||||
static.auto_provision.prompt.enable =
|
||||
static.auto_provision.attempt_expired_time =
|
||||
|
|
@ -221,15 +216,15 @@ static.auto_provision.aes_key_16.mac =
|
|||
static.auto_provision.aes_key_16.com =
|
||||
features.custom_version_info =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
##static.autoprovision.X.name
|
||||
##static.autoprovision.X.code
|
||||
|
|
@ -249,9 +244,8 @@ static.autoprovision.1.com_aes =
|
|||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## TR069 ##
|
||||
## TR069 ##
|
||||
#######################################################################################
|
||||
|
||||
static.managementserver.enable =
|
||||
|
|
@ -264,23 +258,21 @@ static.managementserver.connection_request_password =
|
|||
static.managementserver.connection_request_username =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Redirect ##
|
||||
## Redirect ##
|
||||
#######################################################################################
|
||||
static.redirect.user_name =
|
||||
static.redirect.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Firmware Update ##
|
||||
## Firmware Update ##
|
||||
#######################################################################################
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t54s}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Confguration ##
|
||||
## Confguration ##
|
||||
#######################################################################################
|
||||
features.factory_reset_option =
|
||||
features.reset_by_long_press_enable =
|
||||
|
|
@ -292,7 +284,7 @@ static.custom_factory_configuration.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## SYSLOG ##
|
||||
## SYSLOG ##
|
||||
#######################################################################################
|
||||
static.syslog.enable =
|
||||
static.syslog.server =
|
||||
|
|
@ -314,7 +306,7 @@ static.network.promisc_mode.enable =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Log Backup ##
|
||||
## Log Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_log.backup.enable =
|
||||
static.auto_provision.local_log.backup.path =
|
||||
|
|
@ -325,22 +317,21 @@ static.auto_provision.local_log.backup.append.max_file_size =
|
|||
static.auto_provision.local_log.backup.append.limit_mode=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
static.security.var_enable =
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Quick Login ##
|
||||
## Quick Login ##
|
||||
#######################################################################################
|
||||
wui.quick_login =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Security ##
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
static.phone_setting.reserve_certs_enable =
|
||||
features.relog_offtime =
|
||||
|
|
@ -357,42 +348,41 @@ security.tls_cipher_list =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Secure Domain List ##
|
||||
## Secure Domain List ##
|
||||
#######################################################################################
|
||||
wui.secure_domain_list =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Encryption ##
|
||||
## Encryption ##
|
||||
#######################################################################################
|
||||
static.auto_provision.encryption.directory =
|
||||
static.auto_provision.encryption.call_log =
|
||||
static.auto_provision.encryption.config =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trnasfer ##
|
||||
## Trnasfer ##
|
||||
#######################################################################################
|
||||
features.transfer_type=
|
||||
dialplan.transfer.mode =
|
||||
|
|
@ -404,23 +394,21 @@ phone_setting.call_appearance.transfer_via_new_linekey=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Conference ##
|
||||
## Conference ##
|
||||
#######################################################################################
|
||||
features.conference.with_previous_call.enable =
|
||||
features.local_conf.combine_with_one_press.enable=
|
||||
phone_setting.call_appearance.conference_via_new_linekey=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Anonymous ##
|
||||
## Anonymous ##
|
||||
#######################################################################################
|
||||
features.anonymous_response_code=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Configuration ##
|
||||
## Call Configuration ##
|
||||
#######################################################################################
|
||||
phone_setting.incoming_call_when_dialing.priority=
|
||||
phone_setting.hold_or_swap.mode=
|
||||
|
|
@ -465,8 +453,9 @@ features.auto_linekeys.enable=
|
|||
phone_setting.call_appearance.calls_per_linekey=
|
||||
features.linekey_call_with_default_account=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
phone_setting.custom_softkey_enable=
|
||||
custom_softkey_talking.url=
|
||||
|
|
@ -478,7 +467,7 @@ custom_softkey_call_failed.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth ##
|
||||
## Features Bluetooth ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.bluetooth_enable=
|
||||
|
|
@ -486,27 +475,28 @@ features.bluetooth_adapter_name=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Features USB Record ##
|
||||
## Features USB Record ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T42S/T41S/T29G/T27G Models support the parameter.
|
||||
features.usb_call_recording.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Codec ##
|
||||
## Codec ##
|
||||
#######################################################################################
|
||||
voice.g726.aal2.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DTMF ##
|
||||
## DTMF ##
|
||||
#######################################################################################
|
||||
features.dtmf.min_interval=
|
||||
features.dtmf.volume=
|
||||
features.dtmf.duration =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
|
@ -523,8 +513,9 @@ voice.side_tone =
|
|||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
voice.jib.normal=
|
||||
voice.jib.max =
|
||||
|
|
@ -536,13 +527,15 @@ voice.jib.wifi.max=
|
|||
voice.jib.wifi.min=
|
||||
voice.jib.wifi.adaptive=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
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,13 +604,13 @@ 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 ##
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
dns_cache_a.1.name =
|
||||
dns_cache_a.1.ip =
|
||||
|
|
@ -635,6 +629,7 @@ dns_cache_naptr.1.replace =
|
|||
dns_cache_naptr.1.service =
|
||||
dns_cache_naptr.1.ttl =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP ##
|
||||
#######################################################################################
|
||||
|
|
@ -672,7 +667,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
static.directory_setting.url=
|
||||
super_search.url=
|
||||
|
|
@ -696,7 +691,7 @@ local_contact.icon.url=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Remote Phonebook ##
|
||||
## Remote Phonebook ##
|
||||
#######################################################################################
|
||||
##remote_phonebook.data.X.url
|
||||
##remote_phonebook.data.X.name
|
||||
|
|
@ -742,10 +737,8 @@ remote_phonebook.data.5.name = {$yealink_remote_phonebook_5_name}
|
|||
remote_phonebook.data.5.url = {$yealink_remote_phonebook_5_url}
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LDAP ##
|
||||
## LDAP ##
|
||||
#######################################################################################
|
||||
ldap.enable=
|
||||
ldap.user=
|
||||
|
|
@ -771,7 +764,7 @@ ldap.call_out_lookup=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## History ##
|
||||
## History ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_calllog.write_delay.terminated=
|
||||
static.auto_provision.local_calllog.backup.path=
|
||||
|
|
@ -787,23 +780,23 @@ features.redial_via_local_sip_server.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Backup ##
|
||||
## Contact Backup ##
|
||||
#######################################################################################
|
||||
static.auto_provision.local_contact.backup.path =
|
||||
static.auto_provision.local_contact.backup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact Other ##
|
||||
## Contact Other ##
|
||||
#######################################################################################
|
||||
directory.search_type=
|
||||
directory_setting.local_directory.enable =
|
||||
directory_setting.local_directory.priority =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Programablekey ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## Programablekey ##
|
||||
#######################################################################################
|
||||
#programablekey.X.type
|
||||
#programablekey.X.line
|
||||
#programablekey.X.value
|
||||
|
|
@ -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,9 +816,10 @@ programablekey.1.xml_phonebook =
|
|||
programablekey.1.pickup_value =
|
||||
programablekey.1.extension =
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
|
||||
#######################################################################################
|
||||
## Linekey ##
|
||||
#######################################################################################
|
||||
##linekey.X.line
|
||||
##linekey.X.value
|
||||
##linekey.X.pickup_value
|
||||
|
|
@ -861,9 +854,10 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
#######################################################################################
|
||||
## Dsskey ##
|
||||
#######################################################################################
|
||||
|
||||
#######################################################################################
|
||||
## Dsskey ##
|
||||
#######################################################################################
|
||||
features.block_linekey_in_menu.enable =
|
||||
features.shorten_linekey_label.enable =
|
||||
features.flash_url_dsskey_led.enable =
|
||||
|
|
@ -875,10 +869,9 @@ features.keep_switch_page_key.enable=
|
|||
phone_setting.idle_dsskey_and_title.transparency=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## Expansion Key ##
|
||||
#######################################################################################
|
||||
##expansion_module.X.key.Y.type
|
||||
##expansion_module.X.key.Y.line
|
||||
##expansion_module.X.key.Y.value
|
||||
|
|
@ -924,9 +917,10 @@ 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 ##
|
||||
#######################################################################################
|
||||
|
||||
#######################################################################################
|
||||
## EDK ##
|
||||
#######################################################################################
|
||||
##EDK Soft Keys(X ranges from 1 to 10)
|
||||
|
||||
features.enhanced_dss_keys.enable=
|
||||
|
|
@ -958,19 +952,18 @@ edk.edkprompt.1.type=
|
|||
edk.edkprompt.1.userfeedback=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## XML ##
|
||||
#######################################################################################
|
||||
push_xml.server=
|
||||
push_xml.sip_notify=
|
||||
push_xml.block_in_calling=
|
||||
default_input_method.xml_browser_input_screen=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward ##
|
||||
#######################################################################################
|
||||
#######################################################################################
|
||||
## Forward ##
|
||||
#######################################################################################
|
||||
features.fwd.allow=
|
||||
features.fwd_mode=
|
||||
forward.no_answer.enable=
|
||||
|
|
@ -993,9 +986,8 @@ forward.idle_access_always_fwd.enable=
|
|||
features.forward_call_popup.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
## DND ##
|
||||
#######################################################################################
|
||||
features.dnd.allow=
|
||||
features.dnd_mode=
|
||||
|
|
@ -1009,8 +1001,8 @@ features.dnd.emergency_enable=
|
|||
features.dnd.large_icon.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Lock ##
|
||||
#######################################################################################
|
||||
## Phone Lock ##
|
||||
#######################################################################################
|
||||
phone_setting.phone_lock.enable=
|
||||
phone_setting.phone_lock.lock_key_type=
|
||||
|
|
@ -1019,9 +1011,8 @@ phone_setting.emergency.number=
|
|||
phone_setting.phone_lock.lock_time_out=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
## Hotdesking ##
|
||||
#######################################################################################
|
||||
phone_setting.logon_wizard=
|
||||
phone_setting.logon_wizard_forever_wait=
|
||||
|
|
@ -1039,8 +1030,8 @@ hotdesking.dsskey_sip_server_enable=
|
|||
hotdesking.dsskey_outbound_enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Voice Mail ##
|
||||
#######################################################################################
|
||||
## Voice Mail ##
|
||||
#######################################################################################
|
||||
features.voice_mail_alert.enable=
|
||||
features.voice_mail_popup.enable=
|
||||
|
|
@ -1049,24 +1040,21 @@ features.hide_feature_access_codes.enable=
|
|||
voice_mail.number.1=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
## Text Message ##
|
||||
#######################################################################################
|
||||
features.text_message.enable=
|
||||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
## UME ##
|
||||
#######################################################################################
|
||||
action_url.is_ume=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Audio Intercom ##
|
||||
#######################################################################################
|
||||
## Audio Intercom ##
|
||||
#######################################################################################
|
||||
features.intercom.mode=
|
||||
features.intercom.subscribe.enable=
|
||||
|
|
@ -1084,7 +1072,6 @@ features.intercom.barge=
|
|||
features.intercom.tone=
|
||||
features.intercom.mute=
|
||||
|
||||
|
||||
voice.handset_send=
|
||||
voice.handfree_send =
|
||||
voice.headset_send =
|
||||
|
|
@ -1092,10 +1079,8 @@ features.intercom.headset_prior.enable=
|
|||
features.ringer_device.is_use_headset=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
## Feature General ##
|
||||
#######################################################################################
|
||||
features.ip_call.auto_answer.enable=
|
||||
features.show_default_account=
|
||||
|
|
@ -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,8 +1124,9 @@ phone_setting.headsetkey_mode=
|
|||
phone_setting.is_deal180=
|
||||
phone_setting.change_183_to_180=
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
|
||||
#######################################################################################
|
||||
## Action URL&URI ##
|
||||
#######################################################################################
|
||||
features.csta_control.enable=
|
||||
features.action_uri.enable=
|
||||
|
|
@ -1193,9 +1178,8 @@ action_url.transfer_call =
|
|||
action_url.unregistered =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
## Power LED ##
|
||||
#######################################################################################
|
||||
phone_setting.hold_and_held_power_led_flash_enable=
|
||||
phone_setting.mute_power_led_flash_enable=
|
||||
|
|
@ -1207,7 +1191,7 @@ phone_setting.missed_call_power_led_flash.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Time&Date ##
|
||||
## Time&Date ##
|
||||
#######################################################################################
|
||||
lcl.datetime.date.format =
|
||||
auto_dst.url =
|
||||
|
|
@ -1230,9 +1214,8 @@ local_time.time_zone = {$yealink_time_zone_name}
|
|||
local_time.time_zone_name = {$yealink_time_zone_name}
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Multicast Paging ##
|
||||
## Multicast Paging ##
|
||||
#######################################################################################
|
||||
##multicast.listen_address.X.label
|
||||
##multicast.paging_address.X.channel
|
||||
|
|
@ -1262,7 +1245,7 @@ multicast.listen_address.1.volume=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Preference&Status ##
|
||||
## Preference&Status ##
|
||||
#######################################################################################
|
||||
##Not support T19P_E2
|
||||
static.features.default_account=
|
||||
|
|
@ -1288,8 +1271,9 @@ phone_setting.inter_digit_time=
|
|||
##Only T54S Model supports the parameter
|
||||
phone_setting.idle_clock_display.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Digitmap ##
|
||||
## Digitmap ##
|
||||
#######################################################################################
|
||||
dialplan.digitmap.enable=
|
||||
dialplan.digitmap.string=
|
||||
|
|
@ -1304,10 +1288,8 @@ dialplan.digitmap.apply_to.on_hook_dial=
|
|||
dialplan.digitmap.active.on_hook_dialing=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Emergency Dialplan ##
|
||||
## Emergency Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan.emergency.enable=
|
||||
dialplan.emergency.1.value=
|
||||
|
|
@ -1324,9 +1306,8 @@ dialplan.emergency.held.request_type=
|
|||
dialplan.emergency.held.server_url=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dialplan ##
|
||||
## Dialplan ##
|
||||
#######################################################################################
|
||||
dialplan_replace_rule.url=
|
||||
dialplan.replace.line_id.1=
|
||||
|
|
@ -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 ##
|
||||
#######################################################################################
|
||||
|
|
@ -1445,12 +1428,13 @@ expansion_module.backgrounds=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## BSFT Setting ##
|
||||
## BSFT Setting ##
|
||||
#######################################################################################
|
||||
bw.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF/BLF List ##
|
||||
## BLF/BLF List ##
|
||||
#######################################################################################
|
||||
phone_setting.auto_blf_list_enable=
|
||||
phone_setting.blf_list_sequence_type=
|
||||
|
|
@ -1497,16 +1481,16 @@ sip.terminate_notify_sub_delay_time=
|
|||
features.blf_led_mode=
|
||||
features.blf_pickup_only_send_code=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SCA ##
|
||||
## SCA ##
|
||||
#######################################################################################
|
||||
features.auto_release_bla_line=
|
||||
features.barge_in_via_username.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Park ##
|
||||
## Call Park ##
|
||||
#######################################################################################
|
||||
features.call_park.enable=
|
||||
features.call_park.park_mode=
|
||||
|
|
@ -1522,16 +1506,14 @@ features.call_park.line_restriction.enable=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft ACD ##
|
||||
## Broadsoft ACD ##
|
||||
#######################################################################################
|
||||
acd.enable=
|
||||
acd.auto_available_timer=
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft XSI ##
|
||||
## Broadsoft XSI ##
|
||||
#######################################################################################
|
||||
bw.xsi.enable=
|
||||
sip.authentication_for_xsi =
|
||||
|
|
@ -1539,7 +1521,7 @@ default_input_method.xsi_password=
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Network Directory ##
|
||||
## Broadsoft Network Directory ##
|
||||
#######################################################################################
|
||||
bw.xsi.directory.enable=
|
||||
bw.calllog_and_dir =
|
||||
|
|
@ -1563,9 +1545,8 @@ search_in_dialing.bw_directory.enable =
|
|||
search_in_dialing.bw_directory.priority =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Call Pickup ##
|
||||
## Call Pickup ##
|
||||
#######################################################################################
|
||||
features.pickup.direct_pickup_enable =
|
||||
features.pickup.group_pickup_enable =
|
||||
|
|
@ -1576,44 +1557,40 @@ features.pickup.blf_visual_enable =
|
|||
features.pickup_display.method =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
features.alert_info_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
## Broadsoft Visual Voice Mail ##
|
||||
#######################################################################################
|
||||
bw.voice_mail.visual.enable=
|
||||
voice_mail.message_key.mode=
|
||||
bw.voice_mail.visual.display_videomail.enable=
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Recording ##
|
||||
## Broadsoft Call Recording ##
|
||||
#######################################################################################
|
||||
bw.call_recording.mode =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft Call Decline ##
|
||||
## Broadsoft Call Decline ##
|
||||
#######################################################################################
|
||||
features.call_decline.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## BLF Ring Type ##
|
||||
## BLF Ring Type ##
|
||||
#######################################################################################
|
||||
features.blf.ring_type =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Sync ##
|
||||
## Features Sync ##
|
||||
#######################################################################################
|
||||
features.feature_key_sync.enable =
|
||||
features.forward.feature_key_sync.local_processing.enable =
|
||||
|
|
@ -1624,7 +1601,7 @@ call_waiting.mode =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Broadsoft UC ##
|
||||
## Broadsoft UC ##
|
||||
#######################################################################################
|
||||
##Only T54S/T52S/T48G/T48S/T46G/T46S/T29G Models support the parameter
|
||||
bw.xmpp.enable =
|
||||
|
|
@ -1641,10 +1618,8 @@ search_in_dialing.bw_uc_buddies.enable =
|
|||
search_in_dialing.bw_uc_buddies.priority =
|
||||
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Metaswitch Setting ##
|
||||
## Metaswitch Setting ##
|
||||
#######################################################################################
|
||||
meta.enable =
|
||||
meta.login_mode =
|
||||
|
|
@ -1669,7 +1644,7 @@ meta.comm_portal.keep_alive_interval_time =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Genbend Setting ##
|
||||
## Genbend Setting ##
|
||||
#######################################################################################
|
||||
gb.sopi.enable=
|
||||
gb.sopi.gab.enable=
|
||||
|
|
@ -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 =
|
||||
|
||||
|
|
|
|||
|
|
@ -3,19 +3,20 @@
|
|||
##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.##
|
||||
|
||||
#######################################################################################
|
||||
## Hostname ##
|
||||
## Hostname ##
|
||||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## PPPoE ##
|
||||
## PPPoE ##
|
||||
#######################################################################################
|
||||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
##It enables or disables the PC port.0-Disabled,1-Auto Negotiation.
|
||||
##The default value is 1.It takes effect after a reboot.
|
||||
|
|
@ -62,8 +63,9 @@ network.attempt_expired_time =
|
|||
network.dhcp.server_mac1 =
|
||||
network.dhcp.server_mac2 =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
static.network.vlan.internet_port_enable =
|
||||
{if isset($yealink_vlan_enable)}static.network.vlan.internet_port_enable = {$yealink_vlan_enable}{else}static.network.vlan.internet_port_enable = 0{/if}
|
||||
|
|
@ -78,8 +80,9 @@ static.network.vlan.dhcp_option =
|
|||
##(Except T19P/T21P Models) 0-Disable 1-Enable
|
||||
static.network.vlan.vlan_change.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## WEB Port ##
|
||||
## WEB Port ##
|
||||
#######################################################################################
|
||||
##It configures the HTTP port for web server access.
|
||||
##The default value is 80.It takes effect after a reboot.
|
||||
|
|
@ -92,8 +95,9 @@ static.network.port.https =
|
|||
static.wui.https_enable =
|
||||
static.wui.http_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## QoS ##
|
||||
## QoS ##
|
||||
#######################################################################################
|
||||
##It configures the voice QoS.
|
||||
##The default value is 46.It takes effect after a reboot.Integer from 0 to 63
|
||||
|
|
@ -103,8 +107,9 @@ 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 ##
|
||||
## 802.1X ##
|
||||
#######################################################################################
|
||||
static.network.802_1x.mode =
|
||||
static.network.802_1x.identity =
|
||||
|
|
@ -115,39 +120,46 @@ 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) ##
|
||||
## OpenVPN(Except T19P Model) ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
## 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.packet_interval =
|
||||
|
||||
#######################################################################################
|
||||
## Span to PC ##
|
||||
## 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 ##
|
||||
## RTP Port ##
|
||||
#######################################################################################
|
||||
sip.min_udp_port=
|
||||
sip.max_udp_port=
|
||||
sip.min_tcp_port=
|
||||
sip.max_tcp_port=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Syslog ##
|
||||
## Syslog ##
|
||||
#######################################################################################
|
||||
static.syslog.mode =
|
||||
|
||||
|
|
@ -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,45 +209,53 @@ static.auto_provision.custom.protect =
|
|||
static.auto_provision.custom.upload_method=
|
||||
|
||||
auto_provision.attempt_expired_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
static.auto_provision.weekly.enable =
|
||||
static.auto_provision.weekly.dayofweek =
|
||||
static.auto_provision.weekly.begin_time =
|
||||
static.auto_provision.weekly.end_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
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 ##
|
||||
## Autop AES Key ##
|
||||
#######################################################################################
|
||||
##It configures the AES key for decrypting the Common CFG file. The valid characters contain: 0 ~ 9, A ~ Z, a ~ z.
|
||||
##The default value is blank.
|
||||
|
|
@ -256,14 +278,15 @@ static.auto_provision.dhcp_option.option60_value =
|
|||
##0-Disable 1-Enable
|
||||
static.auto_provision.reboot_force.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop wildcard ##
|
||||
## Autop wildcard ##
|
||||
#######################################################################################
|
||||
|
||||
static.auto_provision.url_wildcard.pn =
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
##It configures the name of the code for triggering auto provisioning.
|
||||
##The default value is blank.It takes effect after a reboot.
|
||||
|
|
@ -294,13 +317,15 @@ static.autoprovision.1.com_aes =
|
|||
##The default value is blank.It takes effect after a reboot.
|
||||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SIP Advanced ##
|
||||
## SIP Advanced ##
|
||||
#######################################################################################
|
||||
sip.use_23_as_pound =
|
||||
sip.rfc2543_hold = {$yealink_rfc2543_hold}
|
||||
|
|
@ -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.
|
||||
|
|
@ -351,22 +374,24 @@ sip.tcp_port_random_mode =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
voice.vad =
|
||||
voice.cng =
|
||||
voice.echo_cancellation =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
voice.jib.adaptive =
|
||||
voice.jib.min =
|
||||
voice.jib.max =
|
||||
voice.jib.normal =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.country =
|
||||
voice.tone.dial =
|
||||
|
|
@ -380,8 +405,9 @@ voice.tone.stutter =
|
|||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Volume ##
|
||||
## Volume ##
|
||||
#######################################################################################
|
||||
|
||||
voice.handfree.spk_vol =
|
||||
|
|
@ -396,8 +422,9 @@ voice.handfree_send =
|
|||
voice.handset_send =
|
||||
voice.headset_send =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Transfer ##
|
||||
## Transfer ##
|
||||
#######################################################################################
|
||||
##It enables or disables the transferee party°Øs phone to prompt a missed call on the LCD screen before displaying
|
||||
##the caller ID when performing a semi-attended transfer.0-Enabled,1-Disabled
|
||||
|
|
@ -429,6 +456,7 @@ transfer.dsskey_deal_type =
|
|||
##The default value is 1.
|
||||
transfer.multi_call_trans_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -445,30 +473,34 @@ wui_lang.url =
|
|||
wui_lang_note.url =
|
||||
wui_lang.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Auto Redial ##
|
||||
## Auto Redial ##
|
||||
#######################################################################################
|
||||
auto_redial.enable =
|
||||
auto_redial.interval =
|
||||
auto_redial.times =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Zero Touch ##
|
||||
## Zero Touch ##
|
||||
#######################################################################################
|
||||
static.zero_touch.enable =
|
||||
static.zero_touch.wait_time =
|
||||
static.zero_touch.network_fail_wait_times =
|
||||
static.zero_touch.network_fail_delay_times =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Push XML ##
|
||||
## Push XML ##
|
||||
#######################################################################################
|
||||
push_xml.server =
|
||||
push_xml.block_in_calling=
|
||||
push_xml.sip_notify=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dial Plan ##
|
||||
## Dial Plan ##
|
||||
#######################################################################################
|
||||
dialplan.area_code.code =
|
||||
dialplan.area_code.min_len =
|
||||
|
|
@ -504,7 +536,7 @@ dialplan_replace_rule.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Remote Phonebook(Except T20P Model) ##
|
||||
## Remote Phonebook(Except T20P Model) ##
|
||||
#######################################################################################
|
||||
###X ranges from 1 to 5
|
||||
###remote_phonebook.data.X.url =
|
||||
|
|
@ -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,8 +674,9 @@ ldap.incoming_call_special_search.enable =
|
|||
ldap.tls_mode =
|
||||
ldap.call_out_lookup = {$ldap_dial_lookup}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features ##
|
||||
## Features ##
|
||||
#######################################################################################
|
||||
features.normal_refuse_code =
|
||||
features.auto_answer_delay =
|
||||
|
|
@ -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,16 +717,16 @@ features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_
|
|||
static.features.hide_zero_touch_url.enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Forward ##
|
||||
## Features Forward ##
|
||||
#######################################################################################
|
||||
|
||||
features.fwd_mode =
|
||||
features.fwd_diversion_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features DND ##
|
||||
## Features DND ##
|
||||
#######################################################################################
|
||||
|
||||
features.dnd_mode =
|
||||
|
|
@ -704,13 +737,15 @@ features.dnd_refuse_code =
|
|||
features.dnd.emergency_enable =
|
||||
features.dnd.emergency_authorized_number =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth(Only for T46G model) ##
|
||||
## Features Bluetooth(Only for T46G model) ##
|
||||
#######################################################################################
|
||||
features.bluetooth_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features BLF ##
|
||||
## Features BLF ##
|
||||
#######################################################################################
|
||||
##It configures BLF LED mode and provides four kinds of definition for the BLF/BLF list key LED status.
|
||||
##For more information, refer to BLF LED Mode on page 218.
|
||||
|
|
@ -722,8 +757,9 @@ 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 ##
|
||||
## Features Intercom ##
|
||||
#######################################################################################
|
||||
features.intercom.allow =
|
||||
features.intercom.mute =
|
||||
|
|
@ -732,8 +768,9 @@ features.intercom.barge =
|
|||
features.intercom.led.enable =
|
||||
features.intercom.subscribe.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Hotline ##
|
||||
## Features Hotline ##
|
||||
#######################################################################################
|
||||
##It configures the hotline number.
|
||||
##The default value is blank.
|
||||
|
|
@ -743,8 +780,9 @@ features.hotline_number =
|
|||
##The default value of delay time is 4.Integer from 0 to 10
|
||||
features.hotline_delay =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features DTMF ##
|
||||
## Features DTMF ##
|
||||
#######################################################################################
|
||||
features.dtmf.hide = {$yealink_dtmf_hide}
|
||||
|
||||
|
|
@ -758,8 +796,9 @@ features.dtmf.duration =
|
|||
features.dtmf.volume =
|
||||
features.play_local_dtmf_tone_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Audio Settings ##
|
||||
## Features Audio Settings ##
|
||||
#######################################################################################
|
||||
features.headset_prior =
|
||||
features.headset_training =
|
||||
|
|
@ -774,40 +813,45 @@ features.play_hold_tone.delay =
|
|||
features.redial_tone =
|
||||
features.partition_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Action URI ##
|
||||
## Features Action URI ##
|
||||
#######################################################################################
|
||||
features.action_uri_limit_ip =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Prefix ##
|
||||
## Features Prefix ##
|
||||
#######################################################################################
|
||||
features.password_dial.enable =
|
||||
features.password_dial.prefix =
|
||||
features.password_dial.length =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features History ##
|
||||
## Features History ##
|
||||
#######################################################################################
|
||||
features.save_call_history =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Notification Popups ##
|
||||
## Notification Popups ##
|
||||
#######################################################################################
|
||||
features.voice_mail_popup.enable= {$yealink_voice_mail_popup_enable}
|
||||
features.missed_call_popup.enable= {$yealink_missed_call_popup_enable}
|
||||
features.forward_call_popup.enable=
|
||||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Ringtone ##
|
||||
## Ringtone ##
|
||||
#######################################################################################
|
||||
ringtone.url =
|
||||
ringtone.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Settings ##
|
||||
## Phone Settings ##
|
||||
#######################################################################################
|
||||
phone_setting.inter_digit_time =
|
||||
phone_setting.ring_type =
|
||||
|
|
@ -828,9 +872,8 @@ phone_setting.called_party_info_display.enable =
|
|||
phone_setting.call_info_display_method =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Led Settings ##
|
||||
## Power Led Settings ##
|
||||
#######################################################################################
|
||||
phone_setting.common_power_led_enable =
|
||||
phone_setting.talk_and_dial_power_led_enable =
|
||||
|
|
@ -844,9 +887,8 @@ phone_setting.hold_and_held_power_led_flash_enable =
|
|||
phone_setting.active_backlight_level =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting Display ##
|
||||
## Phone Setting Display ##
|
||||
#######################################################################################
|
||||
|
||||
##It configures the backlight time (in seconds).0, 1, 15, 30, 60, 120, 300, 600 or 1800.
|
||||
|
|
@ -854,8 +896,9 @@ phone_setting.backlight_time = {$yealink_backlight_time}
|
|||
phone_setting.backgrounds = Config:yealink_t56a_wallpaper.png
|
||||
wallpaper_upload.url = {$yealink_t56a_wallpaper}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting BLF ##
|
||||
## Phone Setting BLF ##
|
||||
#######################################################################################
|
||||
###It enables or disables the phone to automatically configure the BLF list keys in order.
|
||||
###0-Disabled,1-Enabled.
|
||||
|
|
@ -869,15 +912,15 @@ phone_setting.auto_blf_list_enable =
|
|||
###The default value is 0.
|
||||
phone_setting.blf_list_sequence_type =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Key Lock ##
|
||||
## Key Lock ##
|
||||
#######################################################################################
|
||||
###It enables or disables keypad lock feature.
|
||||
###0-Disabled,1-Enabled.
|
||||
###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,8 +930,9 @@ 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 ##
|
||||
## Multicast ##
|
||||
#######################################################################################
|
||||
|
||||
multicast.codec =
|
||||
|
|
@ -905,14 +949,17 @@ 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 ##
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
###Define the login username and password of the user, var and administrator.
|
||||
###If you change the username of the administrator from "admin" to "admin1", your new administrator's username should be configured as: security.user_name.admin = admin1.
|
||||
|
|
@ -960,7 +1007,7 @@ static.security.cn_validation =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
###It enables or disables the 3-level permissions (admin, user, var).
|
||||
###0-Disabled,1-Enabled.
|
||||
|
|
@ -969,22 +1016,23 @@ static.security.var_enable =
|
|||
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Line Key ##
|
||||
## Line Key ##
|
||||
#######################################################################################
|
||||
###T58V X ranges from 1 to 27
|
||||
|
||||
|
|
@ -1050,8 +1098,9 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Programable Key ##
|
||||
## Programable Key ##
|
||||
#######################################################################################
|
||||
###T58V X ranges from 12 to 14
|
||||
|
||||
|
|
@ -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,8 +1167,9 @@ programablekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key(Only for T26P/T28P/T46G Models) ##
|
||||
## Expansion Key(Only for T26P/T28P/T46G Models) ##
|
||||
#######################################################################################
|
||||
###T46G/T28P/T26P X ranges from 1 to 6, Y ranges from 1 to 40
|
||||
|
||||
|
|
@ -1180,24 +1229,27 @@ 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 ##
|
||||
## Forward Always ##
|
||||
#######################################################################################
|
||||
forward.always.enable =
|
||||
forward.always.target =
|
||||
forward.always.on_code =
|
||||
forward.always.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward Busy ##
|
||||
## Forward Busy ##
|
||||
#######################################################################################
|
||||
forward.busy.enable =
|
||||
forward.busy.target =
|
||||
forward.busy.on_code =
|
||||
forward.busy.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward No Answer ##
|
||||
## Forward No Answer ##
|
||||
#######################################################################################
|
||||
forward.no_answer.enable =
|
||||
forward.no_answer.target =
|
||||
|
|
@ -1205,8 +1257,9 @@ forward.no_answer.timeout =
|
|||
forward.no_answer.on_code =
|
||||
forward.no_answer.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward International ##
|
||||
## Forward International ##
|
||||
#######################################################################################
|
||||
###It enables or disables the phone to forward incoming calls to international numbers.
|
||||
###0-Disabled,1-Enabled.
|
||||
|
|
@ -1214,22 +1267,20 @@ forward.no_answer.off_code =
|
|||
forward.international.enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking Startup ##
|
||||
## 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 ##
|
||||
## Hotdesking Dsskey ##
|
||||
#######################################################################################
|
||||
hotdesking.dsskey_register_name_enable =
|
||||
hotdesking.dsskey_username_enable =
|
||||
|
|
@ -1237,15 +1288,16 @@ hotdesking.dsskey_password_enable =
|
|||
hotdesking.dsskey_sip_server_enable =
|
||||
hotdesking.dsskey_outbound_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
###X ranges from 1 to 100
|
||||
###distinctive_ring_tones.alert_info.x.text =
|
||||
###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,16 +1325,18 @@ 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 ##
|
||||
## Call Waiting ##
|
||||
#######################################################################################
|
||||
call_waiting.enable = {$yealink_call_waiting}
|
||||
call_waiting.tone =
|
||||
call_waiting.on_code =
|
||||
call_waiting.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL ##
|
||||
## Action URL ##
|
||||
#######################################################################################
|
||||
action_url.setup_completed =
|
||||
action_url.registered =
|
||||
|
|
@ -1323,9 +1377,8 @@ action_url.held =
|
|||
action_url.unheld =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
local_contact.data.url =
|
||||
local_contact.image.url =
|
||||
|
|
@ -1334,21 +1387,24 @@ local_contact.data_photo_tar.url =
|
|||
|
||||
local_contact.photo.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Factory Configuration ##
|
||||
## Custom Factory Configuration ##
|
||||
#######################################################################################
|
||||
|
||||
static.custom_factory_configuration.url =
|
||||
static.features.custom_factory_config.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Configuration ##
|
||||
## Custom Configuration ##
|
||||
#######################################################################################
|
||||
|
||||
static.configuration.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
phone_setting.custom_softkey_enable =
|
||||
custom_softkey_call_failed.url =
|
||||
|
|
@ -1360,14 +1416,15 @@ custom_softkey_talking.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Configure the access URL of firmware ##
|
||||
## Configure the access URL of firmware ##
|
||||
#######################################################################################
|
||||
###It configures the access URL of the firmware file.
|
||||
###The default value is blank.It takes effect after a reboot.
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t56a}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTCP ##
|
||||
## RTCP ##
|
||||
#######################################################################################
|
||||
phone_setting.rtcp_xr_report.enable =
|
||||
phone_setting.vq_rtcpxr.interval_report.enable =
|
||||
|
|
@ -1398,9 +1455,8 @@ voice.rtcp_xr.enable =
|
|||
voice.rtcp_cname =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
dns_cache_a.1.name =
|
||||
dns_cache_a.1.ip =
|
||||
|
|
@ -1421,7 +1477,7 @@ dns_cache_naptr.1.ttl =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## V80 Add ##
|
||||
## V80 Add ##
|
||||
#######################################################################################
|
||||
## Add Time 2015.6.26
|
||||
static.network.attempt_expired_time =
|
||||
|
|
@ -1455,8 +1511,9 @@ static.auto_provision.attempt_expired_time =
|
|||
phone_setting.ringback_timeout =
|
||||
phone_setting.ringing_timeout =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V80-SP1 Add ##
|
||||
## V80-SP1 Add ##
|
||||
#######################################################################################
|
||||
##Add Time 2015.9.2
|
||||
static.wifi.enable =
|
||||
|
|
@ -1466,8 +1523,10 @@ static.wifi.1.security_mode =
|
|||
static.wifi.1.cipher_type =
|
||||
static.wifi.1.password =
|
||||
features.bluetooth_adapter_name=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V80-SP2 Add ##
|
||||
## V80-SP2 Add ##
|
||||
#######################################################################################
|
||||
##Add Time 2016.5.26
|
||||
features.power_saving.enable=
|
||||
|
|
@ -1483,8 +1542,9 @@ features.power_saving.office_hour.saturday =
|
|||
features.power_saving.office_hour.sunday =
|
||||
screensaver.wait_time=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V81 Add ##
|
||||
## V81 Add ##
|
||||
#######################################################################################
|
||||
dialplan.digitmap.apply_to.on_hook_dial =
|
||||
dialplan.digitmap.apply_to.directory_dial =
|
||||
|
|
@ -1498,15 +1558,15 @@ 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 =
|
||||
voice.jib.wifi.max =
|
||||
voice.jib.wifi.normal =
|
||||
wui.quick_login =
|
||||
multicast.listen_address.1.volume =
|
||||
multicast.receive.use_speaker =
|
||||
multicast.listen_address.1.volume =
|
||||
multicast.receive.use_speaker =
|
||||
multicast.listen_address.1.channel =
|
||||
multicast.paging_address.1.channel =
|
||||
dialplan.emergency.asserted_id_source =
|
||||
|
|
@ -1518,14 +1578,14 @@ dialplan.emergency.1.value =
|
|||
dialplan.emergency.1.server_priority =
|
||||
features.keep_mute.enable =
|
||||
voice.tone.secondary_dial =
|
||||
features.power_saving.intelligent_mode =
|
||||
features.blf_active_backlight.enable =
|
||||
features.intercom.headset_prior.enable =
|
||||
expansion_module.1.key.1.extension =
|
||||
features.power_saving.intelligent_mode =
|
||||
features.blf_active_backlight.enable =
|
||||
features.intercom.headset_prior.enable =
|
||||
expansion_module.1.key.1.extension =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Android phone-T58V Add ##
|
||||
## Android phone-T58V Add ##
|
||||
#######################################################################################
|
||||
##Add Time 2016.9.2
|
||||
|
||||
|
|
@ -1533,7 +1593,7 @@ sip.listen_in_peer_localip.enable =
|
|||
wifi.802_11e.enable =
|
||||
phone_setting.permit_silent_mode.enable =
|
||||
phone_setting.bluetooth_talk.enable =
|
||||
sip.h264.peer_resolution.default =
|
||||
sip.h264.peer_resolution.default =
|
||||
|
||||
features.doorphone.%d.display_name =
|
||||
features.doorphone.%d.full_screen =
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -3,19 +3,20 @@
|
|||
##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.##
|
||||
|
||||
#######################################################################################
|
||||
## Hostname ##
|
||||
## Hostname ##
|
||||
#######################################################################################
|
||||
static.network.dhcp_host_name =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## PPPoE ##
|
||||
## PPPoE ##
|
||||
#######################################################################################
|
||||
network.pppoe.user =
|
||||
network.pppoe.password =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Network Advanced ##
|
||||
## Network Advanced ##
|
||||
#######################################################################################
|
||||
##It enables or disables the PC port.0-Disabled,1-Auto Negotiation.
|
||||
##The default value is 1.It takes effect after a reboot.
|
||||
|
|
@ -62,8 +63,9 @@ network.attempt_expired_time =
|
|||
network.dhcp.server_mac1 =
|
||||
network.dhcp.server_mac2 =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## VLAN ##
|
||||
## VLAN ##
|
||||
#######################################################################################
|
||||
static.network.vlan.internet_port_enable =
|
||||
{if isset($yealink_vlan_enable)}static.network.vlan.internet_port_enable = {$yealink_vlan_enable}{else}static.network.vlan.internet_port_enable = 0{/if}
|
||||
|
|
@ -78,8 +80,9 @@ static.network.vlan.dhcp_option =
|
|||
##(Except T19P/T21P Models) 0-Disable 1-Enable
|
||||
static.network.vlan.vlan_change.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## WEB Port ##
|
||||
## WEB Port ##
|
||||
#######################################################################################
|
||||
##It configures the HTTP port for web server access.
|
||||
##The default value is 80.It takes effect after a reboot.
|
||||
|
|
@ -92,8 +95,9 @@ static.network.port.https =
|
|||
static.wui.https_enable =
|
||||
static.wui.http_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## QoS ##
|
||||
## QoS ##
|
||||
#######################################################################################
|
||||
##It configures the voice QoS.
|
||||
##The default value is 46.It takes effect after a reboot.Integer from 0 to 63
|
||||
|
|
@ -103,8 +107,9 @@ 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 ##
|
||||
## 802.1X ##
|
||||
#######################################################################################
|
||||
static.network.802_1x.mode =
|
||||
static.network.802_1x.identity =
|
||||
|
|
@ -115,39 +120,46 @@ 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) ##
|
||||
## OpenVPN(Except T19P Model) ##
|
||||
#######################################################################################
|
||||
static.network.vpn_enable =
|
||||
static.openvpn.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## LLDP ##
|
||||
## LLDP ##
|
||||
#######################################################################################
|
||||
static.network.lldp.enable = static.network.lldp.enable = {$yealink_lldp_enable}
|
||||
static.network.lldp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## CDP ##
|
||||
## CDP ##
|
||||
#######################################################################################
|
||||
static.network.cdp.enable = static.network.cdp.enable = {$yealink_cdp_enable}
|
||||
static.network.cdp.packet_interval =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Span to PC ##
|
||||
## Span to PC ##
|
||||
#######################################################################################
|
||||
static.network.span_to_pc_port =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTP Port ##
|
||||
## RTP Port ##
|
||||
#######################################################################################
|
||||
sip.min_udp_port=
|
||||
sip.max_udp_port=
|
||||
sip.min_tcp_port=
|
||||
sip.max_tcp_port=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Syslog ##
|
||||
## Syslog ##
|
||||
#######################################################################################
|
||||
static.syslog.mode =
|
||||
|
||||
|
|
@ -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,45 +209,53 @@ static.auto_provision.custom.protect =
|
|||
static.auto_provision.custom.upload_method=
|
||||
|
||||
auto_provision.attempt_expired_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Mode ##
|
||||
## Autop Mode ##
|
||||
#######################################################################################
|
||||
static.auto_provision.power_on =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop PNP ##
|
||||
## Autop PNP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.pnp_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop DHCP ##
|
||||
## Autop DHCP ##
|
||||
#######################################################################################
|
||||
static.auto_provision.dhcp_option.enable =
|
||||
static.auto_provision.dhcp_option.list_user_options =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Repeat ##
|
||||
## Autop Repeat ##
|
||||
#######################################################################################
|
||||
static.auto_provision.repeat.enable =
|
||||
static.auto_provision.repeat.minutes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop Weekly ##
|
||||
## Autop Weekly ##
|
||||
#######################################################################################
|
||||
static.auto_provision.weekly.enable =
|
||||
static.auto_provision.weekly.dayofweek =
|
||||
static.auto_provision.weekly.begin_time =
|
||||
static.auto_provision.weekly.end_time =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop URL ##
|
||||
## Autop URL ##
|
||||
#######################################################################################
|
||||
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 ##
|
||||
## Autop AES Key ##
|
||||
#######################################################################################
|
||||
##It configures the AES key for decrypting the Common CFG file. The valid characters contain: 0 ~ 9, A ~ Z, a ~ z.
|
||||
##The default value is blank.
|
||||
|
|
@ -256,14 +278,15 @@ static.auto_provision.dhcp_option.option60_value =
|
|||
##0-Disable 1-Enable
|
||||
static.auto_provision.reboot_force.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Autop wildcard ##
|
||||
## Autop wildcard ##
|
||||
#######################################################################################
|
||||
|
||||
static.auto_provision.url_wildcard.pn =
|
||||
|
||||
#######################################################################################
|
||||
## Autop Code ##
|
||||
## Autop Code ##
|
||||
#######################################################################################
|
||||
##It configures the name of the code for triggering auto provisioning.
|
||||
##The default value is blank.It takes effect after a reboot.
|
||||
|
|
@ -294,13 +317,15 @@ static.autoprovision.1.com_aes =
|
|||
##The default value is blank.It takes effect after a reboot.
|
||||
static.autoprovision.1.mac_aes =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Watch Dog ##
|
||||
## Watch Dog ##
|
||||
#######################################################################################
|
||||
static.watch_dog.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## SIP Advanced ##
|
||||
## SIP Advanced ##
|
||||
#######################################################################################
|
||||
sip.use_23_as_pound =
|
||||
sip.rfc2543_hold = {$yealink_rfc2543_hold}
|
||||
|
|
@ -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.
|
||||
|
|
@ -351,22 +374,24 @@ sip.tcp_port_random_mode =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Echo Cancellation ##
|
||||
## Echo Cancellation ##
|
||||
#######################################################################################
|
||||
voice.vad =
|
||||
voice.cng =
|
||||
voice.echo_cancellation =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Jitter Buffer ##
|
||||
## Jitter Buffer ##
|
||||
#######################################################################################
|
||||
voice.jib.adaptive =
|
||||
voice.jib.min =
|
||||
voice.jib.max =
|
||||
voice.jib.normal =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Tones ##
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.country =
|
||||
voice.tone.dial =
|
||||
|
|
@ -380,8 +405,9 @@ voice.tone.stutter =
|
|||
voice.tone.autoanswer =
|
||||
voice.tone.message =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Volume ##
|
||||
## Volume ##
|
||||
#######################################################################################
|
||||
|
||||
voice.handfree.spk_vol =
|
||||
|
|
@ -396,8 +422,9 @@ voice.handfree_send =
|
|||
voice.handset_send =
|
||||
voice.headset_send =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Transfer ##
|
||||
## Transfer ##
|
||||
#######################################################################################
|
||||
##It enables or disables the transferee party°Øs phone to prompt a missed call on the LCD screen before displaying
|
||||
##the caller ID when performing a semi-attended transfer.0-Enabled,1-Disabled
|
||||
|
|
@ -429,6 +456,7 @@ transfer.dsskey_deal_type =
|
|||
##The default value is 1.
|
||||
transfer.multi_call_trans_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Language Settings ##
|
||||
#######################################################################################
|
||||
|
|
@ -445,30 +473,34 @@ wui_lang.url =
|
|||
wui_lang_note.url =
|
||||
wui_lang.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Auto Redial ##
|
||||
## Auto Redial ##
|
||||
#######################################################################################
|
||||
auto_redial.enable =
|
||||
auto_redial.interval =
|
||||
auto_redial.times =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Zero Touch ##
|
||||
## Zero Touch ##
|
||||
#######################################################################################
|
||||
static.zero_touch.enable =
|
||||
static.zero_touch.wait_time =
|
||||
static.zero_touch.network_fail_wait_times =
|
||||
static.zero_touch.network_fail_delay_times =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Push XML ##
|
||||
## Push XML ##
|
||||
#######################################################################################
|
||||
push_xml.server =
|
||||
push_xml.block_in_calling=
|
||||
push_xml.sip_notify=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Dial Plan ##
|
||||
## Dial Plan ##
|
||||
#######################################################################################
|
||||
dialplan.area_code.code =
|
||||
dialplan.area_code.min_len =
|
||||
|
|
@ -504,7 +536,7 @@ dialplan_replace_rule.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Remote Phonebook(Except T20P Model) ##
|
||||
## Remote Phonebook(Except T20P Model) ##
|
||||
#######################################################################################
|
||||
###X ranges from 1 to 5
|
||||
###remote_phonebook.data.X.url =
|
||||
|
|
@ -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,8 +674,9 @@ ldap.incoming_call_special_search.enable =
|
|||
ldap.tls_mode =
|
||||
ldap.call_out_lookup = {$ldap_dial_lookup}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features ##
|
||||
## Features ##
|
||||
#######################################################################################
|
||||
features.normal_refuse_code =
|
||||
features.auto_answer_delay =
|
||||
|
|
@ -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,16 +717,16 @@ features.hide_feature_access_codes.enable = {$yealink_hide_feature_access_codes_
|
|||
static.features.hide_zero_touch_url.enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Forward ##
|
||||
## Features Forward ##
|
||||
#######################################################################################
|
||||
|
||||
features.fwd_mode =
|
||||
features.fwd_diversion_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features DND ##
|
||||
## Features DND ##
|
||||
#######################################################################################
|
||||
|
||||
features.dnd_mode =
|
||||
|
|
@ -704,13 +737,15 @@ features.dnd_refuse_code =
|
|||
features.dnd.emergency_enable =
|
||||
features.dnd.emergency_authorized_number =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Bluetooth(Only for T46G model) ##
|
||||
## Features Bluetooth(Only for T46G model) ##
|
||||
#######################################################################################
|
||||
features.bluetooth_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features BLF ##
|
||||
## Features BLF ##
|
||||
#######################################################################################
|
||||
##It configures BLF LED mode and provides four kinds of definition for the BLF/BLF list key LED status.
|
||||
##For more information, refer to BLF LED Mode on page 218.
|
||||
|
|
@ -722,8 +757,9 @@ 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 ##
|
||||
## Features Intercom ##
|
||||
#######################################################################################
|
||||
features.intercom.allow =
|
||||
features.intercom.mute =
|
||||
|
|
@ -732,8 +768,9 @@ features.intercom.barge =
|
|||
features.intercom.led.enable =
|
||||
features.intercom.subscribe.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Hotline ##
|
||||
## Features Hotline ##
|
||||
#######################################################################################
|
||||
##It configures the hotline number.
|
||||
##The default value is blank.
|
||||
|
|
@ -743,8 +780,9 @@ features.hotline_number =
|
|||
##The default value of delay time is 4.Integer from 0 to 10
|
||||
features.hotline_delay =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features DTMF ##
|
||||
## Features DTMF ##
|
||||
#######################################################################################
|
||||
features.dtmf.hide = {$yealink_dtmf_hide}
|
||||
|
||||
|
|
@ -758,8 +796,9 @@ features.dtmf.duration =
|
|||
features.dtmf.volume =
|
||||
features.play_local_dtmf_tone_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Audio Settings ##
|
||||
## Features Audio Settings ##
|
||||
#######################################################################################
|
||||
features.headset_prior =
|
||||
features.headset_training =
|
||||
|
|
@ -774,40 +813,45 @@ features.play_hold_tone.delay =
|
|||
features.redial_tone =
|
||||
features.partition_tone =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Action URI ##
|
||||
## Features Action URI ##
|
||||
#######################################################################################
|
||||
features.action_uri_limit_ip =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features Prefix ##
|
||||
## Features Prefix ##
|
||||
#######################################################################################
|
||||
features.password_dial.enable =
|
||||
features.password_dial.prefix =
|
||||
features.password_dial.length =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Features History ##
|
||||
## Features History ##
|
||||
#######################################################################################
|
||||
features.save_call_history =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Notification Popups ##
|
||||
## Notification Popups ##
|
||||
#######################################################################################
|
||||
features.voice_mail_popup.enable= {$yealink_voice_mail_popup_enable}
|
||||
features.missed_call_popup.enable= {$yealink_missed_call_popup_enable}
|
||||
features.forward_call_popup.enable=
|
||||
features.text_message_popup.enable=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Ringtone ##
|
||||
## Ringtone ##
|
||||
#######################################################################################
|
||||
ringtone.url =
|
||||
ringtone.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Settings ##
|
||||
## Phone Settings ##
|
||||
#######################################################################################
|
||||
phone_setting.inter_digit_time =
|
||||
phone_setting.ring_type =
|
||||
|
|
@ -828,9 +872,8 @@ phone_setting.called_party_info_display.enable =
|
|||
phone_setting.call_info_display_method =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Power Led Settings ##
|
||||
## Power Led Settings ##
|
||||
#######################################################################################
|
||||
phone_setting.common_power_led_enable =
|
||||
phone_setting.talk_and_dial_power_led_enable =
|
||||
|
|
@ -844,9 +887,8 @@ phone_setting.hold_and_held_power_led_flash_enable =
|
|||
phone_setting.active_backlight_level =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting Display ##
|
||||
## Phone Setting Display ##
|
||||
#######################################################################################
|
||||
|
||||
##It configures the backlight time (in seconds).0, 1, 15, 30, 60, 120, 300, 600 or 1800.
|
||||
|
|
@ -854,8 +896,9 @@ phone_setting.backlight_time = {$yealink_backlight_time}
|
|||
phone_setting.backgrounds = Config:yealink_t58v_wallpaper.png
|
||||
wallpaper_upload.url = {$yealink_t58v_wallpaper}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Phone Setting BLF ##
|
||||
## Phone Setting BLF ##
|
||||
#######################################################################################
|
||||
###It enables or disables the phone to automatically configure the BLF list keys in order.
|
||||
###0-Disabled,1-Enabled.
|
||||
|
|
@ -869,15 +912,15 @@ phone_setting.auto_blf_list_enable =
|
|||
###The default value is 0.
|
||||
phone_setting.blf_list_sequence_type =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Key Lock ##
|
||||
## Key Lock ##
|
||||
#######################################################################################
|
||||
###It enables or disables keypad lock feature.
|
||||
###0-Disabled,1-Enabled.
|
||||
###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,8 +930,9 @@ 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 ##
|
||||
## Multicast ##
|
||||
#######################################################################################
|
||||
|
||||
multicast.codec =
|
||||
|
|
@ -905,14 +949,17 @@ 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 ##
|
||||
## Security ##
|
||||
#######################################################################################
|
||||
###Define the login username and password of the user, var and administrator.
|
||||
###If you change the username of the administrator from "admin" to "admin1", your new administrator's username should be configured as: security.user_name.admin = admin1.
|
||||
|
|
@ -960,7 +1007,7 @@ static.security.cn_validation =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## User Mode ##
|
||||
## User Mode ##
|
||||
#######################################################################################
|
||||
###It enables or disables the 3-level permissions (admin, user, var).
|
||||
###0-Disabled,1-Enabled.
|
||||
|
|
@ -969,22 +1016,23 @@ static.security.var_enable =
|
|||
|
||||
static.web_item_level.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Trusted Certificates ##
|
||||
## Trusted Certificates ##
|
||||
#######################################################################################
|
||||
static.trusted_certificates.url =
|
||||
static.trusted_certificates.delete =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Server Certificates ##
|
||||
## Server Certificates ##
|
||||
#######################################################################################
|
||||
static.server_certificates.url =
|
||||
static.server_certificates.delete =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Line Key ##
|
||||
## Line Key ##
|
||||
#######################################################################################
|
||||
###T58V X ranges from 1 to 27
|
||||
|
||||
|
|
@ -1050,8 +1098,9 @@ linekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Programable Key ##
|
||||
## Programable Key ##
|
||||
#######################################################################################
|
||||
###T58V X ranges from 12 to 14
|
||||
|
||||
|
|
@ -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,8 +1167,9 @@ programablekey.{$row.device_key_id}.label = {$row.device_key_label}
|
|||
|
||||
{/foreach}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Expansion Key(Only for T26P/T28P/T46G Models) ##
|
||||
## Expansion Key(Only for T26P/T28P/T46G Models) ##
|
||||
#######################################################################################
|
||||
###T46G/T28P/T26P X ranges from 1 to 6, Y ranges from 1 to 40
|
||||
|
||||
|
|
@ -1180,24 +1229,27 @@ 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 ##
|
||||
## Forward Always ##
|
||||
#######################################################################################
|
||||
forward.always.enable =
|
||||
forward.always.target =
|
||||
forward.always.on_code =
|
||||
forward.always.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward Busy ##
|
||||
## Forward Busy ##
|
||||
#######################################################################################
|
||||
forward.busy.enable =
|
||||
forward.busy.target =
|
||||
forward.busy.on_code =
|
||||
forward.busy.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward No Answer ##
|
||||
## Forward No Answer ##
|
||||
#######################################################################################
|
||||
forward.no_answer.enable =
|
||||
forward.no_answer.target =
|
||||
|
|
@ -1205,8 +1257,9 @@ forward.no_answer.timeout =
|
|||
forward.no_answer.on_code =
|
||||
forward.no_answer.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Forward International ##
|
||||
## Forward International ##
|
||||
#######################################################################################
|
||||
###It enables or disables the phone to forward incoming calls to international numbers.
|
||||
###0-Disabled,1-Enabled.
|
||||
|
|
@ -1214,22 +1267,20 @@ forward.no_answer.off_code =
|
|||
forward.international.enable =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Hotdesking Startup ##
|
||||
## 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 ##
|
||||
## Hotdesking Dsskey ##
|
||||
#######################################################################################
|
||||
hotdesking.dsskey_register_name_enable =
|
||||
hotdesking.dsskey_username_enable =
|
||||
|
|
@ -1237,8 +1288,9 @@ hotdesking.dsskey_password_enable =
|
|||
hotdesking.dsskey_sip_server_enable =
|
||||
hotdesking.dsskey_outbound_enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Alert Info ##
|
||||
## Alert Info ##
|
||||
#######################################################################################
|
||||
###X ranges from 1 to 100
|
||||
###distinctive_ring_tones.alert_info.x.text =
|
||||
|
|
@ -1273,16 +1325,18 @@ 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 ##
|
||||
## Call Waiting ##
|
||||
#######################################################################################
|
||||
call_waiting.enable = {$yealink_call_waiting}
|
||||
call_waiting.tone =
|
||||
call_waiting.on_code =
|
||||
call_waiting.off_code =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Action URL ##
|
||||
## Action URL ##
|
||||
#######################################################################################
|
||||
action_url.setup_completed =
|
||||
action_url.registered =
|
||||
|
|
@ -1323,9 +1377,8 @@ action_url.held =
|
|||
action_url.unheld =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Contact ##
|
||||
## Contact ##
|
||||
#######################################################################################
|
||||
local_contact.data.url =
|
||||
local_contact.image.url =
|
||||
|
|
@ -1334,21 +1387,24 @@ local_contact.data_photo_tar.url =
|
|||
|
||||
local_contact.photo.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Factory Configuration ##
|
||||
## Custom Factory Configuration ##
|
||||
#######################################################################################
|
||||
|
||||
static.custom_factory_configuration.url =
|
||||
static.features.custom_factory_config.enable =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Configuration ##
|
||||
## Custom Configuration ##
|
||||
#######################################################################################
|
||||
|
||||
static.configuration.url =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Custom Softkey ##
|
||||
## Custom Softkey ##
|
||||
#######################################################################################
|
||||
phone_setting.custom_softkey_enable =
|
||||
custom_softkey_call_failed.url =
|
||||
|
|
@ -1360,14 +1416,15 @@ custom_softkey_talking.url =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## Configure the access URL of firmware ##
|
||||
## Configure the access URL of firmware ##
|
||||
#######################################################################################
|
||||
###It configures the access URL of the firmware file.
|
||||
###The default value is blank.It takes effect after a reboot.
|
||||
static.firmware.url = {$yealink_firmware_url}/{$yealink_firmware_t58v}
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## RTCP ##
|
||||
## RTCP ##
|
||||
#######################################################################################
|
||||
phone_setting.rtcp_xr_report.enable =
|
||||
phone_setting.vq_rtcpxr.interval_report.enable =
|
||||
|
|
@ -1398,9 +1455,8 @@ voice.rtcp_xr.enable =
|
|||
voice.rtcp_cname =
|
||||
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## DNS ##
|
||||
## DNS ##
|
||||
#######################################################################################
|
||||
dns_cache_a.1.name =
|
||||
dns_cache_a.1.ip =
|
||||
|
|
@ -1421,7 +1477,7 @@ dns_cache_naptr.1.ttl =
|
|||
|
||||
|
||||
#######################################################################################
|
||||
## V80 Add ##
|
||||
## V80 Add ##
|
||||
#######################################################################################
|
||||
## Add Time 2015.6.26
|
||||
static.network.attempt_expired_time =
|
||||
|
|
@ -1455,8 +1511,9 @@ static.auto_provision.attempt_expired_time =
|
|||
phone_setting.ringback_timeout =
|
||||
phone_setting.ringing_timeout =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V80-SP1 Add ##
|
||||
## V80-SP1 Add ##
|
||||
#######################################################################################
|
||||
##Add Time 2015.9.2
|
||||
static.wifi.enable =
|
||||
|
|
@ -1466,8 +1523,10 @@ static.wifi.1.security_mode =
|
|||
static.wifi.1.cipher_type =
|
||||
static.wifi.1.password =
|
||||
features.bluetooth_adapter_name=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V80-SP2 Add ##
|
||||
## V80-SP2 Add ##
|
||||
#######################################################################################
|
||||
##Add Time 2016.5.26
|
||||
features.power_saving.enable=
|
||||
|
|
@ -1483,8 +1542,9 @@ features.power_saving.office_hour.saturday =
|
|||
features.power_saving.office_hour.sunday =
|
||||
screensaver.wait_time=
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## V81 Add ##
|
||||
## V81 Add ##
|
||||
#######################################################################################
|
||||
dialplan.digitmap.apply_to.on_hook_dial =
|
||||
dialplan.digitmap.apply_to.directory_dial =
|
||||
|
|
@ -1498,15 +1558,15 @@ 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 =
|
||||
voice.jib.wifi.max =
|
||||
voice.jib.wifi.normal =
|
||||
wui.quick_login =
|
||||
multicast.listen_address.1.volume =
|
||||
multicast.receive.use_speaker =
|
||||
multicast.listen_address.1.volume =
|
||||
multicast.receive.use_speaker =
|
||||
multicast.listen_address.1.channel =
|
||||
multicast.paging_address.1.channel =
|
||||
dialplan.emergency.asserted_id_source =
|
||||
|
|
@ -1518,14 +1578,14 @@ dialplan.emergency.1.value =
|
|||
dialplan.emergency.1.server_priority =
|
||||
features.keep_mute.enable =
|
||||
voice.tone.secondary_dial =
|
||||
features.power_saving.intelligent_mode =
|
||||
features.blf_active_backlight.enable =
|
||||
features.intercom.headset_prior.enable =
|
||||
expansion_module.1.key.1.extension =
|
||||
features.power_saving.intelligent_mode =
|
||||
features.blf_active_backlight.enable =
|
||||
features.intercom.headset_prior.enable =
|
||||
expansion_module.1.key.1.extension =
|
||||
|
||||
|
||||
#######################################################################################
|
||||
## Android phone-T58V Add ##
|
||||
## Android phone-T58V Add ##
|
||||
#######################################################################################
|
||||
##Add Time 2016.9.2
|
||||
|
||||
|
|
@ -1533,7 +1593,7 @@ sip.listen_in_peer_localip.enable =
|
|||
wifi.802_11e.enable =
|
||||
phone_setting.permit_silent_mode.enable =
|
||||
phone_setting.bluetooth_talk.enable =
|
||||
sip.h264.peer_resolution.default =
|
||||
sip.h264.peer_resolution.default =
|
||||
|
||||
features.doorphone.%d.display_name =
|
||||
features.doorphone.%d.full_screen =
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue