Commotion Network Dashboard Application for Commotion Wireless Request for Development Proposals

Size: px
Start display at page:

Download "Commotion Network Dashboard Application for Commotion Wireless Request for Development Proposals"

Transcription

1 Commotion Network Dashboard Application for Commotion Wireless Request for Development Proposals Date: Prepared by: Jernej Kos Institute for Development of Advanced Applied Systems 1. Overview In this proposal we present our vision for the Commotion Network Dashboard, based on our open source platform for building network dashboards. Our proposal combines efficiency, security and platform independence with modularity and extensibility that will enable the dashboard to be easily extended also in the future. We have several years of experience in developing network dashboards suitable for supporting operations within community wireless networks during which we have successfully developed, deployed and maintained our own dashboard within a country-wide community wireless network called wlan slovenia. It currently monitors more than 800 nodes. This is the reason why we will be able to leverage real-world experience to provide the best possible solution within the proposed budget. 2. License The core nodewatcher platform and all developed modules are going to be licensed under GNU Affero General Public License version 3. The documentation and other non-code elements are going to be licensed under Creative Commons Attribution-ShareAlike license version Architecture The proposed Commotion Network Dashboard is going to be built using our open source platform called nodewatcher, that is being developed specifically for building different kinds of network dashboards, focusing on community wireless networks. Using the nodewatcher platform as a basis for development of the Commotion Network Dashboard enables us to build an extensible and modular network dashboard, a feat that would otherwise not be possible with this budget. Description of the architecture is split into multiple sections. First we describe the core nodewatcher platform and its components that will be used for developing the Commotion Network Dashboard. We further show how the platform enables modular design and quickly describe the core components that enable handling node/network monitoring, time series data collection, storage and visualization all with future extensibility in mind. 3.1 Platform The nodewatcher platform's server part is written in Python and uses the Django web framework. All functionality is split into different modules some modules represent core functionality while other provide dashboard-specific extensions. These modules are actually standard Django applications using the core infrastructure that the platform provides. Such structure is already known to other developers using the Django framework, which makes code maintenance easier. Core functionality entails components that are normally used when building a network dashboard. Not all components will be used by the Commotion Network Dashboard as the RfP specifications don't mention some functionality this will be indicated (by a *) together with the component description as

2 a possible later dashboard extension 1. We present a quick overview of components here: Database Model Registry To enable an extensible schema for node models and to enable automatic generation of configuration forms in the frontend, the platform provides a thin abstraction layer over the standard Django ORM. This abstraction layer is currently used for storing two different kinds of per-node data one is node configuration and the other are current values reported by the monitoring system from live network feeds. In both cases, the registry abstraction serves as a way to a) access models related to a node and b) for modules to simply add new configuration or monitoring models and have them integrated with the rest of the platform and other modules. At the same time, we are also developing a common community wireless network core schema that can describe nodes in all community networks using such an abstraction enables easier exchange of data between different community networks. For the Commotion Network Dashboard we are going to develop additional configuration and monitoring models that are required by the specification (detailed in further sections) and when possible (when the modules are generally useful) we will also consider including them into the core schema. Resource Allocation from Pools* Used when some resources must be allocated to nodes from a common pool. This includes IPv4 addresses for configuring interfaces on a node when addresses are not automatically generated by a node (as this is hard to do in IPv4 environments when we want to avoid collisions). This component will not be directly used in Commotion Network Dashboard at this time as the Commotion-OpenWRT nodes use auto-configuration. Monitoring, Data Storage and Visualization In order to enable the dashboard to monitor live network operation, the monitoring component is provided. It enables any module to a) implement a new data collection method that fetches data from nodes and provides it for other modules to process, b) process this data and possibly generate events when detecting anomalies, and c) access current and past data for performing further analysis and generating a visualization. The current snapshot of the data collected is stored into the standard relational database via the registry abstraction. For historical viewing of time series data and later visualization, we have developed a component called datastream. This component is independent from the base nodewatcher platform and can also be used elsewhere. Its currently implemented backend enables the storage of time series data into a non-relational MongoDB database, taking care of proper aggregation and computation of derived streams such as counter-based derivatives. This data can then be directly used by the frontend to support an interactive graph visualization using HTML5 and Javascript libraries which are also going to be used in the case of Commotion Network Dashboard. Firmware Image Generator* The platform supports generation of firmware images that are already configured for specific nodes. Any platform module can register so called CGM (Configuration Generating Module) functions that use a node's high-level configuration stored via the model registry abstraction and outputs configuration for a specific platform (currently, only OpenWRT is supported, but the whole system is extensible and can support any platform). Also, the image generator includes a database of device descriptors, containing hardware characteristics of individual router devices enabling the generated configuration to be generated for any hardware that the platform supports. This component enables simple node provisioning with no configuration required at the nodes themselves and all configuration being centrally stored and validated in real time via the monitoring component. Commotion Network Dashboard does not currently specify a need for such a way of node configuration and provisioning, but it is possible to add as a future extension. 1 Please note that any features marked as future extension possibilities are not included in the proposed budget calculation.

