USING MOBILE AGENTS TO IMPROVE PERFORMANCE OF NETWORK MANAGEMENT OPERATIONS

Size: px
Start display at page:

Download "USING MOBILE AGENTS TO IMPROVE PERFORMANCE OF NETWORK MANAGEMENT OPERATIONS"

Transcription

1 USING MOBILE AGENTS TO IMPROVE PERFORNCE OF NETWORK NAGEMENT OPERATIONS Iwan Adhicandra, Colin Pattinson, Ebrahim Shaghouei Computer Communications Research Group, School of Computing, Leeds Metropolitan University, Beckett Park, Leeds LS6 3QS, United Kingdom {i.adhicandra; c.pattinson; Abstract - Currently, most network management systems operate SNMP (Simple Network Management Protocol). These protocols use the client-server model, on which the management station acts as a client that provides a user interface to the network manager and interacts with agents, which are servers that manage remote access to the Management Information Base (MIB). In certain circumstances (e.g. at times of network stress), this clientserver interaction generates significant traffic that overloads the management station. A distributed paradigm is a revision way to perform management functions when networks grow significantly. In this sense, mobile agent is an option to distribute the network management. These agents move to the place where data are stored and select information the user wants. They decentralise processing and control, and, as a consequence, reduce the traffic around the management station, and distribute processing load. The purpose of this study is to investigate the effect of using a mobile agent as compared to a static agent in alleviating loading created by network management protocols and to investigate the performance behaviour of network management concepts using simulation. I. INTRODUCTION Network management fundamentally involves monitoring and controlling the devices connected in a network by collecting and analyzing data from the devices [1]. It gives network administrators the flexibility of managing the whole network from a single place. SNMP is often used in centralized network management environments. It is the dominant protocol for network management and supports the operations: Get-Request; Get Next-Request Get-Response, Set-Request and Trap. In SNMP a management application uses the manager protocol to communicate with the managed system, which uses the agent protocol to communicate with the MIB and the manager protocol. Processing of managed data is done at the management station. Network management stations interact with SNMP agents in managed nodes. Each SNMP agent is essentially a daemon process that responds to requests from management stations. Its drawbacks include information bottleneck at the manager, lack of scalability, excessive processing load at manager, heavy usage of network bandwidth by network management actions, management intelligence too centralized. An alternative is distributed network management, in which the centralized management strategy is replaced by interoperable management systems. Distributed management solves the problems with centralized management to some extent. However, it still has some drawbacks like limited scalability and complex coordination mechanisms between management stations. One important functional area of network management is Performance management, which involves gathering statistics about network traffic and schemes to condense and present data. Measuring performance of networks using centralized SNMP based management is very difficult due to reasons like network delays and information bottleneck at the central management station. The latest trend is to deploy mobile agents to manage today s large heterogeneous networks. Mobile agents are special software objects that are autonomous and have the ability to migrate from one node to another node, carrying logic and data, performing actions on behalf of the user. Mobile agent based network management is to equip agents with network management capabilities and allow them to issue requests to managed devices (or nodes) after migrating to these nodes. Mobile agents give the flexibility of analyzing the managed node locally. Instead of querying the managed node for every fixed interval and analyzing the performance from management station, mobile agent can be dispatched to analyze the node locally. The purpose of this study is to investigate the effect of using a mobile agent as compared to a static agent in alleviating loading created by network management protocols and to investigate the performance behaviour of network management concepts using simulation [20]. This paper is organized in the following way. In Section 2, we review literature in mobile agent implementation and performance issues in network management. In section 3, we describe a proposed architecture for mobile agent in network management. In section 4, we explain the performance model for network management using Health Function. Section 5 presents a proposed method in mobile agent implementation using simulation. We conclude the paper in Section 6 with remarks on future work. II. MOBILE AGENTS IMPLEMENTATION IN NETWORK NAGEMENT In past few years, many researchers have investigated mobile agent implementation in network management. One important example is the PMP Project effort [2] wherein mobile code was used for managing the ISBN: PGNet

2 network. Network manager is a suite of simple tools that interact with agents located on nodes connected in a network, as well as other tools used for managing networks. Each of the tools can be used for actual management of networks. Less stress was laid on embedding existing SNMP into a mobile code framework. This results in incompatibility with SNMP based systems. Bieszczad et al. [3] described theoretical views on application of mobile agents for network management. Gavalas et al. [4] presented the application of mobile agents in bulk transfers of network monitoring data, data aggregation and acquiring atomic SNMP table views. They analyzed the usage of mobile agents in network management with regard to the bandwidth utilization. Pinheiro et al, [5] described a conceptual model which collects management related data across a changing set of networked components and periodically computes aggregated statistics using mobile agents. The investigation of the performance of mobile agents in network management is recent. Baldi et al. [6] estimate the tradeoffs of mobile code design concepts in network management applications by developing a quantitative model that provides the bandwidth used by traditional and mobile code design of management functionalities. Bohoris et al. [7] introduce a performance comparison of mobile agents, CORBA, and Java-RMI by using one network element on a ATM network. They use an array of objects which are not real data in order to gain the response time and bandwidth utilization. Gavalas et al. [8] investigate bandwidth utilization for SNMP and mobile agent. The paper provides an experimental implementation, which is presented in terms of bandwidth consumption and response time to gain an aggregation of multiple variables on a LAN of a few nodes. The measurements of bandwidth utilisation of mobile agent and client-server applications is carried out by [9] on an Ethernet LAN of a few nodes. They also present a single case comparison of response time for the mobile agent and the client-server. Kona and Xu [10] provide a performance method to use SNMP and mobile agent and also proposed a framework for mobile agent architecture. They built their experiment using Naplet framework which uses Java programming language. Rubinstein and Duarte [11] simulate management tasks performed by mobile agents and SNMP ones, comparing both approaches, on a topology that consists of a LAN of managed network elements connected to the management station by a bottleneck link. They present quantitavive measurement using NS simulation tool particularly on network management performance using static and mobile agent. III. MOBILE AGENT ARCHITECTURE Mobile agents perform their tasks by moving between different networked computers. A mobile agent can migrate from one machine to another, carrying data about its state that includes information obtained from previous task executions. As the number of visited nodes grows, the mobile agent size also increases, making migration harder. One possible solution to this problem is to visit a fixed number of nodes, return to the agent home or send all data to it (reducing the mobile agent size), and start the task again on the remaining nodes. The initial size of a mobile agent also affects agent performance since the larger the size, the more difficult the migration. This size depends on the task to be carried out and on the language used to implement it. In SNMP, network management does not scale when the size or the complexity of the network increases because of centralized-processing and control. Mobile agents can be used in order to solve this problem and it is important to investigate when they improve the management efficiency To take advantage of mobile agents for network management, we propose a flexible architecture, which forms a layer over conventional SNMP based management. This ensures that the advantages of SNMP are not lost and also serves the purpose of managing legacy SNMP based systems. MS NC SA SA MIB S MS=Management Station NC=Network Component SA= Static Agent = Mobile Agent S= System NC S S Figure 1. Proposed mobile agents architecture for client-server connection. Figure 1 shows the proposed architecture for network management using mobile agents. The manager is given the flexibility of deciding whether to use SNMP or mobile agents. In this approach the station assumes responsibilities of a client. All managed nodes are

3 servers, which have mobile agent environment and respond to SNMP queries from mobile agents when they visit the servers and manipulate data locally. When the client needs access to data on a network connected device, it does not talk directly to the server over the network. Instead, the client actually dispatches a mobile agent to the server s machine. Once on the server s machine, the makes its requests to the server directly. When the entire transaction is complete, the mobile agent returns to the management station with the results. The architecture provides Java-compliant interfaces to network management services. We propose to use Aglets Software Developer Kit (ASDK) [12] as the agent development environment. It provides a modular structure, easy-to-use API for programming of mobile agents and excellent documentation. To interact with the SNMP agent we propose to use AdventNet SNMP[13]. AdventNet SNMP provides a set of Java tools for creating cross platform Java and Webbased SNMP network management applications. This package provides a set of classes, which could be used to facilitate communication between a managed device (a device with an SNMP agent, e.g. a router), and an SNMP manager or management application. Using the mobile agent paradigm can bring some interesting advantages when compared to traditional client/server solutions [14]. It can reduce network traffic; it can provide more scalability; it allows the use of disconnected computing; and it provides more flexibility in the development and maintenance of the applications. IV. ANALYTICAL APPROACH In order to investigate the performance evaluation using mobile agent, we need to do some analytical solutions as following: IV.1. Transmit Model This model could be used to monitor the performance of a set of managed nodes over a particular interval of time. It can use Health Functions, which indicates system state or efficiency of the node and could be viewed as a way to compress management data and evaluate the performance of any element. A performance management application can use ifinoctets and ifoutoctets of the interfaces group in MIB to compute the percentage utilization of an interface over an interval of time. To perform this computation, two different polling intervals are required: one to find total bytes per second at time x and another to find total bytes per second at time y. The following equation computes utilization, U(t) for the polling interval (x-y) seconds [15]: U(t) = [((ifinoctets y -ifinoctets x )+(ifoutoctets y ifoutoctets y ))*8] / (y-x)*ifspeed where, ifspeed is the bandwidth of the interface, inoctets x is the bytes received by the interface at time x, IfOutOctets x is the bytes sent by the interface at time x, (y-x) is the polling interval. By using transmit model we could dispatch to each of the managed nodes and could calculate the utilization for every polling interval over an extended period of time. Here the manipulates the data locally at the managed node. After the time period for which the analysis is required, which is equal to the sum of all the polling intervals, the returns to the management station and the reduced data set could be displayed in a graph. IV.2. Route Model In this model a mobile agent visits the set of nodes to be managed sequentially. The mobile agent is configured with the list of nodes to be visited during its itinerary and also the SNMP statistics to be analyzed. Health function is also used to calculate percentages of input and output errors on an interface. It is a cumulative factor of 8 MIB variables [15]: Percent input errors = ((ifinerrors)/(total packetsreceived))*100 Percent output errors = ((ifouterrors)/(total packets sent))*100 where, total packets received = (ifinucastpkts+ifinbroadcasts+ifinmulticasts) total packets sent = (ifoutucastpkts+ifoutbroadcasts+ifoutmulticasts) If the interface error rate is more than 1%, then there is a problem with the interface of the machine. If the error rate is less than 1% and network shows poor performance, then it could be deduced that there is a problem with the media. At each managed node interacts with the SNMP Agent, calculates percentage input and output errors locally on the managed node. After visiting all the nodes it returns back to the manager. V. SIMULATION APPROACH The behaviour of mobile agents in carrying out network management tasks is assessed by simulation studies. The OPNET Modeler is used [16]. This discrete-event simulator provides protocols and mechanisms to simulate networks with node and link abstractions. We propose to use multi tier application (MTA) topologies, which are similar in shape to client server application. The scenarios consist of one client with different number of servers or managed nodes. These are chosen to show the effect of increased managed node for network performance. A fair evaluation can only be achieved with careful selection of simulation parameters. Table 1 summarises important simulation parameters used in these experiments. These parameters are those required by OPNET package to determine an application level configuration. These are request information, response

4 information and session information. These are chosen in order to see effect of adopting mobile agent in the network on the overall network performance. A Response is taken to be the actions required to complete a full task. It starts from the time when the manager sends the request to the mobile agent and end when it receives the response back. A Request is the information sent from the manager to the mobile agent, and a Response is that from the mobile agent to the manager. Table 1. Parameters used in simulation Grouping Parameters Value Request Generation Rate PDF Exponential Information Packet Size (Kbytes) 5 Packet Size PDF Poisson Response Packet Size (Kbytes) Information Packet Size PDF Poisson Session Background Utilization (%) 25 Information Time (sec) 100 The simulation model assumes that links and nodes have no load, and links are error-free. User Datagram Protocol (UDP) is used in all simulations. The initial size of the mobile agent is chosen as 5 kbytes [17][18]. Each request or response of a variable is kbytes long. Corresponding with research conducted by [17] and [18], we choose request generation delay and response generation delay values, of 0.1 sec and 0.5 sec respectively. The request generation rates PDF are chosen to be exponential, whereas request packet size PDF and response packet size PDF are chosen to be exponential [19]. SNMP sends requests to all elements to be managed (one after receiving the response from the other); the mobile agent goes to an element to be managed, gathers the variable, and visits all other elements. After finishing, the mobile agent returns to the management station. Initial result on response time received, network operations using static agent show better result on the condition of small number of nodes (in this case 4 nodes). In terms of traffic at client side and server side, initial result shows that there is a reduction of traffic received when the number of nodes were increased and mobile agent performance shows better result. In terms of load on the managed node, there is a reduction of load received when the number of nodes were increased and again mobile agents performance shows better results than static agent. VI. CONCLUSIONS AND FUTURE WORK This paper has presented a method to measure the performance of network management operations using client server and mobile agent approach. The initial results show that mobile agent perform better when the number of managed nodes increase significantly. However, this initial result still needs to be improved to give a better result particularly on response time using mobile agents and network operations using large number of managed nodes. This research work is currently in progress and we plan to extend the model with more extensions for client and server model, to investigate the use of process model in each nodes, investigation of other environments such as wireless network, and to conduct more some experimental work in order to find an accurate representative model. REFERENCES Figure 2. Initial results using simulation [1] William Stallings. SNMP, SNMPv2 and RMON: Practical Network Management. Addison-Wesley [2] Perpetuum Mobile Procura (PMP) Project, [3] Andrzej Bieszczad, Bernard Pagurek and Tony White. Mobile Agents for Network Management. IEEE Communications survey-98. [4] D. Gavalas, D. Greenwood, M. Ghanbari and M.O. Mahogany. Advance network monitoring applications based on mobile intelligent agent technology. [5] Robert Pinheiro, Alex Poylisher,Hamish Caldwell. Mobile Agents for Aggregation of Network Management Data. Telecordia Technologies.

5 [6] Baldi, M. and G.P. Picco, Evaluating the Tradeoffs of Mobile Code Design Paradigms in Network Management Applications, 20th International Conference on Software Engineering (ICSE 98), Kyoto, Japan, Apr. 1998, pp [7] Bohoris, C. Pavlou, G. and H. Cruickshank, Using Mobile Agents for Network Performance Management, IEEE/IFIP Network Operations and Management Symposium, Honolulu, Hawaii, [8] Gavalas, D., Greenwood, D., Ghanbari, M., and M. O Mahony, Using Mobile Agents for Distributed Network Performance Management, the 3 rd International Workshop on Intelligent Agents for Telecommunication Applications (IATA 99), Stockholm, Sweden, Aug [9] Sahai, A and C. Morin, Towards Distributed and Dynamic Network Management, IEEE/IFIP Network Operations and Management Symposium (NOMS 98), New Orleans, USA, Feb [10] Kona, M.K., and C.Z. Xu, A Framework for Network Management using Mobile Agents, in proceeding of ICEC 2001 [11] Rubinstein, M and O. C. M. B. Duarte (1999), Evaluating Tradeoffs of Mobile Agents in Network Management, Networking and Information Systems Journal 2, pp Feb [12] Aglets Software Development Kit (ASDK), [13] AdventNet, [14] General Magic. Odyssey web page. [15] Allan Lienwand, K. Fang Conroy. Network Management: A Practical Perspective. Addison Wesley [16] OPNET Documentation, OPNET Technologies, Inc. [Internet] [17] Rubinstein, M, O. C. M. B. Duarte, and G. Pujolle, Evaluating the Network Performance Management Based on Mobile Agents, in proceeding of 2 nd International Workshop of Mobile Agents for Telecommunication Applications (TA), Paris, France, September [18] Puliafito, A., and O. Tomarchio, Using Mobile Agents to Implement Flexible Network Management Strategies, Computer Communications, 23, 8, pp , April [19] Pattinson, C., A Study of the Behaviour of the Simple Network Management Protocol, in proceeding of 12 th International Workshop on Distributed Systems: Operations and Management (DSOM), Nancy, France, October, 2001 [20] Adhicandra, I., and C. Pattinson, Performance Evaluation of Network Management Operations, in proceeding of 3 rd Annual Symposium of Postgraduate Networking Conference (PGNET), Liverpool, UK, pp , June 2002 [21] Indrawan, M., S. Krishnaswamy, and T Ranjan, Using Mobile Agents to Support Unreliable Database Retrieval Operations, in proceeding of the 17 th International Conference on Advanced Information Networking and Applications (AINA 03)

How To Manage A Network With Mobile Agents

How To Manage A Network With Mobile Agents A Framework for Network Management using Mobile Agents Manoj Kumar Kona and Cheng-Zhong Xu Department of Electrical and Computer Engineering Wayne State University, Detroit, MI 48202 {manoj, czxu}@ernie.eng.wayne.edu

More information

A STUDY OF THE BEHAVIOUR OF THE MOBILE AGENT IN THE NETWORK MANAGEMENT SYSTEMS

A STUDY OF THE BEHAVIOUR OF THE MOBILE AGENT IN THE NETWORK MANAGEMENT SYSTEMS A STUDY OF THE BEHAVIOUR OF THE MOBILE AGENT IN THE NETWORK MANAGEMENT SYSTEMS Tarag Fahad, Sufian Yousef & Caroline Strange School of Design and Communication Systems, Anglia Polytechnic University Victoria

More information

MS MS - Management Station MNE - Managed Network Element. Link l LAN MNE MNE...

MS MS - Management Station MNE - Managed Network Element. Link l LAN MNE MNE... Analyzing Mobile Agent Scalability in Network Management Marcelo Gon alves Rubinstein and Otto Carlos Muniz Bandeira Duarte {rubi, otto}@gta.ufrj.br Grupo de Teleinform tica e Automa o - GTA Universidade

More information

A Study of the Behaviour of the Simple Network Management Protocol

A Study of the Behaviour of the Simple Network Management Protocol A Study of the Behaviour of the Simple Network Management Protocol Colin Pattinson School of Computing, Leeds Metropolitan University, Beckett Park, Leeds LS6 3QS UK E-Mail : c.pattinson@lmu.ac.uk The

More information

Role of Agents in Distributed Network Management: A Review

Role of Agents in Distributed Network Management: A Review Abstract Role of Agents in Distributed Networ Management: A Review Atul Mishra, A.K.Sharma Department of Comp. Engg. YMCA University of Science and Technology, Faridabad, India mish.atul@gmail.com, ashoale2@rediffmail.com

More information

Effective Network Monitoring Using Mobile Agents

Effective Network Monitoring Using Mobile Agents Effective Network Monitoring Using Mobile Agents Vipan Arora 1, Harpreet Kaur Bajaj 2 1 Government Polytechnic College for Girls, Jalandhar, 2 DAVIET,Kabir Nagar, Jalandhar Abstract Fast growth of computer

More information

AN INTELLIGENT MOBILE-AGENT BASED SCALABLE NETWORK MANAGEMENT ARCHITECTURE FOR LARGE-SCALE ENTERPRISE SYSTEM

AN INTELLIGENT MOBILE-AGENT BASED SCALABLE NETWORK MANAGEMENT ARCHITECTURE FOR LARGE-SCALE ENTERPRISE SYSTEM AN INTELLIGENT MOBILE- BASED SCALABLE NETWORK MANAGEMENT ARCHITECTURE FOR LARGE-SCALE ENTERPRISE SYSTEM A.K. Sharma 1, Atul Mishra 2, Vijay Singh 3 1 Department of Computer Engineering, YMCA University

More information

ADMINISTRATION AND CONFIGURATION OF HETEROGENEOUS NETWORKS USING AGLETS

ADMINISTRATION AND CONFIGURATION OF HETEROGENEOUS NETWORKS USING AGLETS ANNALS OF THE FACULTY OF ENGINEERING HUNEDOARA 2006, Tome IV, Fascicole 1, (ISSN 1584 2665) FACULTY OF ENGINEERING HUNEDOARA, 5, REVOLUTIEI, 331128, HUNEDOARA ADMINISTRATION AND CONFIGURATION OF HETEROGENEOUS

More information

Distributed Network Monitoring using Mobile Agents Paradigm

Distributed Network Monitoring using Mobile Agents Paradigm Distributed Network Monitoring using Mobile Agents Paradigm Farhad Kamangar, David Levine, Gergely V. Záruba, and Navakiran Chitturi Department of Computer Science and Engineering The University of Texas

More information

An Intelligent Approach for Integrity of Heterogeneous and Distributed Databases Systems based on Mobile Agents

An Intelligent Approach for Integrity of Heterogeneous and Distributed Databases Systems based on Mobile Agents An Intelligent Approach for Integrity of Heterogeneous and Distributed Databases Systems based on Mobile Agents M. Anber and O. Badawy Department of Computer Engineering, Arab Academy for Science and Technology

More information

University of Portsmouth PORTSMOUTH Hants UNITED KINGDOM PO1 2UP

University of Portsmouth PORTSMOUTH Hants UNITED KINGDOM PO1 2UP University of Portsmouth PORTSMOUTH Hants UNITED KINGDOM PO1 2UP This Conference or Workshop Item Adda, Mo, Kasassbeh, M and Peart, Amanda (2005) A survey of network fault management. In: Telecommunications

More information

An Active Packet can be classified as

An Active Packet can be classified as Mobile Agents for Active Network Management By Rumeel Kazi and Patricia Morreale Stevens Institute of Technology Contact: rkazi,pat@ati.stevens-tech.edu Abstract-Traditionally, network management systems

More information

Framework on Hybrid Network Management System Using a Secure Mobile Agent Protocol

Framework on Hybrid Network Management System Using a Secure Mobile Agent Protocol Issue s in Informing Science and Information Technology Volume 6, 2009 Framework on Hybrid Network Management System Using a Secure Mobile Agent Protocol Olutayo B. Ajayi, Adebayo. D. Akinde, and A. T.

More information

Simple Network Management Protocol

Simple Network Management Protocol CHAPTER 4 This chapter gives an overview of (SNMP). It contains the following sections: Overview, page 4-1 SNMP Versioning, page 4-2 SNMP and Cisco Unified CM Basics, page 4-3 SNMP Basic Commands, page

More information

R07. IV B.Tech. II Semester Regular Examinations, April, 2011. NETWORK MANAGEMENT SYSTEMS (Information Technology)

R07. IV B.Tech. II Semester Regular Examinations, April, 2011. NETWORK MANAGEMENT SYSTEMS (Information Technology) Set No. 1 1. a) Discus about network management goals and functions in detail. b) Explain in detail about current status and future of network management. 2. a) Explain the SNMP network management architecture.

