[YMCS/YDMP Free Trial Program]Yealink would like to offer Free Trial Program of Yealink device management service for our current eligible customers. You can see the details below.
https://www.yealink.com/ydmp-freetrial-2020


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help With T48 Provision
Author Message
yivgeny Offline
Junior Member
**

Posts: 6
Joined: Jan 2016
Reputation: 0
Post: #1
Help With T48 Provision
Hello,
Configure dhcp provision, it's go correct to tftp server.
Found from tftp logs:
T48 ask file MAC-ADDRESS.boot - that not exist
then ask - y000000000000.boot
then ask xxx.cfg file.
Why it's not ask MAC-ADDRESS.cfg file?
How i need to change y000000000000.boot that for every phone it's will ask MAC-ADDRESS.cfg file ?
My y000000000000.boot is:

#!version:1.0.0.1
## The header above must appear as-is in the first line

include:config <xxx.cfg>
include:config "xxx.cfg"

overwrite_mode = 1

Thank you.
(This post was last modified: 07-25-2017 01:08 PM by yivgeny.)
07-25-2017 01:07 PM
Find all posts by this user    like1    dislike0 Quote this message in a reply
Dalton Offline
Asterisk DCAP Certified Engineer
**

Posts: 10
Joined: May 2015
Reputation: 0
Post: #2
RE: Help With T48 Provision
I am struggling with this exact same issue...
(This post was last modified: 07-25-2017 02:04 PM by Dalton.)
07-25-2017 02:03 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
anonymous1711612242218
Unregistered

 
Post: #3
RE: Help With T48 Provision
(07-25-2017 01:07 PM)yivgeny Wrote:  Hello,
Configure dhcp provision, it's go correct to tftp server.
Found from tftp logs:
T48 ask file MAC-ADDRESS.boot - that not exist
then ask - y000000000000.boot
then ask xxx.cfg file.
Why it's not ask MAC-ADDRESS.cfg file?
How i need to change y000000000000.boot that for every phone it's will ask MAC-ADDRESS.cfg file ?
My y000000000000.boot is:

#!version:1.0.0.1
## The header above must appear as-is in the first line

include:config <xxx.cfg>
include:config "xxx.cfg"

overwrite_mode = 1

Thank you.

Dear User,
It is decided by you to choose which config file to be loaded.
Please refer to auto provision guide linked below,
http://download.support.yealink.com/down...V81_70.pdf
Kind Regards
Samuel Wang
07-26-2017 09:50 AM
     Quote this message in a reply
yivgeny Offline
Junior Member
**

Posts: 6
Joined: Jan 2016
Reputation: 0
Post: #4
RE: Help With T48 Provision
Thank you,

Can you please explain how to configure y000000000000.boot file that it will ask MAC-ADDRESS.cfg file and not xxx.cfg file ?
07-26-2017 02:29 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Phonism Offline
Junior Member
**

Posts: 10
Joined: Jun 2017
Reputation: 0
Post: #5
RE: Help With T48 Provision
The existence of a .boot file will stop the phone from asking for legacy configuration. I believe you can point the phone to pull a legacy configuration. I don't think you can use a hybrid of .boot and .cfg though.

Engineering Team @ Phonism
https://phonism.com/
07-26-2017 10:46 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
yivgeny Offline
Junior Member
**

Posts: 6
Joined: Jan 2016
Reputation: 0
Post: #6
RE: Help With T48 Provision
Hi,

I know that i can create MAC-ADDRESS.boot file per phone and on every file like this point it to MAC-ADDRESS.cfg (so i need 2 files per phone: MAC-ADDRESS.boot and MAC-ADDRESS.cfg) but i want to know if i can create general y000000000000.boot that will be in use for all phones and will point for every phone to his MAC-ADDRESS.cfg file.
07-27-2017 07:07 AM
Find all posts by this user    like0    dislike0 Quote this message in a reply
jolouis Offline
Moderator
*****

