experiment E. Pasqualucci INFN, Sez. of University of Rome `Tor Vergata', Via della Ricerca Scientica 1, Rome, Italy

Size: px
Start display at page:

Download "experiment E. Pasqualucci INFN, Sez. of University of Rome `Tor Vergata', Via della Ricerca Scientica 1, Rome, Italy"

Transcription

1 Using SNMP implementing Data Flow and Run Controls in the KLOE experiment E. Pasqualucci INFN, Sez. of University of Rome `Tor Vergata', Via della Ricerca Scientica, 0033 Rome, Italy M. L. Ferrer, W. Grandegger, E. Pace INFN, Laboratori Nazionali di Frascati, Via Enrico Fermi 40, Frascati, Italy A. Doria INFN, Sez. of University of Napoli, Via d'oltremare Pad. 20, 8025 Napoli, Italy Event builder systems in high rate physics experiments are going to be congured as computer networks built around switches (FDDI, ATM, FCS, HIPPI). Data coming from dierent sectors of the apparatus go into the switch in such a way that all the data related to the same event are concentrated in the same processor. A central processor that is responsible of the data ow control manages the assignment between events and processors. The standard TCP/IP is frequently used to transfer data, while the standard SNMP is used to manage the network devices. The KLOE experiment intent to extend the use of the SNMP protocol in its DAQ system. Private extensions of the SNMP standard MIB are used to implement the network related and feed-back functionalities of the data ow protocol. Similar extensions are used to implement the command distribution of the Run Control system. The KLOE event builder overview The KLOE experiment is currently under development and is scheduled to run in the fall of 997 at the new -factory DANE in Frascati, Italy. The KLOE Data acquisition system 2;3;4, requiring a sustained data throughput of 50 MB/s, uses custom readout devices to concentrate data related to a given trigger number and coming from a sector of the apparatus, into a VME readout manager board 5. The trigger rate is expected to be 0 khz and 0 dierent chains of readout are foreseen. Data related to the same trigger number need to be concentrated in a processor where the building of the complete event is done. The data acquisition system uses a FDDI GIGAswitch from Digital to connect the 0 readout chains to a farm of 50 processors. A commercial VME-CPU board with FDDI interface is in charge of grouping sub-events corresponding to a given set of triggers and sending these packets ( 50kB) to a dened destination in the farm. The TCP/IP protocol is used to manage multiple connections between VME crates and farm processors. A sub-farm is dened corresponding to the processors connected to the same switch port. One of them, the net-processor, is dedicated to receive, build and distribute complete events using shared memory mechanisms.

2 Due to the bridge capabilities and the input and output buering in the GI- GAswitch, a dierent number of ports can be dedicated to the readout chains and to the farms. Network devices in the event builder system of KLOE, e.g. GIGAswitch 6 and Ethernet-FDDI bridges, are congured and controlled using the Simple Network Management Protocol (SNMP). The SNMP software running on these devices is supplied by the vendors. Computer communication interfaces and hosts 7 can also be controlled using the SNMP daemons and agents that by default are included in the kernels of many operating systems in the market.. The Data Flow Control (DFC) A central processor in the event builder system, DFC, is responsible for the control of the event ow, optimizing the distribution of trac between dierent ports of the switch, and avoiding the overloading of sub-farm elements. The DFC retrieves the network map and produces a table of `enabled' Internet destination addresses, ordered in such a way that packets of consecutive sub-events are sent through dierent switch ports. This table resides in memory shared with all the VME CPUs sending data to the farm. A net-processor can ask to be `disabled' or `enabled' by sending to the DFC `input queue almost full' or `queue available' messages. A specialized protocol assures the use of the correct table as a function of the maximum trigger number contained in the packet..2 The Run Control (RC) The Run Control system distributes commands to tasks running in the processors and collaborating to the DAQ work. Commands like Init activity, Start Run,..., are sent and some acknowledgements about the completion of the command execution from the remote tasks need to be received before the trigger system is activated (or after it is deactivated). Variables are dened in each node to maintain the history of the Run Control commands execution. The DFC and RC functionalities listed above are implemented in KLOE using the SNMP protocol. 2 The Simple Network Management Protocol, SNMP SNMP was proposed as a standard by the Internet Engineering Task Force (IETF) and is widely used to manage network devices, to obtain and/or set informations about network conguration, performance, faults, accounting and security. SNMP version is dened in [RFC 55], [RFC 57] and [RFC 22], while version 2 is dened in [RFC ]. Managed objects are dened in a Management Information Base (MIB) by working groups within IETF, but extensions or proprietary MIBs are developed by vendors of hardware or software if their new products require them. SNMP is implemented using a reliable UDP through a well dened UDP port. Every managed device activates at boot time a daemon that is able to understand 2

3 KLOE KLOE_Machine KLOE_Tools KLOE_MachineType KLOE_MachineQFull KLOE_Processes... KLOE_MachineEnableFlag KLOE_ProcControl _LastCommand _Status KLOE_ProcStatus _LastCommandStatus _CommandStatus _Command _CommandStatus.i _Command.i KLOE_ProcName KLOE_ProcName.i KLOE_ProcStatus.i Figure : The KLOE MIB subtree SNMP requests, and to obtain or execute by dedicated agents the information or action required. TRAPs are also dened, for instance in case of crash of a communicating interface, that are converted by the agent into interrupts to be sent through a dierent UDP port to a list of specied hosts in the network. Well documented public domain software exists, in particular Carnegie Mellon University (CMU) distributes a very nice portable SNMP daemon (including agent functionality) and a set of SNMP utilities: get, set, walking in the MIB tree, daemon for SNMP traps, that have been used in the implementation described in this paper. 3 The KLOE-SNMP libraries Based on the CMU software a set of routines have been written to obtain the network map and to allow to send commands and retrieve acknowledgements by the RC. Every processor in the DAQ system activates a SNMP daemon-agent that implements the MIB sub-tree in g.. Variables are dened to manage the dierent machine types, RC commands, KLOE debugging tools and to perform process control. In particular, the KLOE MachineType and KLOE MachineEnableFlag variables indicate the role of the processor in the DAQ system (VME-CPU, net-processor,...) and the ability to be included in the map at the beginning of the run. 3. Network mapping The network map is implemented as a list of structures, each of them containing information about a port of the switch and a list of nodes connected to that port including their characteristics (addresses, functionalities,...). Local tables in the GIGAswitch contain lists of the MAC addresses that are seen through every port. Moreover, an ARP-server is needed in the DAQ network to obtain correspondences between MAC and Internet addresses. Therefore initial trac need to be originated through the switch to ll GIGAswitch and ARP-server tables. The sequence of SNMP get operations implemented in the initialization routine to retrieve the network map is given in the following. the ARP server is interrogated to obtain 3