More information

Development of Monitoring Tools for Measuring Network Performances: A Passive Approach

Development of Monitoring Tools for Measuring Network Performances: A Passive Approach IJCST Vo l. 6, Is s u e 4, Oc t - De c 2015 ISSN : 0976-8491 (Online) ISSN : 2229-4333 (Print) Development of Monitoring Tools for Measuring Network Performances: A Passive Approach 1 Abdullah Al Mamun,

More information

Only a few years ago, most networks

Only a few years ago, most networks By Timon C. Du, Eldon Y. Li, and An-Pin Chang s IN DISTRIBUTED NETWORK MANAGEMENT By helping to disperse centralized network management tasks to subnet hosts, mobile agent technology helps conserve network

More information

Building Reusable Mobile Agents for Network Management

Building Reusable Mobile Agents for Network Management IEEE TRANSACTIONS SYSTEMS, MAN, AND CYBERNETICS PART C: APPLICATION AND REVIEWS, VOL. 33, NO. 3, AUGUST 2003 350 Building Reusable Mobile Agents for Network Management Ichiro Satoh Member, IEEE, Abstract

More information

Software Agent Constrained Mobility for Network Performance Monitoring

Software Agent Constrained Mobility for Network Performance Monitoring Software Agent Constrained Mobility for Network Performance Monitoring C. Bohoris, A. Liotta, G. Pavlou Center for Communication Systems Research School of Electronic Engineering and Information Technology