3 OpenWRT Package Feed This component is the client part of the nodewatcher platform. It is a package feed for OpenWRT containing packages that enable monitoring and management of remote nodes. These packages will be upgraded with Commotion-related functionality and since Commotion platform is also based on OpenWRT, most of the packages can be reused and new ones added. We have designed all custom packages to be fully configurable via UCI (the Unified Configuration Interface that OpenWRT uses for all of its configuration). We will follow the same pattern for all packages developed for Commotion Network Dashboard as this will enable interoperation with other packages. 3.2 Modules In this section we describe the proposed modules that will be developed in addition to the nodewatcher platform. For each module we specify all the components that will be developed, based on the platform description above (for example, what configuration models are going to be developed, what monitoring processors are going to be developed, what client functionality will be developed etc.) Module: Login, Account Registration and Management General: This module enables registration of new user accounts and management of per-user settings. The module will support standard ways of confirming registration (confirmation via a link sent to a user's address, approval by an administrator), registration form will include a recaptcha Module: Networks General: The networks module enables the support and management of different networks within the same Commotion Network Dashboard deployment. Each node is configured to be part of a specific network. Configuration Schema: A model linking a node with the network instance needs to be developed. This functionality is similar to different projects support that is present in the core schema Module: Network Statistics General: This module enables the collection and display of various per-network statistics. Such statistics include things like the number of nodes in different states (up, down, pending, etc.), number of nodes grouped by different maintainers, by different hardware, the number and length of links, etc. Monitoring: Per-network statistics will be computed and updated by a processor using the monitoring component of the nodewatcher framework Module: Maintainer Contact Information General: This module will provide the ability for node maintainers/network administrators to store private maintainer contact information inside the dashboard. Visibility of this information will be configurable, but limited to maintainers/administrators by default. Configuration Schema: A new configuration model containing fields for specifying contact information will be developed Module: Node Security Associations General: Each node needs to establish a two-way security association with the dashboard server component. We propose to use X.509 certificates and HTTPS for this purpuse. These certificates can be

4 self-signed and generated on the nodes (the only problem here is the lack of entropy for generating the cryptographic keys when nodes are booted up) or generated by the dashboard and integrated into the firmware (this can be achieved by leveraging the Firmware Image Generator component of the nodewatcher platform). The module is responsible for verifying and recording the node's fingerprint into the node's configuration as a security association item. A mode of operation where an administrator is required to confirm the fingerprint's validity can also be implemented. Once a fingerprint is confirmed it is validated on each monitoring run and the resulting secure channel can be used for communication between the node and the dashboard. Security associations also include SSH key fingerprints which can be used for verification when performing remote upgrades. Configuration Schema: A security association model needs to be designed. It will include fields for the type of the association (X.509 certificate fingerprint for HTTPS, SSH fingerprint, etc.), the association data (cryptographic fingerprint value), time of establishment and (optional) whether it has been confirmed by an administrator. Monitoring: The monitoring module will check whether a valid security association exists for the node that is being checked. If it does, it will use any valid association (in theory, we can support multiple) and if one is not found, the channel will not be established and a problem with the node will be reported. In this case, no monitoring data will be fetched from the node. When no valid association exists, the public key fingerprint will be recorded and stored into the configuration registry as an unconfirmed association (depends on policy if it is required that an administrator confirms the association or not). Client: On the client a HTTPS capable web server will be used we recommend the uhttpd daemon with libcyassl support (this is a small library implementing, among other things, TLS). This will serve as a secure channel between the dashboard and the nodes Module: Firmware Images Without Configuration General: For supporting the Commotion Network Dashboard model of provisioning nodes where all nodes with the same hardware get the same firmware image without any per-node configuration being generated. This module will enable the user with maintainer role to obtain a firmware image for his node(s), where the system will select the proper image automatically based on the selected hardware type. Functionality provided by this module will be built using the Firmware Image Generator component provided by nodewatcher platform Module: Node Hardware Type Discovery General: In order to enable automatic node registration into the dashboard, it should be possible to automatically discover the hardware that is running on a node. To perform this, existing nodewatcher device descriptors will be extended to support reverse device resolution. Monitoring: Module will register a processor that will interpret hardware type data provided by the node client and set an appropriate hardware type. An option to automatically update node's existing configuration will be provided. Client: Addition to nodewatcher-base OpenWRT package so that the node's hardware type is reported based on information available from the node's Linux kernel Module: Dashboard Administration General: The dashboard administration module will enable global management functions. This

5 includes managing user accounts, setting up user roles and permissions, managing networks. The administration module will be built as a container where different modules can register their additional functionalities so for example the Networks module can add management of different networks to the dashboard administration. Core Platform: Some changes in the core platform regarding permissions handling might be necessary in order to support roles (sets of permissions). The core platform permissions are based on the Django Guardian framework which is an extensible framework that uses standard Django APIs Module: Node Information Display and Modification General: A frontend module that is able to display current node information to the user. This information includes the node's geographical location (when available) using a third-party mapping solution (OpenStreetMap or Google Maps). Also included are any data items obtained via the monitoring system and stored into the monitoring schema by other modules including topological position of the node. This module will also include visualizations of statistical data obtained via the monitoring system via the datastream interface. All visualizations will be rendered client-side and will be interactive the user will be able to select timespans, zoom in/out of the chart, pan the chart etc. 3.3 Deployment Requirements Commotion Network Dashboard server component is going to be deployed in the same way as any Django-based web application. All third party dependencies will be installable either via standard Python package repositories (eg. pypi) or as standard Debian/Ubuntu packages. Full installation documentation based on a standard Debian/Ubuntu Linux distribution is going to be included. The client component will consist of standard OpenWRT installable packages that will support configuration via UCI. 4. Deliverables The following items will be delivered: 1. Source code for nodewatcher platform and Commotion Network Dashboard, if needed in the form of a Git repository. All development will be done in the open on GitHub, unless something different is required by the contract. 2. Documentation for both, nodewatcher platform and the Commotion Network Dashboard. This includes code reference, development documentation with examples of API use, installation instructions and user manual. This deliverable will be provided in the form of Sphinx compatible restructuredtext documents (source) and HTML/PDF files (built documentation). 5. Development Timeline Duration of this development project is 12 months. We envision the following milestones during Commotion Network Dashboard development cycle: M1. [month 2-3] Necessary updates to nodewatcher core platform developed these are mostly backend changes with test cases and with basic frontend code. M2. [month 7] Most of Commotion Network Dashboard modules developed and integrated together with the corresponding frontend parts. At this stage the dashboard is functional

6 feature-wise and in a deployable state, but might have some rough edges and lacks documentation. M3. [month 11] Further polishing of the dashboard, full documentation ready. M4. [month 12] Complete Commotion Network Dashboard with full documentation. 6. Budget Budget breakdown is as follows: Price Taxes Final Coordination with OTI $ $ $1, Updates to nodewatcher platform $2, $ $3, Development of Commotion Network Dashboard modules $8, $3, $12, Documentation $2, $1, $4, Budget $14, $5, $20, Team Jernej Kos (jernej@kos.mx, is a computer science researcher, software developer and network engineer with over nine years of experience. He enjoys working on interesting projects, specifically with backend architecture and low-level details. He has experience with scalable web application development, development of software for embedded devices, routing protocol internals and more. In 2005 he co-founded a software development and consultancy company specializing in the above fields and also freelances and consults on various interesting projects. He is also involved with open source projects, the most prominent being wlan slovenia, where he has developed a modular platform for network monitoring and provisioning. His current research interests include secure, privacy-aware decentralized services and their uses. Mitar Milutinović is a 2nd year Computer Science PhD student at UC Berkeley researching collaboration tools on the Internet. He is managing various open source projects in this area, most notably wlan slovenija, an open wireless network of Slovenia. He is interested in how networked societies work and how tools can help people improve ways they work together. Luka Mustafa is a masters MEng Electronic Engineering with Communications Engineering MEng student at University College London (UCL) on gap-year working full-time on KORUZA ( development. In 2013 he received BEng degree at UCL with the project VALET. He is actively involved in wlan slovenija community wireless network and the construction, deployment and management of national and international wireless backbones. He actively pursuits the development of new and efficient systems by repurposing mass-produced components and equipment and contributes to several electronics projects worldwide, with intern experience in particle accelerator control systems in Cosylab.

Client Overview. Engagement Situation. Key Requirements for Platform Development :

Client Overview. Engagement Situation. Key Requirements for Platform Development : Client Overview Our client provides leading video platform for enterprise HD video conferencing and has product suite focused on product-based visual communication solutions. Our client leverages its solutions

More information

Cisco Performance Visibility Manager 1.0.1

Cisco Performance Visibility Manager 1.0.1 Cisco Performance Visibility Manager 1.0.1 Cisco Performance Visibility Manager (PVM) is a proactive network- and applicationperformance monitoring, reporting, and troubleshooting system for maximizing

More information

Cisco Integrated Video Surveillance Solution: Expand the Capabilities and Value of Physical Security Investments

Cisco Integrated Video Surveillance Solution: Expand the Capabilities and Value of Physical Security Investments Cisco Integrated Video Surveillance Solution: Expand the Capabilities and Value of Physical Security Investments What You Will Learn In many enterprises, physical security departments are making a notable

More information

TimePictra Release 10.0

TimePictra Release 10.0 DATA SHEET Release 100 Next Generation Synchronization System Key Features Web-based multi-tier software architecture Comprehensive FCAPS management functions Software options for advanced FCAPS features

More information

Easily Connect, Control, Manage, and Monitor All of Your Devices with Nivis Cloud NOC

Easily Connect, Control, Manage, and Monitor All of Your Devices with Nivis Cloud NOC Easily Connect, Control, Manage, and Monitor All of Your Devices with Nivis Cloud NOC As wireless standards develop and IPv6 gains widespread adoption, more and more developers are creating smart devices

More information

Solution for private cloud computing

Solution for private cloud computing The CC1 system Solution for private cloud computing 1 Outline What is CC1? Features Technical details Use cases By scientist By HEP experiment System requirements and installation How to get it? 2 What

More information

Kaseya Traverse. Kaseya Product Brief. Predictive SLA Management and Monitoring. Kaseya Traverse. Service Containers and Views

Kaseya Traverse. Kaseya Product Brief. Predictive SLA Management and Monitoring. Kaseya Traverse. Service Containers and Views Kaseya Product Brief Kaseya Traverse Predictive SLA Management and Monitoring Kaseya Traverse Traverse is a breakthrough cloud and service-level monitoring solution that provides real time visibility into

More information

Solution for private cloud computing

Solution for private cloud computing The CC1 system Solution for private cloud computing 1 Outline What is CC1? Features Technical details System requirements and installation How to get it? 2 What is CC1? The CC1 system is a complete solution

More information

Monitoring the Real End User Experience

Monitoring the Real End User Experience An AppDynamics Business White Paper HOW MUCH REVENUE DOES IT GENERATE? Monitoring the Real End User Experience Web application performance is fundamentally associated in the mind of the end user; with

More information

Smart Business Architecture for Midsize Networks Network Management Deployment Guide

Smart Business Architecture for Midsize Networks Network Management Deployment Guide Smart Business Architecture for Midsize Networks Network Management Deployment Guide Introduction: Smart Business Architecture for Mid-sized Networks, Network Management Deployment Guide With the Smart

More information

CNS-200-1I Basic Administration for Citrix NetScaler 9.0

CNS-200-1I Basic Administration for Citrix NetScaler 9.0 CNS-200-1I Basic Administration for Citrix NetScaler 9.0 This course covers the initial configuration and administration of Citrix NetScaler 9.0. Learners gain an understanding of NetScaler features such

More information

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise

More information

IOTIVITY AND EMBEDDED LINUX SUPPORT. Kishen Maloor Intel Open Source Technology Center

IOTIVITY AND EMBEDDED LINUX SUPPORT. Kishen Maloor Intel Open Source Technology Center IOTIVITY AND EMBEDDED LINUX SUPPORT Kishen Maloor Intel Open Source Technology Center Outline Brief introduction to IoTivity Software development challenges in embedded Yocto Project and how it addresses

More information

Final Report - HydrometDB Belize s Climatic Database Management System. Executive Summary

Final Report - HydrometDB Belize s Climatic Database Management System. Executive Summary Executive Summary Belize s HydrometDB is a Climatic Database Management System (CDMS) that allows easy integration of multiple sources of automatic and manual stations, data quality control procedures,

More information

Path Monitoring Tools Deployment Planning for U.S. T123. Jeff Boote Internet2/R&D. July 22, 2008 Jt Techs, UNL, Lincoln NE

Path Monitoring Tools Deployment Planning for U.S. T123. Jeff Boote Internet2/R&D. July 22, 2008 Jt Techs, UNL, Lincoln NE Path Monitoring Tools Deployment Planning for U.S. T123 Jeff Boote Internet2/R&D July 22, 2008 Jt Techs, UNL, Lincoln NE Implementation Considerations Constraints 1. Different LHC participants are interested

More information

pavlix@pavlix.net pavlix@pavlix.net

pavlix@pavlix.net pavlix@pavlix.net Evolution of Linux network management Developer Conference 2013, Brno http://data.pavlix.net/devconf/2013/ 1/27 Evolution of Linux released From: Dan Williams To: networkmanager-list

More information

Using Cisco UC320W with Windows Small Business Server

Using Cisco UC320W with Windows Small Business Server Using Cisco UC320W with Windows Small Business Server This application note explains how to deploy the Cisco UC320W in a Windows Small Business Server environment. Contents This document includes the following

More information

SolarWinds Network Performance Monitor

SolarWinds Network Performance Monitor SolarWinds Network Performance Monitor powerful network fault & availabilty management Fully Functional for 30 Days SolarWinds Network Performance Monitor (NPM) makes it easy to quickly detect, diagnose,

More information

SOLARWINDS NETWORK PERFORMANCE MONITOR

SOLARWINDS NETWORK PERFORMANCE MONITOR DATASHEET SOLARWINDS NETWORK PERFORMANCE MONITOR Fault, Availability, Performance, and Deep Packet Inspection SolarWinds Network Performance Monitor (NPM) is powerful and affordable network monitoring

More information

Basic Administration for Citrix NetScaler 9.0

Basic Administration for Citrix NetScaler 9.0 Basic Administration for Citrix NetScaler 9.0 CTX-NS09 DESCRIZIONE: Overview This course covers the initial configuration and administration of Citrix NetScaler 9.0. Learners gain an understanding of NetScaler

More information

ivms-4500(iphone) Mobile Client Software User Manual (V1.0)

ivms-4500(iphone) Mobile Client Software User Manual (V1.0) ivms-4500(iphone) Mobile Client Software User Manual (V1.0) Thank you for purchasing our product. This manual applies to ivms-4500 (iphone) mobile client software, please read it carefully for the better

More information

Ensuring the security of your mobile business intelligence

Ensuring the security of your mobile business intelligence IBM Software Business Analytics Cognos Business Intelligence Ensuring the security of your mobile business intelligence 2 Ensuring the security of your mobile business intelligence Contents 2 Executive

More information

SIP Trunking and the Role of the Enterprise SBC

SIP Trunking and the Role of the Enterprise SBC SIP Trunking and the Role of the Enterprise SBC a Tango Networks ebriefing SIP trunks offer companies of all sizes the opportunity to improve and simplify their communications network while reducing costs.

More information

FRONT-END FOR MONITORING MESH NETWORK

FRONT-END FOR MONITORING MESH NETWORK FRONT-END FOR MONITORING MESH NETWORK By Lesetsa Mojapelo A thesis submitted in partial fulfillment of the requirements for the degree of Honours in Computer Science The University of the Western Cape

More information

SolarWinds Network Performance Monitor

SolarWinds Network Performance Monitor SolarWinds Network Performance Monitor powerful network fault & availabilty management Fully Functional for 30 Days SolarWinds Network Performance Monitor (NPM) makes it easy to quickly detect, diagnose,

More information

Professional Integrated SSL-VPN Appliance for Small and Medium-sized businesses

Professional Integrated SSL-VPN Appliance for Small and Medium-sized businesses Professional Integrated Appliance for Small and Medium-sized businesses Benefits Clientless Secure Remote Access Seamless Integration behind the Existing Firewall Infrastructure UTM Security Integration

More information

TROUBLESHOOTING CISCO DATA CENTER UNIFIED COMPUTING (DCUCT)

TROUBLESHOOTING CISCO DATA CENTER UNIFIED COMPUTING (DCUCT) TROUBLESHOOTING CISCO DATA CENTER UNIFIED COMPUTING (DCUCT) Temario This 3-day course is designed to prepare system engineers and implementers with the knowledge and hands-on experience required to troubleshoot

More information

Microsoft Enterprise Project Management 2010 Licensing Guide

Microsoft Enterprise Project Management 2010 Licensing Guide Microsoft Enterprise Project Management 2010 Licensing Guide Microsoft Project 2010 Licensing Microsoft Project 2010 is a family of products that provide a range of functionality depending on organizational

More information

TEST AUTOMATION FRAMEWORK

TEST AUTOMATION FRAMEWORK TEST AUTOMATION FRAMEWORK Twister Topics Quick introduction Use cases High Level Description Benefits Next steps Twister How to get Twister is an open source test automation framework. The code, user guide

More information

Required Ports and Protocols. Communication Direction Protocol and Port Purpose Enterprise Controller Port 443, then Port 11165 Port 8005

Required Ports and Protocols. Communication Direction Protocol and Port Purpose Enterprise Controller Port 443, then Port 11165 Port 8005 Oracle Enterprise Manager Ops Center Ports and Protocols Guide 12c Release 2 (12.2.2.0.0) E51942-04 December 2014 This document contains the latest information on the ports and protocols that Oracle Enterprise

More information

MCSE SYLLABUS. Exam 70-290 : Managing and Maintaining a Microsoft Windows Server 2003:

MCSE SYLLABUS. Exam 70-290 : Managing and Maintaining a Microsoft Windows Server 2003: MCSE SYLLABUS Course Contents : Exam 70-290 : Managing and Maintaining a Microsoft Windows Server 2003: Managing Users, Computers and Groups. Configure access to shared folders. Managing and Maintaining

More information

Designing a Windows Server 2008 Applications Infrastructure

Designing a Windows Server 2008 Applications Infrastructure Designing a Windows Server 2008 Applications Infrastructure Course Number: 6437A Course Length: 3 Days Course Overview This three day course will prepare IT professionals for the role of Enterprise Administrator.

More information

Copyright 2013 Splunk Inc. Introducing Splunk 6

Copyright 2013 Splunk Inc. Introducing Splunk 6 Copyright 2013 Splunk Inc. Introducing Splunk 6 Safe Harbor Statement During the course of this presentation, we may make forward looking statements regarding future events or the expected performance

More information

Monitoring Hybrid Cloud Applications in VMware vcloud Air

Monitoring Hybrid Cloud Applications in VMware vcloud Air Monitoring Hybrid Cloud Applications in ware vcloud Air ware vcenter Hyperic and ware vcenter Operations Manager Installation and Administration Guide for Hybrid Cloud Monitoring TECHNICAL WHITE PAPER

More information

Easy configuration of NETCONF devices

Easy configuration of NETCONF devices Easy configuration of NETCONF devices David Alexa 1 Tomas Cejka 2 FIT, CTU in Prague CESNET, a.l.e. Czech Republic Czech Republic alexadav@fit.cvut.cz cejkat@cesnet.cz Abstract. It is necessary for developers

More information

MEGA Web Application Architecture Overview MEGA 2009 SP4

MEGA Web Application Architecture Overview MEGA 2009 SP4 Revised: September 2, 2010 Created: March 31, 2010 Author: Jérôme Horber CONTENTS Summary This document describes the system requirements and possible deployment architectures for MEGA Web Application.

More information

HP Networking and Aastra

HP Networking and Aastra HP Networking and Aastra Solution whitepaper Table of contents Executive Summary... 2 Introduction... 3 HP Networking and Aastra: A true alliance... 4 Commitment to open standards... 4 Session Initiation

More information

SAN Conceptual and Design Basics

SAN Conceptual and Design Basics TECHNICAL NOTE VMware Infrastructure 3 SAN Conceptual and Design Basics VMware ESX Server can be used in conjunction with a SAN (storage area network), a specialized high speed network that connects computer

More information

Client Overview. Engagement Situation. Key Requirements

Client Overview. Engagement Situation. Key Requirements Client Overview Our client is one of the leading providers of business intelligence systems for customers especially in BFSI space that needs intensive data analysis of huge amounts of data for their decision

More information

CHAPTER 1: INTRODUCTION TO MICROSOFT DYNAMICS SURE STEP

CHAPTER 1: INTRODUCTION TO MICROSOFT DYNAMICS SURE STEP Chapter 1: Introduction to Microsoft Dynamics Sure Step CHAPTER 1: INTRODUCTION TO MICROSOFT DYNAMICS SURE STEP Objectives Introduction The objectives are: Define the purpose of Microsoft Dynamics Sure

More information

Cisco ROSA Video Service Manager (VSM) Version 05.03

Cisco ROSA Video Service Manager (VSM) Version 05.03 Data Sheet Cisco ROSA Video Service Manager (VSM) Version 05.03 The Cisco ROSA Video Service Management (VSM) system provides service providers with a complete, powerful solution for the management of

More information

SolarWinds Network Performance Monitor powerful network fault & availabilty management

SolarWinds Network Performance Monitor powerful network fault & availabilty management SolarWinds Network Performance Monitor powerful network fault & availabilty management Fully Functional for 30 Days SolarWinds Network Performance Monitor (NPM) is powerful and affordable network monitoring

More information

2311A: Advanced Web Application Development using Microsoft ASP.NET Course 2311A Three days Instructor-led

2311A: Advanced Web Application Development using Microsoft ASP.NET Course 2311A Three days Instructor-led 2311A: Advanced Web Application Development using Microsoft ASP.NET Course 2311A Three days Instructor-led Introduction This three-day, instructor-led course provides students with the knowledge and skills

More information

Introduction to the Cloud OS Windows Azure Overview Visual Studio Tooling for Windows Azure Scenarios: Dev/Test Web Mobile Hybrid

Introduction to the Cloud OS Windows Azure Overview Visual Studio Tooling for Windows Azure Scenarios: Dev/Test Web Mobile Hybrid Introduction to the Cloud OS Windows Azure Overview Visual Studio Tooling for Windows Azure Scenarios: Dev/Test Web Mobile Hybrid Development Management Identity Data Virtualization All services

More information

ETERNUS CS High End Unified Data Protection

ETERNUS CS High End Unified Data Protection ETERNUS CS High End Unified Data Protection Optimized Backup and Archiving with ETERNUS CS High End 0 Data Protection Issues addressed by ETERNUS CS HE 60% of data growth p.a. Rising back-up windows Too

More information

MERAKI WHITE PAPER Cloud + Wireless LAN = Easier + Affordable

MERAKI WHITE PAPER Cloud + Wireless LAN = Easier + Affordable MERAKI WHITE PAPER Cloud + Wireless LAN = Easier + Affordable Version 1.0, August 2009 This white paper discusses how a cloud-based architecture makes wireless LAN easier and more affordable for organizations

More information

FlexMaster First Global Wi-Fi Managed Service

FlexMaster First Global Wi-Fi Managed Service data sheet BENEFITS Single platform for Wi-Fi service management Simple to use, install, and deploy Web-based management platform for managing discrete Ruckus Smart Wi-Fi APs or wireless LAN systems Comprehensive

More information

WHITE PAPER Redefining Monitoring for Today s Modern IT Infrastructures

WHITE PAPER Redefining Monitoring for Today s Modern IT Infrastructures WHITE PAPER Redefining Monitoring for Today s Modern IT Infrastructures Modern technologies in Zenoss Service Dynamics v5 enable IT organizations to scale out monitoring and scale back costs, avoid service

More information

Four Reasons Your Technical Team Will Love Acquia Cloud Site Factory

Four Reasons Your Technical Team Will Love Acquia Cloud Site Factory Four Reasons Your Technical Team Will Love Acquia Cloud Site Factory Table of Contents The Journey You ve Accepted.... 3 The Freedom of Open Source and Power of Drupal.... 4 Manage and Deploy Tens, Hundreds,

More information

CARRIOTS TECHNICAL PRESENTATION

CARRIOTS TECHNICAL PRESENTATION CARRIOTS TECHNICAL PRESENTATION Alvaro Everlet, CTO alvaro.everlet@carriots.com @aeverlet Oct 2013 CARRIOTS TECHNICAL PRESENTATION 1. WHAT IS CARRIOTS 2. BUILDING AN IOT PROJECT 3. DEVICES 4. PLATFORM

More information

SAP IT Infrastructure Management. Dirk Smit ALM Engagement Manager SAP Africa dirk.smit@sap.com

SAP IT Infrastructure Management. Dirk Smit ALM Engagement Manager SAP Africa dirk.smit@sap.com SAP IT Infrastructure Management Dirk Smit ALM Engagement Manager SAP Africa dirk.smit@sap.com Challenges in managing heterogeneous IT environments Determine the value that IT contributes to the business

More information

ivms-4500 (Android) Mobile Client Software User Manual (V3.1)

ivms-4500 (Android) Mobile Client Software User Manual (V3.1) ivms-4500 (Android) Mobile Client Software User Manual (V3.1) UD.6L0202D1111A01 Thank you for purchasing our product. This manual applies to ivms-4500 (Android) V3.1 mobile client software; please read

More information

A Coordinated. Enterprise Networks Software Defined. and Application Fluent Programmable Networks

A Coordinated. Enterprise Networks Software Defined. and Application Fluent Programmable Networks A Coordinated Virtual Infrastructure for SDN in Enterprise Networks Software Defined Networking (SDN), OpenFlow and Application Fluent Programmable Networks Strategic White Paper Increasing agility and

More information

SeaClouds Project D6.2 - Case Study test-beds and key features mapping

SeaClouds Project D6.2 - Case Study test-beds and key features mapping SeaClouds Project D6.2 - Case Study test-beds and key features mapping Project Acronym Project Title Call identifier Grant agreement no. 610531 Start Date 1 st October 2013 Ending Date 31 st March 2016

More information

Module 1: Overview. Module 2: AlienVault USM Solution Deployment. Module 3: AlienVault USM Basic Configuration

Module 1: Overview. Module 2: AlienVault USM Solution Deployment. Module 3: AlienVault USM Basic Configuration Module 1: Overview This module provides an overview of the AlienVault Unified Security Management (USM) solution. Upon completing this module, you will meet these objectives: Describe the goal of network

More information

Course Outline. ttttttt

Course Outline. ttttttt 10967 - Fundamentals of a Windows Server Infrastructure General Description Learn the fundamental knowledge and skills that you need to build a Windows Server infrastructure with Windows Server 2012. This

More information

MASHUPS FOR THE INTERNET OF THINGS

MASHUPS FOR THE INTERNET OF THINGS MASHUPS FOR THE INTERNET OF THINGS Matthias Heyde / Fraunhofer FOKUS glue.things a Mashup Platform for wiring the Internet of Things with the Internet of Services 5th International Workshop on the Web

More information

The Purview Solution Integration With Splunk

The Purview Solution Integration With Splunk The Purview Solution Integration With Splunk Integrating Application Management and Business Analytics With Other IT Management Systems A SOLUTION WHITE PAPER WHITE PAPER Introduction Purview Integration

More information

Cisco Wireless Control System (WCS)

Cisco Wireless Control System (WCS) Data Sheet Cisco Wireless Control System (WCS) PRODUCT OVERVIEW Cisco Wireless Control System (WCS) Cisco Wireless Control System (WCS) is the industry s leading platform for wireless LAN planning, configuration,

More information

Sparx Systems Enterprise Architect Cloud-based repository hosting

Sparx Systems Enterprise Architect Cloud-based repository hosting Enterprise Architect is a full life-cycle repository based modelling tool for requirements management, business and systems modelling, collaborating and sharing information and models. Benefits: Cloud-based

More information

Achieve Automated, End-to-End Firmware Management with Cisco UCS Manager

Achieve Automated, End-to-End Firmware Management with Cisco UCS Manager Achieve Automated, End-to-End Firmware Management with Cisco UCS Manager What You Will Learn This document describes the operational benefits and advantages of firmware provisioning with Cisco UCS Manager

More information

enterprise^ IBM WebSphere Application Server v7.0 Security "publishing Secure your WebSphere applications with Java EE and JAAS security standards

enterprise^ IBM WebSphere Application Server v7.0 Security publishing Secure your WebSphere applications with Java EE and JAAS security standards IBM WebSphere Application Server v7.0 Security Secure your WebSphere applications with Java EE and JAAS security standards Omar Siliceo "publishing enterprise^ birmingham - mumbai Preface 1 Chapter 1:

More information

IBM CICS Transaction Gateway for Multiplatforms, Version 7.0

IBM CICS Transaction Gateway for Multiplatforms, Version 7.0 Delivers highly flexible, security-rich and scalable SOA access to CICS applications IBM Multiplatforms, Version 7.0 Highlights Connects WebSphere SOA Introduces real-time monitoring Foundation server

More information

Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid clouds.

Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid clouds. ENTERPRISE MONITORING & LIFECYCLE MANAGEMENT Unify IT Operations Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid

More information

Continuous security audit automation with Spacewalk, Puppet, Mcollective and SCAP

Continuous security audit automation with Spacewalk, Puppet, Mcollective and SCAP Continuous security audit automation with Spacewalk, Puppet, Mcollective and SCAP Vasileios A. Baousis (Ph.D) Network Applications Team Slide 1 Agenda Introduction Background - SCAP - Puppet &Mcollective

More information

Oracle Enterprise Manager Ops Center. Ports and Protocols. Ports and Protocols 12c Release 3 (12.3.0.0.0)

Oracle Enterprise Manager Ops Center. Ports and Protocols. Ports and Protocols 12c Release 3 (12.3.0.0.0) Oracle Enterprise Manager Ops Center Ports and Protocols 12c Release 3 (12.3.0.0.0) E59963-01 June 2015 This document contains the latest information on the ports and protocols that Oracle Enterprise Manager

More information

Lumeta IPsonar. Active Network Discovery, Mapping and Leak Detection for Large Distributed, Highly Complex & Sensitive Enterprise Networks

Lumeta IPsonar. Active Network Discovery, Mapping and Leak Detection for Large Distributed, Highly Complex & Sensitive Enterprise Networks IPsonar provides visibility into every IP asset, host, node, and connection on the network, performing an active probe and mapping everything that's on the network, resulting in a comprehensive view of

More information

Kopano product strategy & roadmap

Kopano product strategy & roadmap Kopano product strategy & roadmap 11 January 2016 INTRODUCING KOPANO For many years Zarafa has provided software solutions for organising the lives of busy professionals. Emailing and advanced calendaring

More information

Module: Sharepoint Administrator

Module: Sharepoint Administrator Module: Sharepoint Administrator Mode: Classroom Duration: 40 hours This course teaches IT Professionals to design and deploy Microsoft SharePoint 2010. Course Outline: Module 1: Designing a Logical Architecture

More information

Digital Advisory Services Professional Service Description Network Assessment

Digital Advisory Services Professional Service Description Network Assessment Digital Advisory Services Professional Service Description Network Assessment 1. Description of Services. 1.1. Network Assessment. Verizon will perform Network Assessment services for the Customer Network,

More information

Gladinet Cloud Enterprise

Gladinet Cloud Enterprise GLADINET, INC Gladinet Cloud Enterprise Multi-Site Deployment Guide Gladinet, Inc. 9/27/2013 This document discusses the technologies behind Gladinet Cloud Enterprise Copyright 2013 Gladinet, Inc. Table

More information

Implementing IPv6 at ARIN Matt Ryanczak

Implementing IPv6 at ARIN Matt Ryanczak Implementing IPv6 at ARIN Matt Ryanczak ARIN began implementing IPv6 in 2003 and finished enabling most systems and services in 2008. Today all new networks and services are designed with IPv6 in mind.

More information

D3.1: Operational SaaS Test lab

D3.1: Operational SaaS Test lab Local content in a Europeana cloud D3.1: Operational SaaS Test lab Authors: Odo Benda, Gerda Koch and Walter Koch AIT Forschungsgesellschaft mbh Version: Final (2.0) LoCloud is funded by the European Commission

More information

Vistara Lifecycle Management

Vistara Lifecycle Management Vistara Lifecycle Management Solution Brief Unify IT Operations Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid

More information

Transaction Monitoring Version 8.1.3 for AIX, Linux, and Windows. Reference IBM

Transaction Monitoring Version 8.1.3 for AIX, Linux, and Windows. Reference IBM Transaction Monitoring Version 8.1.3 for AIX, Linux, and Windows Reference IBM Note Before using this information and the product it supports, read the information in Notices. This edition applies to V8.1.3

More information

Lab Management, Device Provisioning and Test Automation Software

Lab Management, Device Provisioning and Test Automation Software Lab Management, Device Provisioning and Test Automation Software The TestShell software framework helps telecom service providers, data centers, enterprise IT and equipment manufacturers to optimize lab

More information

CCNA DATA CENTER BOOT CAMP: DCICN + DCICT

CCNA DATA CENTER BOOT CAMP: DCICN + DCICT CCNA DATA CENTER BOOT CAMP: DCICN + DCICT COURSE OVERVIEW: In this accelerated course you will be introduced to the three primary technologies that are used in the Cisco data center. You will become familiar

More information

Data Driven Success. Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA)

Data Driven Success. Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA) Data Driven Success Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA) In business, data is everything. Regardless of the products or services you sell or the systems you support,