4 KLOE Command status codes: Success 0 Idle - Not Allowed KLOE _LastCommand _Status Active _LastCommandStatus _CommandStatus _Command Init_Activity Init_Run Start_Run Stop_Run Before Init run _LastCommand _Status 2 Initialized _LastCommandStatus _CommandStatus _Command Init_Activity Init_Run Start_Run Stop_Run After Init run Figure 2: The KLOE RC subtree before and after the Init run command { the FDDI interface number { the nodes seen through this interface { the mapping between their MAC and Internet addresses. the GIGAswitch is interrogated to realize the number of the port where each processor is seen all the nodes are then interrogated to extract the table containing those that will receive events from the DAQ, reading the variables KLOE MachineType and KLOE MachineEnableFlag. This list is used to initialize the DFC table; the use of SNMP traps to implement the `input queue almost full' and `queue available' messages are under study. 3.2 The Run Control protocol Fig. 2 presents the MIB variables related to the execution of a Run Control command e.g. the Init run. To execute a remote command, the RC processor sets the KLOE RC LastCommand variable. Available commands are dened in the KLOE RC Command table. A rst-level acknowledgement (`command received') is implemented in the SNMP protocol itself. As a consequence, the agent submits the command to the processes listed in the local table and sets the KLOE RC LastCommandStatus variable to the appropriate error or `executing' code. Local variables will be modied after completion of the local execution, e.g. KLOE RC Status will present the actual general status of the Run Control (in this case is `Initialized'), KLOE RC CommandStatus will present the status of each command (`success', `failure', `idle', `not allowed') and KLOE RC LastCommandStatus will present the error or success code related to the last executed command. In such a way the KLOE RC subtree maps in each KLOE node the RC status as a state machine. The RC obtain the second-level acknowledgement (`command executed') by getting the KLOE RC LastCommandStatus variable. 4

5 4 Conclusions The SNMP version framework, and in particular the libraries and agents implemented by CMU, have been used with success for the KLOE data acquisition system, and in particular the DFC protocol and the command distribution mechanism of the Run Control system. No special SNMP security system, as dened in the version 2, is necessary now, but it's included in the CMU software and could be easily implemented. Proprietary MIBs have been dened. KLOE private agents have been used, including both public and KLOE private MIBs. These agents can replace the SNMP daemon included in the operating system, e.g. on DEC and HP nodes, but further work is in progress to extend these original daemons to include the KLOE agent. In this way every network management capability is retained in the system. References. The KLOE collaboration, KLOE, a general purpose detector for DANE, LNF-92/09 (992) The KLOE collaboration, The KLOE detector, Technical Proposal, LNF- 93/002 (993) 2. The KLOE collaboration, The KLOE Data Acquisition System, LNF-95/04 (995) 3. H. Beker, Data transfer mechanisms for the KLOE Data acquisition System, presented in sect. C.3 in this conference. 4. M. L. Ferrer, The KLOE DAQ system and DAQ issues for experiments in the year 2000, plenary talk in this conference 5. A. Aloisio, Level DAQ system for KLOE, presented in sect. C. in this conference. 6. Digital Equipment Corporation, GIGAswitch system Manager's Guide and Release Notes (version 2.), Part Numbers: EK-GGMGA-MG.A0 and AA- PZT9C-TE. 7. S. Waldbusser - Network Working Group, RFC 27, Remote Network Monitoring Management Information Base Carnegie Mellon University, Nov.99 5

An FPGA Based General Purpose DAQ Module for the KLOE-2 Experiment

An FPGA Based General Purpose DAQ Module for the KLOE-2 Experiment Journal of Physics: Conference Series An FPGA Based General Purpose DAQ Module for the KLOE-2 Experiment To cite this article: A Aloisio et al 2011 J. Phys.: Conf. Ser. 331 022033 View the article online

More information

100 Mbps DEC FDDI Gigaswitch

100 Mbps DEC FDDI Gigaswitch PVM Communication Performance in a Switched FDDI Heterogeneous Distributed Computing Environment Michael J. Lewis Raymond E. Cline, Jr. Distributed Computing Department Distributed Computing Department

More information

RMON MIB. Presenter: Andreas Pitsillides. Based on presentation by Rouf Boutaba

RMON MIB. Presenter: Andreas Pitsillides. Based on presentation by Rouf Boutaba RMON MIB Presenter: Andreas Pitsillides Based on presentation by Rouf Boutaba 1 The RMON MIB Objectives Introduction Segment Statistics Statistics Other RMON MIB Groups Summary 2 RMON MIB - Objectives

More information

ISTITUTO NAZIONALE DI FISICA NUCLEARE

ISTITUTO NAZIONALE DI FISICA NUCLEARE ISTITUTO NAZIONALE DI FISICA NUCLEARE Sezione di Perugia INFN/TC-05/10 July 4, 2005 DESIGN, IMPLEMENTATION AND CONFIGURATION OF A GRID SITE WITH A PRIVATE NETWORK ARCHITECTURE Leonello Servoli 1,2!, Mirko

More information

Introduction to the Catalyst 3920

Introduction to the Catalyst 3920 CHAPTER 1 Introduction to the Catalyst 3920 This chapter contains the following information about the Catalyst 3920: Product Overview Physical Characteristics of the Catalyst 3920 System Architecture Product

More information

NET311 Computer Network Management Tools, Systems and Engineering

NET311 Computer Network Management Tools, Systems and Engineering NET311 Computer Network Management Tools, Systems and Engineering Dr. Mostafa H. Dahshan Department of Computer Engineering College of Computer and Information Sciences King Saud University mdahshan@ksu.edu.sa

More information

SNMP MIBs and Traps Supported

SNMP MIBs and Traps Supported This section describes the MIBs available on your system. When you access your MIB data you will expose additional MIBs not listed in this section. The additional MIBs you expose through the process are

More information

Review question: Protection and Security *

Review question: Protection and Security * OpenStax-CNX module: m28010 1 Review question: Protection and Security * Duong Anh Duc This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Review question

More information

Configuring IPv4 Broadcast Packet Handling

Configuring IPv4 Broadcast Packet Handling Configuring IPv4 Broadcast Packet Handling Finding Feature Information Configuring IPv4 Broadcast Packet Handling Last Updated: April 12, 2011 This module explains what IPv4 broadcast packets are, when

More information

A New approach to Control Systems

A New approach to Control Systems A New approach to Control Systems Presented on behalf of the!chaos development team !CHAOS project idea !CHAOS project idea Claudio Bisegni INFN-LNF !CHAOS project idea Overall objectives: enhancement

More information

N E T W O R K M A N A G E M E N T P R I N C I P L E S R E V I E W

N E T W O R K M A N A G E M E N T P R I N C I P L E S R E V I E W CS7012 N E T W O R K M A N A G E M E N T P R I N C I P L E S R E V I E W THE MANAGED OBJECT MANAGER / AGENT RELATIONSHIP Standard Interface Local (proprietary) Interface Manager Management Operations Agent

More information

Configuring IPv4 Broadcast Packet Handling

Configuring IPv4 Broadcast Packet Handling Configuring IPv4 Broadcast Packet Handling This module explains what IPv4 broadcast packets are, when they are used, and how to customize your router s configuration for situations when the default behavior

More information

Chapter 3 Managing System Settings

Chapter 3 Managing System Settings Chapter 3 Managing System Settings Using the System Settings Utility The navigation pane at the top of the web browser interface contains a System tab that enables you to manage your FS700TSSmart Switch

More information

Hera-B DAQ System and its self-healing abilities

Hera-B DAQ System and its self-healing abilities Hera-B DAQ System and its self-healing abilities V.Rybnikov, DESY, Hamburg 1. HERA-B experiment 2. DAQ architecture Read-out Self-healing tools Switch SLT nodes isolation 3. Run control system 4. Self-healing

More information

Networking for Data Acquisition Systems. Fabrice Le Goff - 14/02/ ISOTDAQ

Networking for Data Acquisition Systems. Fabrice Le Goff - 14/02/ ISOTDAQ Networking for Data Acquisition Systems Fabrice Le Goff - 14/02/2018 - ISOTDAQ Outline Generalities The OSI Model Ethernet and Local Area Networks IP and Routing TCP, UDP and Transport Efficiency Networking

More information

Technische Universitat Munchen. Institut fur Informatik. D Munchen.

Technische Universitat Munchen. Institut fur Informatik. D Munchen. Developing Applications for Multicomputer Systems on Workstation Clusters Georg Stellner, Arndt Bode, Stefan Lamberts and Thomas Ludwig? Technische Universitat Munchen Institut fur Informatik Lehrstuhl

More information

The GAP project: GPU applications for High Level Trigger and Medical Imaging

The GAP project: GPU applications for High Level Trigger and Medical Imaging The GAP project: GPU applications for High Level Trigger and Medical Imaging Matteo Bauce 1,2, Andrea Messina 1,2,3, Marco Rescigno 3, Stefano Giagu 1,3, Gianluca Lamanna 4,6, Massimiliano Fiorini 5 1

More information

Keywords. IPv6 network; network topology auto-discovery; IPv6 address; IPv6 stateless address autoconfiguration

Keywords. IPv6 network; network topology auto-discovery; IPv6 address; IPv6 stateless address autoconfiguration Research of the Topology Auto-discovery Approach in the IPv6 Access Network Shen Zengwei School of Computer Science and Engineering Beijing University of Aeronautics and Astronautics Beijing, 100083,P.R.China

More information

SEI DC-UPS Power Management Package Users Manual

SEI DC-UPS Power Management Package Users Manual SEI DC-UPS Power Management Package Users Manual (301) 694-9601 (800) 765-4734 Fax (301) 694-9608 Email: info@seipower.com www.seipower.com 5115 Pegasus Court Suite Q Frederick, MD 21704 1. Introduction

More information

TCP/IP and the OSI Model

TCP/IP and the OSI Model TCP/IP BASICS TCP/IP and the OSI Model TCP/IP BASICS The network protocol of the Internet Composed of six main protocols IP Internet Protocol UDP User Datagram Protocol TCP Transmission Control Protocol

More information

Chapter 1: Introduction. Operating System Concepts 9 th Edit9on

Chapter 1: Introduction. Operating System Concepts 9 th Edit9on Chapter 1: Introduction Operating System Concepts 9 th Edit9on Silberschatz, Galvin and Gagne 2013 Objectives To describe the basic organization of computer systems To provide a grand tour of the major

More information

Chapter 2 Computer-System Structure

Chapter 2 Computer-System Structure Contents 1. Introduction 2. Computer-System Structures 3. Operating-System Structures 4. Processes 5. Threads 6. CPU Scheduling 7. Process Synchronization 8. Deadlocks 9. Memory Management 10. Virtual

More information

BES-III off-detector readout electronics for the GEM detector: an update

BES-III off-detector readout electronics for the GEM detector: an update BES-III off-detector readout electronics for the GEM detector: an update The CGEM off-detector collaboration ( INFN/Univ. FE, INFN LNF, Univ. Uppsala ) 1 Outline Reminder Update on development status Off-detector

More information

CS-435 spring semester Network Technology & Programming Laboratory. Stefanos Papadakis & Manolis Spanakis

CS-435 spring semester Network Technology & Programming Laboratory. Stefanos Papadakis & Manolis Spanakis CS-435 spring semester 206 Network Technology & Programming Laboratory University of Crete Computer Science Department Stefanos Papadakis & Manolis Spanakis CS-435 Lecture #2 preview: Data Communications

More information

Overview of the Cisco Service Control Value Added Services Feature

Overview of the Cisco Service Control Value Added Services Feature CHAPTER 1 Overview of the Cisco Service Control Value Added Services Feature Revised: May 27, 2013, Introduction The VAS feature enables the Cisco SCE platform to access an external expert system for classification

More information

A Fast VME Data Acquisition System for Spill Analysis and Beam Loss Measurement

A Fast VME Data Acquisition System for Spill Analysis and Beam Loss Measurement A Fast VME Data Acquisition System for Spill Analysis and Beam Loss Measurement T. Hoffmann, D. A. Liakin *, P. Forck Gesellschaft für Schwerionenforschung (GSI), Planckstraße 1, D-64291Darmstadt * ITEP

More information

Table of Contents. 2 MIB Style Configuration 2-1 Overview 2-1 Setting the MIB Style 2-1 Displaying and Maintaining MIB 2-1

Table of Contents. 2 MIB Style Configuration 2-1 Overview 2-1 Setting the MIB Style 2-1 Displaying and Maintaining MIB 2-1 Table of Contents 1 SNMP Configuration 1-1 SNMP Overview 1-1 SNMP Mechanism 1-1 SNMP Protocol Versions 1-2 MIB Overview 1-2 Configuring SNMP 1-3 Configuring SNMPv3 1-3 Configuring SNMPv1 and SNMPv2c 1-4

More information

SNMP. Simple Network Management Protocol

SNMP. Simple Network Management Protocol SNMP Simple Network Management Protocol Outline Overview Protocol MIB Net-SNMP Network Management Tools Client Application Development 2 Network Management How to monitor your servers? Trying to use the

More information

TCP/IP Stack Introduction: Looking Under the Hood!

TCP/IP Stack Introduction: Looking Under the Hood! TCP/IP Stack Introduction: Looking Under the Hood! Shiv Kalyanaraman shivkuma@ecse.rpi.edu http://www.ecse.rpi.edu/homepages/shivkuma 1 Example program 1. Create UDP datagram socket; fill in server address

More information

Compute Node Design for DAQ and Trigger Subsystem in Giessen. Justus Liebig University in Giessen

Compute Node Design for DAQ and Trigger Subsystem in Giessen. Justus Liebig University in Giessen Compute Node Design for DAQ and Trigger Subsystem in Giessen Justus Liebig University in Giessen Outline Design goals Current work in Giessen Hardware Software Future work Justus Liebig University in Giessen,

More information

Fault Management. Overview of Polling and Thresholds CHAPTER

Fault Management. Overview of Polling and Thresholds CHAPTER CHAPTER 3 This chapter describes the following topics: Overview of Polling and Updating Polling Parameters and Setting Priorities Threshold Configuration Managing Polling Parameters Applying Polling and

More information

Understanding and Troubleshooting DHCP in Catalyst Switch or Enterprise Networks

Understanding and Troubleshooting DHCP in Catalyst Switch or Enterprise Networks Understanding and Troubleshooting DHCP in Catalyst Switch or Enterprise Networks Contents Introduction Example Scenarios Background Information Understanding DHCP Current DHCP RFC References DHCP Message

More information

A programming environment to control switching. networks based on STC104 packet routing chip 1

A programming environment to control switching. networks based on STC104 packet routing chip 1 A programming environment to control switching networks based on STC104 packet routing chip 1 I.C. Legrand 2, U. Schwendicke, H. Leich, M. Medinnis, A. Koehler, P. Wegner, K. Sulanke, R. Dippel, A. Gellrich

More information

Electronics and data acquisition systems for the RPC based INO ICAL detector

Electronics and data acquisition systems for the RPC based INO ICAL detector Electronics and data acquisition systems for the RPC based INO ICAL detector Tata Institute of Fundamental Research, Mumbai 400005, India E-mail: bsn@tifr.res.in Sudeshna Dasgupta, Sonal Dhuldhaj, Naba

More information

Chapter 6 Hardware Overview

Chapter 6 Hardware Overview Chapter 6 Hardware Overview This chapter provides a hardware overview of the HP ProCurve 9308M, 9304M, and 6308M-SX routing switches, and the HP ProCurve 6208M-SX switch. For information about specific

More information

SNMP SIMULATOR. Description

SNMP SIMULATOR. Description SNMP SIMULATOR Overview The SNMP Agent Simulator enables simulation of standalone SNMP agents to test and demonstrate SNMP-based management applications. Its unique ability to create default values from

More information

Ch. 13: Measuring Performance

Ch. 13: Measuring Performance Ch. 13: Measuring Performance Kenneth Mitchell School of Computing & Engineering, University of Missouri-Kansas City, Kansas City, MO 64110 Kenneth Mitchell, CS & EE dept., SCE, UMKC p. 1/3 Introduction

More information

Data Acquisition in Particle Physics Experiments. Ing. Giuseppe De Robertis INFN Sez. Di Bari

Data Acquisition in Particle Physics Experiments. Ing. Giuseppe De Robertis INFN Sez. Di Bari Data Acquisition in Particle Physics Experiments Ing. Giuseppe De Robertis INFN Sez. Di Bari Outline DAQ systems Theory of operation Case of a large experiment (CMS) Example of readout GEM detectors for

More information

A Global Operating System for HPC Clusters

A Global Operating System for HPC Clusters A Global Operating System Emiliano Betti 1 Marco Cesati 1 Roberto Gioiosa 2 Francesco Piermaria 1 1 System Programming Research Group, University of Rome Tor Vergata 2 BlueGene Software Division, IBM TJ

More information

Imi :... Data:... Nazwisko:... Stron:...

Imi :... Data:... Nazwisko:... Stron:... Imi :.................................................... Data:....................... Nazwisko:............................................... Stron:...................... 1. Which of the following protocols

More information

Value Added Services (VAS) Traffic Forwarding

Value Added Services (VAS) Traffic Forwarding CHAPTER 12 Revised: June 27, 2011, Introduction This chapter provides an overview of VAS traffic forwarding, explaining what is it and how it works. It also explains the various procedures for configuring

More information

The CMS Event Builder

The CMS Event Builder The CMS Event Builder Frans Meijers CERN/EP-CMD CMD on behalf of the CMS-DAQ group CHEP03, La Jolla, USA, March 24-28 28 2003 1. Introduction 2. Selected Results from the Technical Design Report R&D programme

More information

Design, Implementation, and Performance of CREAM Data Acquisition Software

Design, Implementation, and Performance of CREAM Data Acquisition Software Design, Implementation, and Performance of CREAM Data Acquisition Software S. Y. Zinn*(1), H. S. Ahn (1), M. G. Bagliesi (2), J. J. Beatty (3), J. T. Childers (4), S. Coutu (3), M. A. DuVernois (4), O.

More information

TCP/IP Protocol Suite and IP Addressing

TCP/IP Protocol Suite and IP Addressing TCP/IP Protocol Suite and IP Addressing CCNA 1 v3 Module 9 10/11/2005 NESCOT CATC 1 Introduction to TCP/IP U.S. DoD created the TCP/IP model. Provides reliable data transmission to any destination under

More information

An Intelligent NIC Design Xin Song

An Intelligent NIC Design Xin Song 2nd International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2016) An Intelligent NIC Design Xin Song School of Electronic and Information Engineering Tianjin Vocational

More information

The Detector Control System for the HMPID in the ALICE Experiment at LHC.

The Detector Control System for the HMPID in the ALICE Experiment at LHC. The Detector Control System for the HMPID in the LICE Eperiment at LHC. De Cataldo, G. for the LICE collaboration INFN sez. Bari, Via G. mendola 173, 70126 Bari, Italy giacinto.decataldo@ba.infn.it bstract

More information

A Brief Introduction to Internet Network Management. Geoff Huston

A Brief Introduction to Internet Network Management. Geoff Huston A Brief Introduction to Internet Network Management Geoff Huston gih@telstra.net What are we talking about? Network Management Tasks fault management configuration management performance management security

More information

Migrating from Cisco HSRP to industry standard VRRP

Migrating from Cisco HSRP to industry standard VRRP Migrating from Cisco HSRP to industry standard VRRP Technical white paper Table of contents Router Redundancy Protocol overview... 2 Introduction to Cisco Hot Standby Router Protocol (HSRP)... 2 Introduction

More information

DHCP Basics (Dynamic Host Configuration Protocol) BUPT/QMUL

DHCP Basics (Dynamic Host Configuration Protocol) BUPT/QMUL DHCP Basics (Dynamic Host Configuration Protocol) BUPT/QMUL 2017-04-01 Topics In This Course Background Introduction of Internet TCP/IP and OSI/RM Socket programmingtypical Internet Applications DHCP (Dynamic

More information

ROB-IN Functional demonstrator of the ATLAS Trigger / DAQ Read-Out Buffer O.Gachelin, M.Huet, P.Le Dû, M.Mur C.E.A.

ROB-IN Functional demonstrator of the ATLAS Trigger / DAQ Read-Out Buffer O.Gachelin, M.Huet, P.Le Dû, M.Mur C.E.A. 1 ROB-IN Functional demonstrator of the ATLAS Trigger / DAQ Read-Out Buffer O.Gachelin, M.Huet, P.Le Dû, M.Mur C.E.A. Saclay - DAPNIA 2 Basic principles Data flow : output < input including L2 and L3 according

More information

A THESIS SUBMITTED TO THE GRADUATE DIVISION OF THE UNIVERSITY OF HAWAI I IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF

A THESIS SUBMITTED TO THE GRADUATE DIVISION OF THE UNIVERSITY OF HAWAI I IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF USING A PCI SCHEDULER AND A DYNAMIC THRESHOLD TO ENHANCE A HIGH SPEED READOUT SYSTEM A THESIS SUBMITTED TO THE GRADUATE DIVISION OF THE UNIVERSITY OF HAWAI I IN PARTIAL FULFILLMENT OF THE REQUIREMENTS

More information

A New Low Level Processor for the DAFNE Control System. G. Di Pirro, G. Mazzitelli, I. Sfiligoi, A. Stecchi INFN-LNF Italy

A New Low Level Processor for the DAFNE Control System. G. Di Pirro, G. Mazzitelli, I. Sfiligoi, A. Stecchi INFN-LNF Italy A New Low Level Processor for the DAFNE Control System G. Di Pirro, G. Mazzitelli, I. Sfiligoi, A. Stecchi INFN-LNF Italy The DAFNE e+/e-? -factory DAFNE layout RF cavities Vacuum pumps Vacuometers Kickers

More information

ATLANTIS - a modular, hybrid FPGA/CPU processor for the ATLAS. University of Mannheim, B6, 26, Mannheim, Germany

ATLANTIS - a modular, hybrid FPGA/CPU processor for the ATLAS. University of Mannheim, B6, 26, Mannheim, Germany ATLANTIS - a modular, hybrid FPGA/CPU processor for the ATLAS Readout Systems A. Kugel, Ch. Hinkelbein, R. Manner, M. Muller, H. Singpiel University of Mannheim, B6, 26, 68131 Mannheim, Germany fkugel,

More information

Managing Networks with the Global Naming Tree Gilbert Held

Managing Networks with the Global Naming Tree Gilbert Held 51-10-15 Managing Networks with the Global Naming Tree Gilbert Held Payoff An often-overlooked and hidden-from-view characteristic of network management systems is their use of the global naming tree.

More information

Simple Network Management Protocol (SNMP)

Simple Network Management Protocol (SNMP) Announcements Project #5 extended until Dec. 10 Reading: 7.3, start 7.4 Midterm #2 last day to request re-grades Th in class HW#2 (due Tuesday Dec. 7) 1 Simple Network Management Protocol (SNMP) Managed

More information

Monitoring Event Logs

Monitoring Event Logs 13 CHAPTER This chapter describes the Monitoring module of Cisco NAC Appliance. Topics include: Overview, page 13-1 Interpreting Event Logs, page 13-4 Configuring Syslog Logging, page 13-9 Cisco NAC Appliance

More information

Network Management System

Network Management System Network Management System NMS: Simple solution: Ping all elements routinely If machine down go and fix it Time stamps on ping packets indicate delay, congestion Becomes a problem with large and complex

More information

Configuring RMON. Understanding RMON CHAPTER

Configuring RMON. Understanding RMON CHAPTER 22 CHAPTER This chapter describes how to configure Remote Network Monitoring (RMON) on your switch. RMON is a standard monitoring specification that defines a set of statistics and functions that can be

More information

Chapter 13: I/O Systems

Chapter 13: I/O Systems Chapter 13: I/O Systems DM510-14 Chapter 13: I/O Systems I/O Hardware Application I/O Interface Kernel I/O Subsystem Transforming I/O Requests to Hardware Operations STREAMS Performance 13.2 Objectives

More information

Virtual Security Gateway Overview

Virtual Security Gateway Overview This chapter contains the following sections: Information About the Cisco Virtual Security Gateway, page 1 Cisco Virtual Security Gateway Configuration for the Network, page 10 Feature History for Overview,

More information

M.Vanden Eynden. SL Controls Group. European Laboratory for Particle Physics

M.Vanden Eynden. SL Controls Group. European Laboratory for Particle Physics 12pt The New Generation of PowerPC VMEbus Front End Computers for the CERN SPS and LEP Accelerators Control System Abstract M.Vanden Eynden SL Controls Group European Laboratory for Particle Physics CH1211

More information

PLANEAMENTO E GESTÃO DE REDES INFORMÁTICAS COMPUTER NETWORKS PLANNING AND MANAGEMENT

PLANEAMENTO E GESTÃO DE REDES INFORMÁTICAS COMPUTER NETWORKS PLANNING AND MANAGEMENT Mestrado em Engenharia Informática e de Computadores PLANEAMENTO E GESTÃO DE REDES INFORMÁTICAS COMPUTER NETWORKS PLANNING AND MANAGEMENT 2010-2011 Arquitecturas de Redes 3 Gestão de Redes e Serviços -

More information

Troubleshooting EtherNet/IP Networks

Troubleshooting EtherNet/IP Networks www.odva.org Troubleshooting EtherNet/IP Networks By Merrill Harriman Schneider Electric Technical Track Introduction Overview Mysterious counters Diagnostic tools Access mechanisms Ethernet counters Troubleshoot

More information

Trigger and Data Acquisition at the Large Hadron Collider

Trigger and Data Acquisition at the Large Hadron Collider Trigger and Data Acquisition at the Large Hadron Collider Acknowledgments (again) This overview talk would not exist without the help of many colleagues and all the material available online I wish to

More information

Fermi National Accelerator Laboratory

Fermi National Accelerator Laboratory Fermi National Accelerator Laboratory FERMILAB-Conf-96/439-E CDF CDF DAQ Upgrade and CMS DAQ R&D: Event Builder Tests Using an ATM Switch G. Bauer, T. Daniels, K. Kelley, P. Sphicas, K. Sumorok, S. Tether,

More information

Computer Network Addressing. The TCP/IP Layers and Addresses. Topics. The Internet Communication. The TCP/IP Layers and Addresses IP Address

Computer Network Addressing. The TCP/IP Layers and Addresses. Topics. The Internet Communication. The TCP/IP Layers and Addresses IP Address Topics Computer Addressing The / Layers and Addresses Computer and Data Communication Laboratory I 2 The Internet Communication The / Layers and Addresses 4 Protocol Layers / Protocol Stack OSI and / SMTP

More information

Req-Id 0 0 Variable-Bindings. GetRequest, SetRequest. Response. control 1 Value 1 control n Value n Name 1 Value 1 Name m Value m.

Req-Id 0 0 Variable-Bindings. GetRequest, SetRequest. Response. control 1 Value 1 control n Value n Name 1 Value 1 Name m Value m. In Proc. DSOM '95, 6th IFIP/IEEE Workshop on Distributed Systems: Operations and Management, Ottawa, Canada (Oct. 1995). Use of Control Variables to Convey Protocol Semantics in SNMP Ruchir Godura and

More information

A closer look at network structure:

A closer look at network structure: T1: Introduction 1.1 What is computer network? Examples of computer network The Internet Network structure: edge and core 1.2 Why computer networks 1.3 The way networks work 1.4 Performance metrics: Delay,

More information

Chapter 12: I/O Systems

Chapter 12: I/O Systems Chapter 12: I/O Systems Chapter 12: I/O Systems I/O Hardware! Application I/O Interface! Kernel I/O Subsystem! Transforming I/O Requests to Hardware Operations! STREAMS! Performance! Silberschatz, Galvin

More information

Chapter 13: I/O Systems

Chapter 13: I/O Systems Chapter 13: I/O Systems Chapter 13: I/O Systems I/O Hardware Application I/O Interface Kernel I/O Subsystem Transforming I/O Requests to Hardware Operations STREAMS Performance Silberschatz, Galvin and

More information

Chapter 12: I/O Systems. Operating System Concepts Essentials 8 th Edition

Chapter 12: I/O Systems. Operating System Concepts Essentials 8 th Edition Chapter 12: I/O Systems Silberschatz, Galvin and Gagne 2011 Chapter 12: I/O Systems I/O Hardware Application I/O Interface Kernel I/O Subsystem Transforming I/O Requests to Hardware Operations STREAMS

More information

HP Certified Professional

HP Certified Professional HP Certified Professional NonStop Advanced and Communications Level 2 Exam # HP0-761 Exam Preparation Guide Check the web site for course descriptions and prerequisites at: http://education.hp.com/curr-nonstop.htm

More information

Detector Control LHC

Detector Control LHC Detector Control Systems @ LHC Matthias Richter Department of Physics, University of Oslo IRTG Lecture week Autumn 2012 Oct 18 2012 M. Richter (UiO) DCS @ LHC Oct 09 2012 1 / 39 Detectors in High Energy

More information

FB(9,3) Figure 1(a). A 4-by-4 Benes network. Figure 1(b). An FB(4, 2) network. Figure 2. An FB(27, 3) network

FB(9,3) Figure 1(a). A 4-by-4 Benes network. Figure 1(b). An FB(4, 2) network. Figure 2. An FB(27, 3) network Congestion-free Routing of Streaming Multimedia Content in BMIN-based Parallel Systems Harish Sethu Department of Electrical and Computer Engineering Drexel University Philadelphia, PA 19104, USA sethu@ece.drexel.edu

More information

Cisco Small Business SF200E Series Advanced Smart Switches

Cisco Small Business SF200E Series Advanced Smart Switches ADMINISTRATION GUIDE Cisco Small Business SF200E Series Advanced Smart Switches Contents Chapter 1: Getting Started 9 Starting the Web-Based Switch Configuration Utility 9 Launching the Utility 10 Logging

More information

RADIUS Tunnel Preference for Load Balancing

RADIUS Tunnel Preference for Load Balancing RADIUS Tunnel Preference for Load Balancing and Fail-Over Finding Feature Information RADIUS Tunnel Preference for Load Balancing and Fail-Over Last Updated: July 18, 2011 The RADIUS Tunnel Preference

More information

Operation Manual SNMP. Table of Contents

Operation Manual SNMP. Table of Contents Table of Contents Table of Contents... 1-1 1.1 SNMP Overview... 1-1 1.1.1 Introduction to SNMP... 1-1 1.1.2 SNMP Versions and Supported MIB... 1-1 1.2 Configuring SNMP... 1-3 1.2.1 Setting Community Names...

More information

Data acquisition system of COMPASS experiment - progress and future plans

Data acquisition system of COMPASS experiment - progress and future plans Data acquisition system of COMPASS experiment - progress and future plans Faculty of Nuclear Sciences and Physical Engineering Czech Technical University in Prague & CERN COMPASS experiment COMPASS experiment

More information

ROB IN Performance Measurements

ROB IN Performance Measurements ROB IN Performance Measurements I. Mandjavidze CEA Saclay, 91191 Gif-sur-Yvette CEDEX, France ROB Complex Hardware Organisation Mode of Operation ROB Complex Software Organisation Performance Measurements

More information

Configuring sflow. Information About sflow. sflow Agent. This chapter contains the following sections:

Configuring sflow. Information About sflow. sflow Agent. This chapter contains the following sections: This chapter contains the following sections: Information About sflow, page 1 Licensing Requirements, page 2 Prerequisites, page 2 Guidelines and Limitations for sflow, page 2 Default Settings for sflow,

More information

Process/ Application NFS NTP SMTP UDP TCP. Transport. Internet

Process/ Application NFS NTP SMTP UDP TCP. Transport. Internet PERFORMANCE CONSIDERATIONS IN FILE TRANSFERS USING FTP OVER WIDE-AREA ATM NETWORKS Luiz A. DaSilva y, Rick Lett z and Victor S. Frost y y Telecommunications & Information Sciences Laboratory The University

More information

Simple Network Management Protocol (SNMP)

Simple Network Management Protocol (SNMP) Announcements Project #5 extended until Dec. 10 Reading: 7.3, start 7.4 Midterm #2 last day to request re-grades Th in class HW#2 (due Tuesday Dec. 7) 1 Simple Network Management Protocol (SNMP) Managed

More information

ATLAS TDAQ RoI Builder and the Level 2 Supervisor system

ATLAS TDAQ RoI Builder and the Level 2 Supervisor system ATLAS TDAQ RoI Builder and the Level 2 Supervisor system R. E. Blair 1, J. Dawson 1, G. Drake 1, W. Haberichter 1, J. Schlereth 1, M. Abolins 2, Y. Ermoline 2, B. G. Pope 2 1 Argonne National Laboratory,

More information

Process Health Monitoring

Process Health Monitoring This chapter describes how to manage and monitor the health of various components of your router. It contains the following sections: Monitoring Control Plane Resources, page 1 Monitoring Hardware Using

More information

Chapter 7 Hardware Overview

Chapter 7 Hardware Overview Chapter 7 Hardware Overview This chapter provides a hardware overview of the HP 9308M, HP 930M, and HP 6308M-SX routing switches and the HP 6208M-SX switch. For information about specific hardware standards

More information

Applications PVM (Parallel Virtual Machine) Socket Interface. Unix Domain LLC/SNAP HIPPI-LE/FP/PH. HIPPI Networks

Applications PVM (Parallel Virtual Machine) Socket Interface. Unix Domain LLC/SNAP HIPPI-LE/FP/PH. HIPPI Networks Enhanced PVM Communications over a HIPPI Local Area Network Jenwei Hsieh, David H.C. Du, Norman J. Troullier 1 Distributed Multimedia Research Center 2 and Computer Science Department, University of Minnesota

More information

TP-LINK Gigabit L2 Managed Switch

TP-LINK Gigabit L2 Managed Switch NEW TP-LINK Gigabit L2 Managed Switch TM NEW TL-SG3216 / TL-SG3424 Overview TP-LINK JetStream TM gigabit L2 managed switch 3 series family consists of two switches: TL-SG3216 with 16 10/100/1000Mbps ports

More information

A Performance Monitoring System for Large Computing Clusters

A Performance Monitoring System for Large Computing Clusters A Performance Monitoring System for Large Computing Clusters Moreno Marzolla marzolla@dsi.unive.it http://www.dsi.unive.it/~marzolla Dip. Informatica, Università Ca' Foscari di Venezia and Istituto Nazionale

More information

PPPoE on ATM. Finding Feature Information. Prerequisites for PPPoE on ATM. Restrictions for PPPoE on ATM

PPPoE on ATM. Finding Feature Information. Prerequisites for PPPoE on ATM. Restrictions for PPPoE on ATM This feature module describes the PPP over Ethernet (PPPoE) on ATM feature. The feature provides the ability to connect a network of hosts over a simple bridging-access device to a remote access concentrator.

More information

Overview of the Experimental Physics and Industrial Control System: EPICS

Overview of the Experimental Physics and Industrial Control System: EPICS September, 1998 Overview of the Experimental Physics and Industrial Control System: EPICS Stephen A. Lewis Lawrence Berkeley National Laboratory A Note for Prospective Users Introduction The collaboration

More information

Cloud e Datacenter Networking

Cloud e Datacenter Networking Cloud e Datacenter Networking Università degli Studi di Napoli Federico II Dipartimento di Ingegneria Elettrica e delle Tecnologie dell Informazione DIETI Laurea Magistrale in Ingegneria Informatica Prof.

More information

Netchannel 2: Optimizing Network Performance

Netchannel 2: Optimizing Network Performance Netchannel 2: Optimizing Network Performance J. Renato Santos +, G. (John) Janakiraman + Yoshio Turner +, Ian Pratt * + HP Labs - * XenSource/Citrix Xen Summit Nov 14-16, 2007 2003 Hewlett-Packard Development

More information

The Role of a Network Topology MIB in the Quality Control Management of Computer Networks

The Role of a Network Topology MIB in the Quality Control Management of Computer Networks The Role of a Network Topology MIB in the Quality ontrol Management of omputer Networks Theodore K. Apostolopoulos Department of Informatics Athens University of Economics and Business 76, Patission str.,

More information

Dataflow Monitoring in LHCb

Dataflow Monitoring in LHCb Journal of Physics: Conference Series Dataflow Monitoring in LHCb To cite this article: D Svantesson et al 2011 J. Phys.: Conf. Ser. 331 022036 View the article online for updates and enhancements. Related

More information

Performance quality monitoring system (PQM) for the Daya Bay experiment

Performance quality monitoring system (PQM) for the Daya Bay experiment Performance quality monitoring system (PQM) for the Daya Bay experiment LIU Yingbiao Institute of High Energy Physics On behalf of the Daya Bay Collaboration ACAT2013, Beijing, May 16-21, 2013 2 The Daya

More information

Configuring the Catalyst 3920

Configuring the Catalyst 3920 CHAPTER 5 Configuring the Catalyst 3920 You might not have to configure the Catalyst 3920 for it to work in your network; it is shipped with default configuration parameters and can function with these

More information

2008 JINST 3 S Online System. Chapter System decomposition and architecture. 8.2 Data Acquisition System

2008 JINST 3 S Online System. Chapter System decomposition and architecture. 8.2 Data Acquisition System Chapter 8 Online System The task of the Online system is to ensure the transfer of data from the front-end electronics to permanent storage under known and controlled conditions. This includes not only

More information

HP Load Balancing Module

HP Load Balancing Module HP Load Balancing Module High Availability Configuration Guide Part number: 5998-2687 Document version: 6PW101-20120217 Legal and notice information Copyright 2012 Hewlett-Packard Development Company,

More information

TP-LINK. 24-Port Gigabit L2 Managed PoE Switch with 4 Combo SFP Slots. Overview. Datasheet TL-SG3424P.

TP-LINK. 24-Port Gigabit L2 Managed PoE Switch with 4 Combo SFP Slots. Overview. Datasheet TL-SG3424P. TP-LINK TM 24-Port Gigabit L2 Managed PoE Switch with 4 Combo SFP Slots Overview The provides 24 10/100/1000Mbps ports that supports 802.3at/af-compliant PoE, with a total PoE power supply up to 320W,

More information

Implementation of Flexible ABR Flow Control in ATM Networks

Implementation of Flexible ABR Flow Control in ATM Networks MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Implementation of Flexible ABR Flow Control in ATM Networks Qin Zheng, Randy Osborne, John Howard, Ross Casley, Doug Hahn, Takeo Nakabayashi

More information