Presets,provision und the use,

Hello
im new to genieacs;
Got it working;
Got the 1st device online,
Got ext script with Databaseconnection zto resolve the costomers name working ( vit Parameter)
My goal:
Implement the acs in a life network; Routers: AVM
The existing Routers should appear in the ACS without any changes on the Client site ( wifi,…)
New devices shoud on first boot Take the Default wifi name ( got working with device serial number)
My question:
Whats the best way: ( presets, Provision, VritualParams)
How i reach the goals:

State now: code in the inform Provision integrated
Goal: Once a day check the names from database ( VirtualParameters.NAME)
at first boot : Canche the wifi name, ISP name,…
at reboot: Check about firmware update

offtopik: id like to read the Bandwithusage from the client and display it in a chart…

Privision INFORM:
// Device ID as user name
const username = declare(“DeviceID.ID”, {value: 1}).value[0]

// Password will be fixed for a given device because Math.random() is seeded with device ID by default.
const password = Math.trunc(Math.random() * Number.MAX_SAFE_INTEGER).toString(36);

const informInterval = 300;

// Refresh values daily
const daily = Date.now(86400000);

// Unique inform offset per device for better load distribution
const informTime = daily % 86400000;

declare(“InternetGatewayDevice.ManagementServer.ConnectionRequestUsername”, {value: daily}, {value: username});
declare(“InternetGatewayDevice.ManagementServer.ConnectionRequestPassword”, {value: daily}, {value: password});
declare(“InternetGatewayDevice.ManagementServer.PeriodicInformEnable”, {value: daily}, {value: true});
declare(“InternetGatewayDevice.ManagementServer.PeriodicInformInterval”, {value: daily}, {value: informInterval});
declare(“InternetGatewayDevice.ManagementServer.PeriodicInformTime”, {value: daily}, {value: informTime});

declare(“Device.ManagementServer.ConnectionRequestUsername”, {value: daily}, {value: username});
declare(“Device.ManagementServer.ConnectionRequestPassword”, {value: daily}, {value: password});
declare(“Device.ManagementServer.PeriodicInformEnable”, {value: daily}, {value: true});
declare(“Device.ManagementServer.PeriodicInformInterval”, {value: daily}, {value: informInterval});
declare(“Device.ManagementServer.PeriodicInformTime”, {value: daily}, {value: informTime});

//Standard wlan config bei ersteinstellung/werkseinstellung
let boot = declare(“Events.0_BOOTSTRAP”, {value: 1}); //zeitpunkt der ersteinstellung
let jetzt = Date.now();//Zeit jetzt
if (((boot.value[0] + 600000) >= jetzt) && (jetzt >= (boot.value[0] + 60000))) {
let HWVers = declare(“InternetGatewayDevice.DeviceInfo.HardwareVersion”, {value: 1});
let serial = declare(“DeviceID.SerialNumber”, {value: 1});
if (HWVers.value[0] == ‘FRITZ!Box 7530 AX’ || HWVers.value[0] == ‘FRITZ!Box 4060’){
declare(“InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID” , null, {value: ‘A-GLAS-’ + serial.value[0].substring(8)});
declare(“InternetGatewayDevice.LANDevice.1.WLANConfiguration.2.SSID” , null, {value: ‘A-GLAS-’ + serial.value[0].substring(8)});
declare(“InternetGatewayDevice.LANDevice.1.WLANConfiguration.3.SSID” , null, {value: ‘A-GLAS-’ + serial.value[0].substring(8)});
}
else {
declare(“InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID”, null, {value: ‘A-GLAS-’ + serial.value[0].substring(8)});
declare(“InternetGatewayDevice.LANDevice.1.WLANConfiguration.2.SSID” , null, {value: ‘A-GLAS-’ + serial.value[0].substring(8)});
}
declare(“InternetGatewayDevice.WANDevice.1.WANCommonInterfaceConfig.X_AVM-DE_ATA_UpstreamSpeed”, {value: 100000});
declare(“InternetGatewayDevice.WANDevice.1.WANCommonInterfaceConfig.X_AVM-DE_ATA_DownstreamSpeed”, {value: 100000});
declare(“InternetGatewayDevice.UserInterface.X_AVM-DE_AlternativeISPDisplayname”, {value: ‘A-Glas’});

//declare(“Reboot”, null, {value: Date.now() + (30 * 1000)}); //neustart das auch alles sauber übernommen wird
}

How are all the routers in the field going to know to inform to the ACS without any changes?

Why? In case a new customer comes online? Or one is deprovisioned?

CPEs by in large only report the current value for a parameter, and GenieACS out of the box does not store any historical information.

Hello
Thanks for the reply

Yes the router bekome the acs url with the dhpc renew; then they appear in the acs.
when in the thovisions no code is insertet the router only apper? or?

“Why? In case a new customer comes online? Or one is deprovisioned?”
Yes i dont know what thime i make once a day or week, this time i can adjust in the shedule?

Groundconfig:
Presets: are called like a cron or when a event (correct?) can i have more provisions in 1 presets?
Provisions: the code for the Name resolution ( ext) ( correct?)
Virtual Parameter: Name of the parameter without code( correct?)

Thanks

This will cause every router to send a 1 BOOTSTRAP because the ACS URL has changed from none, to the new value. The way to prevent all of your CPEs from going through the reprovision process is to temporarily disable your provisions that setup a router. When I had to do something similar, I set a 2 hour window when no new customers could be provisioned, and any router that came online during this time period was presumed to be fully provisioned. After the time window, I re-enabled full provisioning of routers.

You are making things to complicated :smiley:. Add a provisioned tag (or what ever you want to call it) to your CPE when its fully provisioned by the ACS. When a customer disconnects, remove the tag from the CPE. When the CPE boots next, reprovision the CPE.

Provision scripts are only called based on the preset settings, and only occur when a CPE informs/boots/etc.

Thanks
i will implement and test it :+1:

Thanks Your answer Help me a Lot!
The current solution:
On preset 0 bootstrap execute Provision bootstrap : a tag with bootstrap will be created
When i add allrady configured Routers indisable It.
On preset 1boot execute Provision wifi-default thats Checks ist Tag bootstrap is added.
If yes then Set the speech,WiFi,… And add Tag"provisioned"
If no : nothing.

The Name Resolution will be triggeted by a preset “NAME”
The shedulder : 350 0 4 * * 1 will execute the Script only 350 sec with start at Minute 0 on hour 4 at mondy
290 sec because my informtime ist 300 so the Script ist triggered only 1 time for a Router.