More information

Open Cloud System. (Integration of Eucalyptus, Hadoop and AppScale into deployment of University Private Cloud)

Open Cloud System. (Integration of Eucalyptus, Hadoop and AppScale into deployment of University Private Cloud) Open Cloud System (Integration of Eucalyptus, Hadoop and into deployment of University Private Cloud) Thinn Thu Naing University of Computer Studies, Yangon 25 th October 2011 Open Cloud System University

More information

#define. What is #define

#define. What is #define #define What is #define #define is CGI s production system for Application Management and Development, offered in the context of software as a service. It is a project management tool, configuration management

More information

Guarding Expert (Android Tablet) Mobile Client Software User Manual (V3.1)

Guarding Expert (Android Tablet) Mobile Client Software User Manual (V3.1) Guarding Expert (Android Tablet) Mobile Client Software User Manual (V3.1) UD.6L0202D1080A01 Thank you for purchasing our product. This manual applies to Guarding Expert (Android Tablet) mobile client

More information

TITANXR Multi-Switch Management Software

TITANXR Multi-Switch Management Software TITANXR Multi-Switch Management Software Centralized management of APCON network monitoring switches Features Centralized APCON system management View status and alerts Configurable Dashboards Monitor

More information

Deployment Topologies

Deployment Topologies , page 1 Multinode Cluster with Unified Nodes, page 2 Clustering Considerations, page 3 Cisco Unified Communications Domain Manager 10.6(x) Redundancy and Disaster Recovery, page 4 Capacity Considerations,