More information

An Infrastructure for Distributed and Dynamic Network Management based on Mobile Agent Technology

An Infrastructure for Distributed and Dynamic Network Management based on Mobile Agent Technology An Infrastructure for Distributed and Dynamic Network Management based on Mobile Agent Technology Damianos Gavalas, Dominic Greenwood *, Mohammed Ghanbari, Mike O Mahony Communication Networks Research

More information

Secure Network Monitoring System using Mobile Agent

Secure Network Monitoring System using Mobile Agent 1 Secure Network Monitoring System using Mobile Agent G. M. Gaikwad 1, A. M. Kanthe 2, M. S. Chaudhari 3 1,2,3 Department of Computer Engg. Sinhgad Institute of Technology, Lonavala (India) 1 gmgaikwad@gmail.com

More information

A Satellite Network Management Architecture based on Mobile Agents and SNMP

A Satellite Network Management Architecture based on Mobile Agents and SNMP 2012 4th International Conference on Computer Research and Development IPCSIT vol.39 (2012) (2012) IACSIT Press, Singapore A Satellite Network Management Architecture based on Mobile Agents and SNMP Jianli

More information

Top-Down Network Design

Top-Down Network Design Top-Down Network Design Chapter Nine Developing Network Management Strategies Copyright 2010 Cisco Press & Priscilla Oppenheimer 29 Network Management Design A good design can help an organization achieve

