You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

This page is under development

Introduction

WebUI is a graphical user interface that is available to the connected devices. It acts as an application running on the RDK-B stack and performs the functions of a device management interface similar to TR69 & SNMP. A user can monitor and modify RDK-B feature settings/rules using WebUI. It is a client–server application, client runs in a web browser (as part of devices connected over LAN) and Lighttpd on the RDK-B stack acts as server. The functions in WebUI are defined in C and are called from PHP using ZEND_API. PHP and the Zend Engine manage [exchange] variables internally over the D-Bus.

Architecture

This is the architecture of WebUI component.

Figure 1. WebUI Architecture

WebUI component uses HTML and JavaScript on Client side [ browser ] and PHP on Server side [ Lighttpd ]. Zend Engine (ZE) analyses the input code, translates it, and executes it. PHP is functionality of the language (its functions, classes, etc.) and interface is the part that talks to the Web server. "cosa.so" [ ZEND library ] is loaded at runtime using the extension tag in php.ini. In case of Dual core architecture, separate Lighttpd instances run on each core and one will act as a proxy.

Core functions that interact with RDK-B’s components are:

  • getStr(Obj)
    • GET value by Object name

  • setStr(Obj, Value, Flag)
    • SET value by Object name

  • getInstanceIDs(Obj)
    • GET table indexes as string of “,” separated values

  • DmExtGetInstanceIds(Obj)
    • GET table indexes as an array

  • addTblObj(RootObj)
    • Create new index in a table

  • delTblObj(RootObjIndex)
    • Delete an existing index in a table

  • DmExtGetStrsWithRootObj(RootObj, ObjArray)
    • GET values by Object name and Index

  • DmExtSetStrsWithRootObj(RootObj, Flag, 2D-Array)
    • SET values by Object name and Index

Flow diagram for getStr(Obj):


Flow diagram for setStr(Obj, Value, Flag):




Features 

Gateway

At a Glance, Email Notification, Connection Status, Local IP Network, Wi-Fi, MTA, MoCA, Firewall IPv4 / IPv6, Software, Hardware, etc.

Connected Devices

Connected Devices and Range Extenders

Parental Control

Managed Sites, Managed Services, Managed Devices and Reports

Advanced

Port Forwarding, Port Triggering, Remote Management, DMZ, etc.

Troubleshooting

Troubleshooting Logs, Diagnostic Tools, Reset/Restore Gateway, Change Password, etc.


  • Only MSO has access to monitor / modify Email Notification, Wi-Fi Home Security and Community Wi-Fi


Note: The name Zend refers to the language engine [ PHP's core ]


  • No labels