More information

Secure Cloud and Remote Service Connections for AllJoyn Applications

Secure Cloud and Remote Service Connections for AllJoyn Applications Secure Cloud and Remote Service Connections for AllJoyn Applications Art Lancaster CTO, Affinegy Chair, Gateway Agent Working Group 12 November 2014 AllSeen Alliance 1 Agenda 1. Gateway Agent Working Group

More information

Oracle Solaris: Aktueller Stand und Ausblick

Oracle Solaris: Aktueller Stand und Ausblick Oracle Solaris: Aktueller Stand und Ausblick Detlef Drewanz Principal Sales Consultant, EMEA Server Presales The following is intended to outline our general product direction. It

More information

Cloud Security is a First Principle:

Cloud Security is a First Principle: Cloud Security is a First Principle: Elements of Private Cloud Security Table of Contents Why the Security Minded are Drawn to Private Cloud Deployments....2 Security is the Driver Behind Private Clouds...3

More information

Focused Vendor Module Avaya Aura Communication Manager (ACM)

Focused Vendor Module Avaya Aura Communication Manager (ACM) Focused Vendor Module Avaya Aura Communication Manager (ACM) A CTiQ FVM operates like a team of highly skilled engineers. SYSTEM OVERVIEW: HOW THE ACM FVM FITS Focused Vendor Modules (FVMs) THE BRIDGE