Posts: 339
Joined: Oct 2013
Reputation: 6
Post: #7
RE: Help With T48 Provision
(07-27-2017 07:07 AM)yivgeny Wrote:  I know that i can create MAC-ADDRESS.boot file per phone and on every file like this point it to MAC-ADDRESS.cfg (so i need 2 files per phone: MAC-ADDRESS.boot and MAC-ADDRESS.cfg) but i want to know if i can create general y000000000000.boot that will be in use for all phones and will point for every phone to his MAC-ADDRESS.cfg file.

Ran into this exact same issue ourselves. In all the Yealink documentation for the new provisioning process, there is no mention of a special keyword or variable that can be used inside the boot file. I expect one does exist (i.e. $MAC or something like that), but since it's not documented anywhere seems impossible to guess at what the value might be.

In our case we solved the issue by not using .boot files at all. If you do not have either y000000000000.boot or MAC-ADDRESS.boot then the phone does what it used to do, and requests the y000000000xx.cfg followed by it's own mac.cfg.

I understand why they implemented the .boot system, but it seems very odd that Yealink does not provide a standard sample y000000000000.boot file which implements the old style by default (that way we can learn about the new .boot and play with it without having it absolutely break everything).
07-31-2017 02:28 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
bflorin Offline
Junior Member
**

Posts: 8
Joined: Oct 2016
Reputation: 0
Post: #8
RE: Help With T48 Provision
Its documented.... You just haven't read the right document yet.

My y000000000000.boot

#!version:1.0.0.1
## The header above must appear as-is in the first line

## include:config "yealink-logging.cfg"
## include:config "yealink-syslog.cfg"
include:config "$MAC.cfg"
include:config "yealink-reboot.cfg"
overwrite_mode = 1
09-08-2017 01:19 AM
Find all posts by this user    like0    dislike0 Quote this message in a reply
eagle21221 Offline
Junior Member
**

Posts: 2
Joined: Nov 2017
Reputation: 0
Post: #9
RE: Help With T48 Provision
(09-08-2017 01:19 AM)bflorin Wrote:  Its documented.... You just haven't read the right document yet.

My y000000000000.boot

#!version:1.0.0.1
## The header above must appear as-is in the first line

## include:config "yealink-logging.cfg"
## include:config "yealink-syslog.cfg"
include:config "$MAC.cfg"
include:config "yealink-reboot.cfg"
overwrite_mode = 1

thanks for the $MAC.cfg i've been looking for the past 3 days for that.

also what is in your yealink-reboot.cfg

im guessing so you don't have to hit re provision twice?
11-09-2017 03:43 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Auto Provision Wall Paper Stopped Working TRP Tech 5 9,150 02-19-2024 12:02 AM
Last Post: jamesalan
Smile W73P dect phone not allowing to auto-provision as different extension Andi_Dee 2 1,190 02-05-2024 12:49 PM
Last Post: bekean
  Yealink T54W Auto Provision not working h.cmc 1 3,543 12-09-2022 08:31 PM
Last Post: complex1
  Auto provision username and password kbrownlees 7 22,581 08-23-2022 11:16 PM
Last Post: mbole
  DO NOT Provision / Update Firmware looker44 2 7,377 08-17-2021 04:44 AM
Last Post: looker44
  Auto-Provision W60P on FreeSWITCH Phoneperson 10 24,879 03-06-2021 03:51 AM
Last Post: Phoneperson
  Factory Reset via Provision Andrews1 3 11,482 07-02-2019 03:09 PM
Last Post: Fraukas2
Lightbulb Auto provision firmware ... Yuriy Y. 1 8,227 04-26-2019 05:40 AM
Last Post: Yuriy Y.
  Auto-Provision Firmware Rus 0 5,400 08-24-2018 11:07 AM
Last Post: Rus
  Auto Provision - first time with encrypting.. Gilb 14 45,078 06-21-2018 10:05 AM
Last Post: wanna

Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us   Yealink   Return to Top   Return to Content   Lite (Archive) Mode   RSS Syndication