More information

SNMP Network Management Concepts

SNMP Network Management Concepts SNMP Network Management Concepts Chu-Sing Yang Department of Electrical Engineering National Cheng Kung University Outline Background Basic Concepts Summary The Origins of TCP/IP Starts at 1969, and founded

More information

A Network Management Framework for Emerging Telecommunications Network. asamba@kent.edu

A Network Management Framework for Emerging Telecommunications Network. asamba@kent.edu Symposium on Modeling and Simulation Tools for Emerging Telecommunication Networks: Needs, Trends, Challenges, Solutions Munich, Germany, Sept. 8 9, 2005 A Network Management Framework for Emerging Telecommunications

More information

A NOVEL RESOURCE EFFICIENT DMMS APPROACH

A NOVEL RESOURCE EFFICIENT DMMS APPROACH A NOVEL RESOURCE EFFICIENT DMMS APPROACH FOR NETWORK MONITORING AND CONTROLLING FUNCTIONS Golam R. Khan 1, Sharmistha Khan 2, Dhadesugoor R. Vaman 3, and Suxia Cui 4 Department of Electrical and Computer

More information

of moving the data to the location of the management application code, as in clientserver

of moving the data to the location of the management application code, as in clientserver Unifying WBEM and Mobile Agents Approaches for Systems Management Marco Antonio C. Simões 1,2, André Luis de M. Santos 1 1 Centro de Informática Universidade Federal de Pernambuco P.O. Box 7851, ZIP: 50732-970

