RuBAN supports provisioning of Cohda devices through a package called WaveMgr. The WaveMgr package installs a small agent called the ZTP_executor.sh which periodically calls home to the RuBAN server for any provisioning job to perform. If a provisioning job has been configured for a device the ZTP_executor will download and execute the job, the job comes in the form of a bash script which the user writes when creating the job. On completing the job the ZTP_executor uploads a report indicating success or failure. When RuBAN receives a successful job report it will add the device to the system and it can be viewed in reports and generally managed by RuBAN.
To install the ZTP agent copy the WaveMgr-x.y.z.tar.gz to the Cohda device
The ZTP_executor is configured with two parameters: ruban_ip and ruban_port. These can be configured on the Cohda devices command line as follows:
The ZTP_executor follows a simple lifecycle:
In all cases if the script returns 0 for any call it is regarded as a successful call and the ZTP executor will proceed to the next step in the process.
A ztp job is a bash script which is called by the ZTP_executor. The easiest way to get started with writing one of these scripts is to use the ZTP_config_skel.sh. The skeleton script is a template script, it reads the first argument passed to the script and invokes one of init(), precheck(), configure(), post_reboot_config(),verify(),rollback() depending on the first argument value. So to create your own script just copy this script and fill in the commands you want to execute in the appropriate functions and the template will take care of the sequencing and lifecycle.
Special meaning is attributed to any token that looks like: <my_variable> this is a substitution placeholder. When you create the ztp job you create a csv file, one row for each device you wish to provision. If there is a value in the script that you would like to set differently for each device when the script is run then this mechanism facilitates that. When writing your script define a bash variable:
MY_VAR=<MY_VAR>
Later when defining your ZTP job add a column in your csv file with heading "MY_VAR" and set the value for your devices in each row.
To define a ZTP job go to Admin->ZTP and click "Create Profile"
The ztp file is a simple csv file, the only constraint is that the first column of each row must identify the unique serial number of the cohda device, all subsequent values are regarded as values to be substituted into the ztp bash script as described earlier.