Yealink Forums
Help With T48 Provision - Printable Version

+- Yealink Forums (http://forum.yealink.com/forum)
+-- Forum: IP Phone Series (/forumdisplay.php?fid=4)
+--- Forum: Auto Provisioning (/forumdisplay.php?fid=14)
+--- Thread: Help With T48 Provision (/showthread.php?tid=41012)



Help With T48 Provision - yivgeny - 07-25-2017 01:07 PM

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.


RE: Help With T48 Provision - Dalton - 07-25-2017 02:03 PM

I am struggling with this exact same issue...


RE: Help With T48 Provision - anonymous1712222627012 - 07-26-2017 09:50 AM

(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/download?path=upload%2Fattachment%2F2017-3-20%2F3%2F7b1fa22d-efed-4059-871c-d077b973227a%2FYealink_IP_Phones_Auto_Provisioning_Guide_V81_70.pdf
Kind Regards
Samuel Wang


RE: Help With T48 Provision - yivgeny - 07-26-2017 02:29 PM

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 ?


RE: Help With T48 Provision - Phonism - 07-26-2017 10:46 PM

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.


RE: Help With T48 Provision - yivgeny - 07-27-2017 07:07 AM

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.


RE: Help With T48 Provision - jolouis - 07-31-2017 02:28 PM

(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).


RE: Help With T48 Provision - bflorin - 09-08-2017 01:19 AM

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


RE: Help With T48 Provision - eagle21221 - 11-09-2017 03:43 PM

(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?