More information

Active Management Services

Active Management Services Active Management Services White Paper 2.0 for Ricoh Customers Prepared by Professional Services department of Ricoh International B.V. Monday, 14 January 2013 TABLE OF CONTENT 1. Introduction... 4 2.

More information

Heterogeneous Tools for Heterogeneous Network Management with WBEM

Heterogeneous Tools for Heterogeneous Network Management with WBEM Heterogeneous Tools for Heterogeneous Network Management with WBEM Kenneth Carey & Fergus O Reilly Adaptive Wireless Systems Group Department of Electronic Engineering Cork Institute of Technology, Cork,

More information

Evaluation of Constrained Mobility for Programmability in Network Management

Evaluation of Constrained Mobility for Programmability in Network Management Evaluation of Constrained Mobility for Programmability in Network Management C. Bohoris, A. Liotta, G. Pavlou Center for Communication Systems Research School of Electronic Engineering and Information

More information

A Framework for End-to-End Proactive Network Management

A Framework for End-to-End Proactive Network Management A Framework for End-to-End Proactive Network Management S. Hariri, Y. Kim, P. Varshney, Department of Electrical Engineering and Computer Science Syracuse University, Syracuse, NY 13244 {hariri, yhkim,varshey}@cat.syr.edu

More information

QoSpy an approach for QoS monitoring in DiffServ Networks.

QoSpy an approach for QoS monitoring in DiffServ Networks. QoSpy an approach for QoS monitoring in DiffServ Networks. Ulrich Hofmann Alessandro Anzaloni Ricardo de Farias Santos. anzaloni@ele.ita.br Instituto Tecnológico de Aeronaútica São José dos Campos-SP-Brazil

More information

Network Management Traffic Optimization

Network Management Traffic Optimization Appeared in the Proc. of 14th National Conf. on Communications, NCC-2008, IIT Bombay, 1-3 Feb 2008. Network Management Traffic Optimization C. Jagadish 1, S. Thanga prakash 1 and Timothy A. Gonsalves 2

More information

TUTORIAL SNMP: STATUS AND APPLICATION FOR LAN/MAN MANAGEMENT. Aiko Pras pras@cs.utwente.nl

TUTORIAL SNMP: STATUS AND APPLICATION FOR LAN/MAN MANAGEMENT. Aiko Pras pras@cs.utwente.nl TUTORIAL SNMP: STATUS AND APPLICATION FOR LAN/MAN MANAGEMENT 9 July 1996 Aiko Pras pras@cs.utwente.nl http://wwwtios.cs.utwente.nl/~pras http://wwwtios.cs.utwente.nl/ http://wwwsnmp.cs.utwente.nl/ Copyright

More information

A Novel Technique for SNMP Bandwidth Reduction: Simulation and Evaluation

A Novel Technique for SNMP Bandwidth Reduction: Simulation and Evaluation 208 A Novel Technique for SNMP Bandwidth Reduction: Simulation and Evaluation O. Said Computer Science Department, Faculty of Computers and Information Systems, Taif University, KSA. Abstract One of the

More information

Quantifying the Performance Degradation of IPv6 for TCP in Windows and Linux Networking

Quantifying the Performance Degradation of IPv6 for TCP in Windows and Linux Networking Quantifying the Performance Degradation of IPv6 for TCP in Windows and Linux Networking Burjiz Soorty School of Computing and Mathematical Sciences Auckland University of Technology Auckland, New Zealand

More information

Advanced Network Monitoring Applications Based on Mobile/Intelligent Agent Technology

Advanced Network Monitoring Applications Based on Mobile/Intelligent Agent Technology Advanced Network Monitoring Applications Based on Mobile/Intelligent Agent Technology Damianos Gavalas, Dominic Greenwood *, Mohammed Ghanbari, Mike O Mahony Communication Networks Research Group, Electronic

More information

Network performance and capacity planning: Techniques for an e-business world

Network performance and capacity planning: Techniques for an e-business world IBM Global Services Network performance and capacity planning: Techniques for an e-business world e-business is about transforming key business processes with Internet technologies. In an e-business world,

More information

Towards Autonomic Network Management for Mobile IPv4 Based Wireless Networks*

Towards Autonomic Network Management for Mobile IPv4 Based Wireless Networks* Towards Autonomic Network Management for Mobile IPv4 Based Wireless Networks* Dong-Hee Kwon, Woo-Jae Kim, Young-Joo Suh, and James W. Hong Departments of Computer Science and Engineering Pohang University

More information

52-20-16 Using RMON to Manage Remote Networks Gilbert Held

52-20-16 Using RMON to Manage Remote Networks Gilbert Held 52-20-16 Using RMON to Manage Remote Networks Gilbert Held Payoff By standardizing the management information base (MIB) for Ethernet and Token Ring LANs, a network administrator can use the management

More information

Mobile Software Agents: an Overview

Mobile Software Agents: an Overview Mobile Software Agents: an Overview Authors : From: Vu Anh Pham and Ahmed Karmouch University of Ottawa, Ontario Presented by: Luba Sakharuk Agenda for the Overview of Mobile Agents Abstract The Mobile

More information

A Design and Implementation of Network Traffic Monitoring System for PC-room Management

A Design and Implementation of Network Traffic Monitoring System for PC-room Management A Design and Implementation of Network Traffic Monitoring System for PC-room Management Yonghak Ahn, Oksam Chae Dept. of Computer Engineering, Kyunghee University, Sochen-ri, Giheung-eup, Yongin-si, Gyeonggi-do

More information

A Web-based monitor and management system architecture for enterprise virtual private network

A Web-based monitor and management system architecture for enterprise virtual private network Computers and Electrical Engineering 31 (2005) 503 524 www.elsevier.com/locate/compeleceng A Web-based monitor and management system architecture for enterprise virtual private network Ruey-Shun Chen *,

More information

Monitoring Network QoS in a Dynamic Real-Time System 1

Monitoring Network QoS in a Dynamic Real-Time System 1 Monitoring Network QoS in a Dynamic Real-Time System Hong Chen, Brett Tjaden, Lonnie Welch, Carl Bruggeman, Lu Tong, Barbara Pfarr School of Electrical Engineering and Computer Science Ohio University,

More information

Performance Modeling and Analysis of a Database Server with Write-Heavy Workload

Performance Modeling and Analysis of a Database Server with Write-Heavy Workload Performance Modeling and Analysis of a Database Server with Write-Heavy Workload Manfred Dellkrantz, Maria Kihl 2, and Anders Robertsson Department of Automatic Control, Lund University 2 Department of

