Yealink and Wifi

Status
Not open for further replies.

SlimJim

New Member
Feb 6, 2018
11
1
3
33
Northern Indiana
We are building out a site where 5 of our Yealink phones will be connected via Wifi. We have already done a Wifi audit to make sure they will work fine on wifi. But my question is, is there an simple way to connect these phones to wifi without having to enter the wifi on each phone? I see that Yealink has a wifi assistant, but I could not get that to work, and I question its use altogether. I know I can program the Wifi in the provisioning, but I would like to be able to setup a way that when we plug in the phone for the first time, it will auto connect to the network, and then send its provisioning request.
 

s2svoip

Member
Dec 9, 2019
248
7
18
44
you want to auto-provision a phone to give it wifi credentials before connecting it to a network?

it needs network access to first get its auto-provision info...
 

Adrian Fretwell

Well-Known Member
Aug 13, 2017
1,383
364
83
You could keep a short config file to load in manually with just that detail in it...

Code:
#!version:1.0.0.1

### This file is the exported MAC-all.cfg.

###  Static Configuration  ###
static.auto_provision.server.url = https://mypbx.co.uk/app/provision
static.auto_provision.server.username = ProvUserName
static.auto_provision.server.password = prov-password
static.network.wifi.internet_port.type = 0
static.network.wifi.ip_address_mode = 0
static.network.wifi.ipv6_icmp_v6.enable = 1
static.network.wifi.ipv6_internet_port.type = 0
static.network.wifi.ipv6_prefix = 64
static.network.wifi.ipv6_static_dns_enable = 0
static.network.wifi.preference = 0
static.network.wifi.static_dns_enable = 0
static.wifi.1.cipher_type = CCMP
static.wifi.1.label = MyWirelessNetwork
static.wifi.1.security_mode = WPA2-PSK
static.wifi.1.ssid = mywifi
static.wifi.1.password = mywifipassword
static.wifi.enable = 1
 
Status
Not open for further replies.