More information

Introduction to Mobile Access Gateway Installation

Introduction to Mobile Access Gateway Installation Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure

More information

Software Testing of NoTA DIP Implementation

Software Testing of NoTA DIP Implementation Software Testing of NoTA DIP Implementation Ville Kankainen 2009-10-01 2009-09-23 Flander, Ardites and Symbio Group merged and as a result Symbio was established More on symbio.com Software Testing of

More information

The Learn-Verified Full Stack Web Development Program

The Learn-Verified Full Stack Web Development Program The Learn-Verified Full Stack Web Development Program Overview This online program will prepare you for a career in web development by providing you with the baseline skills and experience necessary to

More information

Certification Report

Certification Report Certification Report HP Network Automation Ultimate Edition 10.10 Issued by: Communications Security Establishment Certification Body Canadian Common Criteria Evaluation and Certification Scheme Government

More information

Functional Requirements for Digital Asset Management Project version 3.0 11/30/2006

Functional Requirements for Digital Asset Management Project version 3.0 11/30/2006 /30/2006 2 3 4 5 6 7 8 9 0 2 3 4 5 6 7 8 9 20 2 22 23 24 25 26 27 28 29 30 3 32 33 34 35 36 37 38 39 = required; 2 = optional; 3 = not required functional requirements Discovery tools available to end-users:

More information

ENTERPRISE CONVERGED NETWORK SOLUTION. Deliver a quality user experience, streamline operations and reduce costs

ENTERPRISE CONVERGED NETWORK SOLUTION. Deliver a quality user experience, streamline operations and reduce costs ENTERPRISE CONVERGED NETWORK SOLUTION Deliver a quality user experience, streamline operations and reduce costs THE NEW CHALLENGES IN DELIVERING A HIGH-QUALITY USER EXPERIENCE Key trends are driving new

More information

Cisco UCS Central Software

Cisco UCS Central Software Data Sheet Cisco UCS Central Software Cisco UCS Manager provides a single point of management for an entire Cisco Unified Computing System (Cisco UCS) domain of up to 160 servers and associated infrastructure.

More information

How To Understand The Power Of The Internet

How To Understand The Power Of The Internet DATA COMMUNICATOIN NETWORKING Instructor: Ouldooz Baghban Karimi Course Book: Computer Networking, A Top-Down Approach, Kurose, Ross Slides: - Course book Slides - Slides from Princeton University COS461

More information

Data Analysis Load Balancer

Data Analysis Load Balancer Data Analysis Load Balancer Design Document: Version: 1.0 Last saved by Chris Small April 12, 2010 Abstract: The project is to design a mechanism to load balance network traffic over multiple different

More information

The Remote Infrastructure Management Platform

The Remote Infrastructure Management Platform services capabilities The Remote Infrastructure Management Platform What is the Remote Infrastructure Management (RIM) Platform? As part of our Global Services Operating Architecture, the RIM platform

More information

Networking. Systems Design and. Development. CRC Press. Taylor & Francis Croup. Boca Raton London New York. CRC Press is an imprint of the

Networking. Systems Design and. Development. CRC Press. Taylor & Francis Croup. Boca Raton London New York. CRC Press is an imprint of the Networking Systems Design and Development Lee Chao CRC Press Taylor & Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup, an Informa business AN AUERBACH BOOK

More information

Enabling the SmartGrid through Cloud Computing

Enabling the SmartGrid through Cloud Computing Enabling the SmartGrid through Cloud Computing April 2012 Creating Value, Delivering Results 2012 eglobaltech Incorporated. Tech, Inc. All rights reserved. 1 Overall Objective To deliver electricity from

More information