More information

Challenges and Approaches in Providing QoS Monitoring

Challenges and Approaches in Providing QoS Monitoring Challenges and Approaches in Providing QoS Monitoring Yuming Jiang, Chen-Khong Tham, Chi-Chung Ko Department of Electrical Engineering National University of Singapore 10 Kent Ridge Crescent, Singapore

More information

Communications Management. 3ICT12 (with thanks to Prof. George Pavlou, University of Surrey)

Communications Management. 3ICT12 (with thanks to Prof. George Pavlou, University of Surrey) Communications Management 3ICT12 (with thanks to Prof. George Pavlou, University of Surrey) 1 Communications Management Network Management Overview What is Network Management? Manager Agent Model OSI Management:

More information

SUNYIT. Reaction Paper 2. Measuring the performance of VoIP over Wireless LAN

SUNYIT. Reaction Paper 2. Measuring the performance of VoIP over Wireless LAN SUNYIT Reaction Paper 2 Measuring the performance of VoIP over Wireless LAN SUBMITTED BY : SANJEEVAKUMAR 10/3/2013 Summary of the Paper The paper s main goal is to compare performance of VoIP in both LAN

More information

A Web-Based Real-Time Traffic Monitoring Scheme Using CORBA

A Web-Based Real-Time Traffic Monitoring Scheme Using CORBA A Web-Based Real-Time Traffic Monitoring Scheme Using CORBA Yuming Jiang, Chen-Khong Tham, Chi-Chung Ko Department of Electrical Engineering, National University of Singapore, 10 Kent Ridge Crescent, Singapore

More information

Instructions for Access to Summary Traffic Data by GÉANT Partners and other Organisations

Instructions for Access to Summary Traffic Data by GÉANT Partners and other Organisations Contract Number: IST-2000-26417 Project Title: Deliverable D8 : Instructions for Access to Summary Traffic Data by GÉANT Partners and other Organisations Contractual Date: 31 May 2002 Actual Date: 14 August

More information

The Analysis and Simulation of VoIP

The Analysis and Simulation of VoIP ENSC 427 Communication Networks Spring 2013 Final Project The Analysis and Simulation of VoIP http://www.sfu.ca/~cjw11/427project.html Group #3 Demet Dilekci ddilekci@sfu.ca Conrad Wang cw11@sfu.ca Jiang

More information

(Refer Slide Time: 1:17-1:40 min)

(Refer Slide Time: 1:17-1:40 min) Computer Networks Prof. S. Ghosh Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture # 37 Network management Good day, so today we will talk about network management.

More information

IU-ATC Network Security and Resilience Monitoring (Theme 4)

IU-ATC Network Security and Resilience Monitoring (Theme 4) IU-ATC Network Security and Resilience Monitoring (Theme 4) Policy-driven Resilience Simulator Alberto Schaeffer-Filho, Paul Smith and Andreas Mauthe Lancaster University India-UK Centre of Excellence

More information

The Advantages of Using Mobile Agents in Software for Telecommunications

The Advantages of Using Mobile Agents in Software for Telecommunications The Advantages of Using Mobile Agents in Software for Telecommunications Luis Moura Silva Leonor Almeida University of Coimbra SIEMENS S.A. Polo II, Dep. Eng. Informatica Rua Irmãos Siemens Nº 1 3030 Coimbra,

More information

Simple Network Management Protocol (SNMP) Primer

Simple Network Management Protocol (SNMP) Primer Xerox Multifunction Devices July 22, 2003 for the user Simple Network Management Protocol (SNMP) Primer Purpose This document introduces the history, purpose, basic functionality and common uses of SNMP

More information

A Network Management Framework Using Mobile Agents

A Network Management Framework Using Mobile Agents Journal of Computer Science 2 (8): 646-659, 2006 ISSN 1549-3636 2005 Science Publications A Network Management Framework Using Mobile Agents Jonathan Lefebvre, Steven Chamberland and Samuel Pierre Department

More information

NLP Network Management Model

NLP Network Management Model Performance Evaluation of Mobile Technology for the Configuration and Auditing of SLSs in Enabled IP Networks Theodore Kotsilieris 1, Stelios Kalogeropoulos 1, George Karetsos 1, Vassilis Loumos 1 and

More information

Opnet Based simulation for route redistribution in EIGRP, BGP and OSPF network protocols

Opnet Based simulation for route redistribution in EIGRP, BGP and OSPF network protocols IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 1, Ver. IV (Jan. 2014), PP 47-52 Opnet Based simulation for route redistribution

More information

Fuzzy Active Queue Management for Assured Forwarding Traffic in Differentiated Services Network

Fuzzy Active Queue Management for Assured Forwarding Traffic in Differentiated Services Network Fuzzy Active Management for Assured Forwarding Traffic in Differentiated Services Network E.S. Ng, K.K. Phang, T.C. Ling, L.Y. Por Department of Computer Systems & Technology Faculty of Computer Science

More information

Constructing End-to-End Traffic Flows for Managing Differentiated Services Networks

Constructing End-to-End Traffic Flows for Managing Differentiated Services Networks Constructing End-to-End Traffic Flows for Managing Differentiated Services Networks Jae-Young Kim 1, James Won-Ki Hong 1, Sook-Hyun Ryu 1, and Tae-Sang Choi 2 1 Department of Computer Science and Engineering

More information

SiteCelerate white paper

SiteCelerate white paper SiteCelerate white paper Arahe Solutions SITECELERATE OVERVIEW As enterprises increases their investment in Web applications, Portal and websites and as usage of these applications increase, performance

More information

A Study of Network Security Systems

A Study of Network Security Systems A Study of Network Security Systems Ramy K. Khalil, Fayez W. Zaki, Mohamed M. Ashour, Mohamed A. Mohamed Department of Communication and Electronics Mansoura University El Gomhorya Street, Mansora,Dakahlya

More information

Distributed applications monitoring at system and network level

Distributed applications monitoring at system and network level Distributed applications monitoring at system and network level Monarc Collaboration 1 Abstract Most of the distributed applications are presently based on architectural models that don t involve real-time

More information

Network Monitoring. Chu-Sing Yang. Department of Electrical Engineering National Cheng Kung University

Network Monitoring. Chu-Sing Yang. Department of Electrical Engineering National Cheng Kung University Network Monitoring Chu-Sing Yang Department of Electrical Engineering National Cheng Kung University Outline Introduction Network monitoring architecture Performance monitoring Fault monitoring Accounting

More information

Lecture 12: Network Management Architecture

Lecture 12: Network Management Architecture Lecture 12: Network Management Architecture Prof. Shervin Shirmohammadi SITE, University of Ottawa Prof. Shervin Shirmohammadi CEG 4185 12-1 Defining Network Management Contains multiple layers: Business

More information

Simulation of an SNMP Agent: Operations, Analysis and Results

Simulation of an SNMP Agent: Operations, Analysis and Results International Journal of Electronics and Computer Science Engineering 1919 Available Online at www.ijecse.org ISSN- 2277-1956 Simulation of an SNMP Agent: Operations, Analysis and Results Pradeep Kumar

More information

PERFORMANCE ANALYSIS OF VOIP TRAFFIC OVER INTEGRATING WIRELESS LAN AND WAN USING DIFFERENT CODECS

PERFORMANCE ANALYSIS OF VOIP TRAFFIC OVER INTEGRATING WIRELESS LAN AND WAN USING DIFFERENT CODECS PERFORMANCE ANALYSIS OF VOIP TRAFFIC OVER INTEGRATING WIRELESS LAN AND WAN USING DIFFERENT CODECS Ali M. Alsahlany 1 1 Department of Communication Engineering, Al-Najaf Technical College, Foundation of

More information

LOAD BALANCING AND EFFICIENT CLUSTERING FOR IMPROVING NETWORK PERFORMANCE IN AD-HOC NETWORKS

LOAD BALANCING AND EFFICIENT CLUSTERING FOR IMPROVING NETWORK PERFORMANCE IN AD-HOC NETWORKS LOAD BALANCING AND EFFICIENT CLUSTERING FOR IMPROVING NETWORK PERFORMANCE IN AD-HOC NETWORKS Saranya.S 1, Menakambal.S 2 1 M.E., Embedded System Technologies, Nandha Engineering College (Autonomous), (India)

More information

SNMP Basics BUPT/QMUL 2015-05-12

SNMP Basics BUPT/QMUL 2015-05-12 SNMP Basics BUPT/QMUL 2015-05-12 Agenda Brief introduction to Network Management Brief introduction to SNMP SNMP Network Management Framework RMON New trends of network management Summary 2 Brief Introduction

More information

Restorable Logical Topology using Cross-Layer Optimization

Restorable Logical Topology using Cross-Layer Optimization פרויקטים בתקשורת מחשבים - 236340 - סמסטר אביב 2016 Restorable Logical Topology using Cross-Layer Optimization Abstract: Today s communication networks consist of routers and optical switches in a logical

More information

Configuring SNMP. 2012 Cisco and/or its affiliates. All rights reserved. 1

Configuring SNMP. 2012 Cisco and/or its affiliates. All rights reserved. 1 Configuring SNMP 2012 Cisco and/or its affiliates. All rights reserved. 1 The Simple Network Management Protocol (SNMP) is part of TCP/IP as defined by the IETF. It is used by network management systems

More information

Performance Analysis of IPv4 v/s IPv6 in Virtual Environment Using UBUNTU

Performance Analysis of IPv4 v/s IPv6 in Virtual Environment Using UBUNTU Performance Analysis of IPv4 v/s IPv6 in Virtual Environment Using UBUNTU Savita Shiwani Computer Science,Gyan Vihar University, Rajasthan, India G.N. Purohit AIM & ACT, Banasthali University, Banasthali,

More information

IP Traffic Engineering over OMP technique

IP Traffic Engineering over OMP technique IP Traffic Engineering over OMP technique 1 Károly Farkas, 1 Zoltán Balogh, 2 Henrik Villför 1 High Speed Networks Laboratory Department of Telecommunications and Telematics Technical University of Budapest,

More information

A Brief. Introduction. of MG-SOFT s SNMP Network Management Products. Document Version 1.3, published in June, 2008

A Brief. Introduction. of MG-SOFT s SNMP Network Management Products. Document Version 1.3, published in June, 2008 A Brief Introduction of MG-SOFT s SNMP Network Management Products Document Version 1.3, published in June, 2008 MG-SOFT s SNMP Products Overview SNMP Management Products MIB Browser Pro. for Windows and

More information

Lab 1: Evaluating Internet Connection Choices for a Small Home PC Network

Lab 1: Evaluating Internet Connection Choices for a Small Home PC Network Lab 1: Evaluating Internet Connection Choices for a Small Home PC Network Objective This lab teaches the basics of using OPNET IT Guru. We investigate application performance and capacity planning, by

More information

PROACTIVE NETWORK MANAGEMENT BASED ON MOBILE AGENTS AND FUZZY LOGIC

PROACTIVE NETWORK MANAGEMENT BASED ON MOBILE AGENTS AND FUZZY LOGIC PROACTIVE NETWORK MANAGEMENT BASED ON MOBILE AGENTS AND FUZZY LOGIC ABSTRACT Arnoldo Nunes da Silva 1 E-mail: ans@cin.ufpe.br Geber Lisboa Ramalho E-mail: glr@cin.ufpe.br Networks with complex topology

More information

Introduction to Network Management

Introduction to Network Management Introduction to Network Management Chu-Sing Yang Department of Electrical Engineering National Cheng Kung University Outline Introduction Network Management Requirement SNMP family OSI management function

More information

Performance of voice and video conferencing over ATM and Gigabit Ethernet backbone networks

Performance of voice and video conferencing over ATM and Gigabit Ethernet backbone networks Res. Lett. Inf. Math. Sci., 2005, Vol. 7, pp 19-27 19 Available online at http://iims.massey.ac.nz/research/letters/ Performance of voice and video conferencing over ATM and Gigabit Ethernet backbone networks

More information

A standards-based network monitoring system

A standards-based network monitoring system A standards-based network monitoring system Javier F. Díaz Laura A. Fava Alejandro J. Sabolansky Computer Science School, National University of La Plata 50 and 120, 2nd floor, La Plata, Buenos Aires,

More information

TE in action. Some problems that TE tries to solve. Concept of Traffic Engineering (TE)

TE in action. Some problems that TE tries to solve. Concept of Traffic Engineering (TE) 1/28 2/28 TE in action S-38.3192 Verkkopalvelujen tuotanto S-38.3192 Network Service Provisioning Networking laboratory 3/28 4/28 Concept of Traffic Engineering (TE) Traffic Engineering (TE) (Traffic Management)

More information

Extending the Internet of Things to IPv6 with Software Defined Networking

Extending the Internet of Things to IPv6 with Software Defined Networking Extending the Internet of Things to IPv6 with Software Defined Networking Abstract [WHITE PAPER] Pedro Martinez-Julia, Antonio F. Skarmeta {pedromj,skarmeta}@um.es The flexibility and general programmability

More information

Chapter 18. Network Management Basics

Chapter 18. Network Management Basics Network Management Basics > FCAPS Model Chapter 18. Network Management Basics This chapter covers the following topics: FCAPS Model Network Management Architecture Network Management Protocols An Introduction

More information

SNMP Extensions for a Self Healing Network

SNMP Extensions for a Self Healing Network SNMP Extensions for a Self Healing Network Background Patent 6,088,141: This is a self healing network depending on additional hardware. It requires a second ring of connection to handle recovery operations.

More information

Alternatives to SNMP and Challenges in Management Protocols. Communication Systems Seminar Talk 10 Francesco Luminati

Alternatives to SNMP and Challenges in Management Protocols. Communication Systems Seminar Talk 10 Francesco Luminati Alternatives to SNMP and Challenges in Management Protocols Communication Systems Seminar Talk 10 Francesco Luminati Introduction Structure Network management Management approaches SNMP Alternatives: NetConf

More information

A Summary of Network Traffic Monitoring and Analysis Techniques

A Summary of Network Traffic Monitoring and Analysis Techniques http://www.cse.wustl.edu/~jain/cse567-06/ftp/net_monitoring/index.html 1 of 9 A Summary of Network Traffic Monitoring and Analysis Techniques Alisha Cecil, acecil19@yahoo.com Abstract As company intranets

More information

A Guide to Understanding SNMP

A Guide to Understanding SNMP A Guide to Understanding SNMP Read about SNMP v1, v2c & v3 and Learn How to Configure SNMP on Cisco Routers 2013, SolarWinds Worldwide, LLC. All rights reserved. Share: In small networks with only a few

More information

SIMPLE NETWORK MANAGEMENT PROTOCOL (SNMP)

SIMPLE NETWORK MANAGEMENT PROTOCOL (SNMP) 1 SIMPLE NETWORK MANAGEMENT PROTOCOL (SNMP) Mohammad S. Hasan Agenda 2 Looking at Today What is a management protocol and why is it needed Addressing a variable within SNMP Differing versions Ad-hoc Network

More information

A Slow-sTart Exponential and Linear Algorithm for Energy Saving in Wireless Networks

A Slow-sTart Exponential and Linear Algorithm for Energy Saving in Wireless Networks 1 A Slow-sTart Exponential and Linear Algorithm for Energy Saving in Wireless Networks Yang Song, Bogdan Ciubotaru, Member, IEEE, and Gabriel-Miro Muntean, Member, IEEE Abstract Limited battery capacity

More information

Simple Network Management Protocol

Simple Network Management Protocol A Seminar Report on Simple Network Management Protocol Submitted in partial fulfillment of the requirement for the award of degree Of Computer Science SUBMITTED TO: SUBMITTED BY: www.studymafia.org www.studymafia.org

More information

An enhanced TCP mechanism Fast-TCP in IP networks with wireless links

An enhanced TCP mechanism Fast-TCP in IP networks with wireless links Wireless Networks 6 (2000) 375 379 375 An enhanced TCP mechanism Fast-TCP in IP networks with wireless links Jian Ma a, Jussi Ruutu b and Jing Wu c a Nokia China R&D Center, No. 10, He Ping Li Dong Jie,

More information

AN ADAPTIVE DISTRIBUTED LOAD BALANCING TECHNIQUE FOR CLOUD COMPUTING

AN ADAPTIVE DISTRIBUTED LOAD BALANCING TECHNIQUE FOR CLOUD COMPUTING AN ADAPTIVE DISTRIBUTED LOAD BALANCING TECHNIQUE FOR CLOUD COMPUTING Gurpreet Singh M.Phil Research Scholar, Computer Science Dept. Punjabi University, Patiala gurpreet.msa@gmail.com Abstract: Cloud Computing

More information

CoMPACT-Monitor: Change-of-Measure based Passive/Active Monitoring Weighted Active Sampling Scheme to Infer QoS

CoMPACT-Monitor: Change-of-Measure based Passive/Active Monitoring Weighted Active Sampling Scheme to Infer QoS CoMPACT-Monitor: Change-of-Measure based Passive/Active Monitoring Weighted Active Sampling Scheme to Infer QoS Masaki Aida, Keisuke Ishibashi, and Toshiyuki Kanazawa NTT Information Sharing Platform Laboratories,

More information

RUGGEDCOM NMS. Monitor Availability Quick detection of network failures at the port and

RUGGEDCOM NMS. Monitor Availability Quick detection of network failures at the port and RUGGEDCOM NMS is fully-featured enterprise grade network management software based on the OpenNMS platform. Specifically for the rugged communications industry, RNMS provides a comprehensive platform for

More information

Know the signs of potential problems. Prevent problems before they occur. This unit contains the following three lessons:

Know the signs of potential problems. Prevent problems before they occur. This unit contains the following three lessons: Unit 6 Router Management Overview Description With today s networks growing exponentially, management is a key to quality of network performance. People depend on their networks and performance issues

More information

A Bulk-retrieval Technique for Effective Remote Monitoring in a Mobile Environment

A Bulk-retrieval Technique for Effective Remote Monitoring in a Mobile Environment A Bulk-retrieval Technique for Effective Remote Monitoring in a Mobile Environment Glenn Mansfield Keeni Cyber Solutions Inc. Kazuhide Koide Tohoku University Takeo Saitoh Cyber Solutions Inc. Norio Shiratori

More information

CHAPTER 7 SUMMARY AND CONCLUSION

CHAPTER 7 SUMMARY AND CONCLUSION 179 CHAPTER 7 SUMMARY AND CONCLUSION This chapter summarizes our research achievements and conclude this thesis with discussions and interesting avenues for future exploration. The thesis describes a novel

More information

AlliedWare Plus OS How To Use sflow in a Network

AlliedWare Plus OS How To Use sflow in a Network AlliedWare Plus OS How To Use sflow in a Network Introduction sflow is an industry-standard sampling system that is embedded in Allied Telesis' high-performing Layer 3 switches. sflow enables you to use

More information

Dynamic Resource Allocation in Software Defined and Virtual Networks: A Comparative Analysis

Dynamic Resource Allocation in Software Defined and Virtual Networks: A Comparative Analysis Dynamic Resource Allocation in Software Defined and Virtual Networks: A Comparative Analysis Felipe Augusto Nunes de Oliveira - GRR20112021 João Victor Tozatti Risso - GRR20120726 Abstract. The increasing

More information

Comparison of SNMP. Versions 1, 2 and 3

Comparison of SNMP. Versions 1, 2 and 3 Comparison of SNMP 1 Comparison of SNMP Versions 1, 2 and 3 Eddie Bibbs Brandon Matt ICTN 4600-001 Xin Tang April 17, 2006 Comparison of SNMP 2 During its development history, the communities of researchers,

More information

Using SNMP for Remote Measurement and Automation

Using SNMP for Remote Measurement and Automation Using SNMP for Remote Measurement and Automation Nikolay Kakanakov, Elena Kostadinova Department of Computer Systems and Technologies, Technical University of Sofia, branch Plovdiv, 61 St. Petersburg Blvd.,

More information