An Emulation Framework for Wireless Mesh Networks in Omnet++

Total Page:16

File Type:pdf, Size:1020Kb

An Emulation Framework for Wireless Mesh Networks in Omnet++ VIRTUALMESH:AN EMULATION FRAMEWORK FOR WIRELESS MESH NETWORKS IN OMNET++ Master Thesis of the Philosophical-scientific Faculty of the University of Bern written by Reto Gantenbein 2010 Supervisors: Professor Dr. Torsten Braun Thomas Staub Institute of Computer Science and Applied Mathematics Abstract Wireless Mesh Networks (WMN) have proven to be an important technology for interconnect- ing computer systems in a flexible way. There exist many application areas that profit from WMN technologies such as surveillance and monitoring systems, the wireless integration of mobile clients into a network infrastructure or simply the spontaneous setup of a network for data exchange between several mobile devices. The development process for new protocols and architectures in the area of WMN is typically split into a first implementation and evaluation phase performed with help of a network simulation, followed by a real-world prototype im- plementation, which is tested in a realistic test-bed. Especially for WMNs including wireless communication and mobile clients, the testing in a real test-bed is time-consuming and expen- sive. External interferences can occur and make debugging and performance evaluation difficult. Additionally, real-world test-beds usually only support a limited number of test topologies and wireless clients and rarely provide the possibility for repeatable experiments with mobile clients. For this reason, we developed VirtualMesh, a new WMN evaluation framework providing a virtual wireless network, which can be used for network protocol and application development before considering a real hardware test-bed. Its architecture offers the testing of real communi- cation software including the operating system with the original network stack in a controlled environment. The wireless communication is handled by a real-time network emulation, which can imitate complex network scenarios in an inexpensive way. VirtualMesh captures the real network traffic through a virtual wireless interface at the mesh clients and redirects it to a wire- less model based on the OMNeT++ network simulator. The simulator, which is responsible for the wireless emulation, computes the node connectivity and packet latency and forwards the traffic to the destination nodes accordingly. To be able to imitate a truly dynamic network en- vironment, which even allow the reconfiguration of wireless parameters by routing protocols or applications, a sophisticated mechanism in VirtualMesh allows the corresponding adaptation of the wireless settings inside the simulation model during emulation run-time. In our experiments, VirtualMesh has proven to be very flexible and scalable in the network scenario. It is able to perfectly imitate the throughput behaviour in a WMN and only introduces a small packet delay mainly caused by the distributed emulation setup. VirtualMesh has therefore proven to be a valuable tool for protocol and application developers to test their real-world implementation in a controllable environment prior to the final development. i Acknowledgement First of all, I would like to express my gratitude to Prof. Dr. Torsten Braun for giving me the possibility to do this work in his ‘Computer Networks and Distributed Systems’ research group. He has always been patient and supportive during the course of this Master thesis and his pre- sentation of VirtualMesh on the OMNeT++ Workshop in Rome last year was very encouraging for me. Special thanks also to my thesis advisor Thomas Staub who spent much effort in shaping VirtualMesh for scientific publication what resulted in two released papers. Furthermore, I’m very thankful for his patience and believe in VirtualMesh as well as his assistance in polishing my thesis. Many thanks also to my study friends, especially Daniel Balsiger, Philipp Bunge, David Gurtner, Michael Lustenberger, Stefan Ott, and Anselm Strauss, always willing to listen to my problems when I approached them with technical questions or asked for their opinions. I learnt a lot of details and procedures in our countless discussions. My biggest thanks go to my girlfriend Sylvia Low, my whole family, and long-time friends, who always believed in me and supported me, even I often neglected them for my study. This effort would not have been possible without you. Reto Gantenbein June 2010 iii Contents 1 Introduction1 1.1 Short History of Wireless Networking......................1 1.2 Wireless Mesh Networks.............................2 1.3 Computer Network Evaluation..........................3 1.4 Motivation.....................................4 1.5 Document Structure................................5 2 Related Work7 2.1 Computer Simulations..............................7 2.1.1 Network Simulation Basics........................8 2.1.2 Radio Propagation Models........................9 2.1.3 The OMNeT++ Network Simulation Framework............ 11 2.2 Network Emulation................................ 14 2.2.1 Emulation Basics............................. 14 2.2.2 Simulation Requirements for Real-Time Emulation........... 15 2.2.3 Emulation-based Wireless Network Evaluation............. 17 2.3 Real-world Wireless Network Test-beds..................... 20 2.3.1 Examples of Real-world Test-beds.................... 21 2.3.2 ADAM - A Linux Environment for WMN Research.......... 21 2.4 Operating System Virtualization......................... 22 2.4.1 Platform Virtualization Overview.................... 22 2.4.2 Virtualization and Network Evaluation.................. 24 3 VirtualMesh: An Approach of Wireless Network Emulation 25 3.1 VirtualMesh Architecture and Design...................... 25 3.2 Communication Protocol for the Wireless Emulation.............. 28 3.2.1 Protocol Messages............................ 29 3.2.2 Message Flow of the Emulation Protocol................ 31 3.3 Virtualization in VirtualMesh........................... 31 4 VirtualMesh: Client Implementation 33 4.1 Client Architecture and Design.......................... 33 4.2 vif-Tools...................................... 35 4.2.1 libvif - Virtual Interface Library..................... 36 v 4.2.2 vifctl - Virtual Interface Control..................... 39 4.3 iwconnect..................................... 40 4.4 Virtual Interface Configuration.......................... 41 4.4.1 Linux Wireless Tools........................... 41 4.4.2 Changing Simulation Parameters from the Wireless Node........ 42 5 VirtualMesh: Wireless Simulation Server 45 5.1 WlanModel Components............................. 45 5.1.1 EmulationRTScheduler.......................... 46 5.1.2 ProtocolHandler............................. 48 5.1.3 NodeManager............................... 48 5.1.4 VirtualHost................................ 48 5.1.5 VifBackend................................ 49 5.1.6 RAWEtherFrame............................. 49 5.1.7 IEEE80211NicAdhoc.......................... 49 5.1.8 IEEE80211Radio............................. 50 5.1.9 ChannelControl.............................. 50 5.1.10 Mobility................................. 51 5.1.11 Simulation Configuration......................... 51 5.2 WlanModel Message Flow............................ 51 5.2.1 Node Registration............................ 52 5.2.2 Wireless Traffic Processing........................ 52 5.2.3 Wireless Parameter Modification..................... 53 6 Evaluation 57 6.1 VirtualMesh Test Configuration......................... 58 6.2 Functional Evaluation: ADAM.......................... 59 6.3 Performance Evaluation: Round-Trip Time................... 60 6.3.1 Test Procedure.............................. 61 6.3.2 Infrastructure Network Latency..................... 61 6.3.3 Wireless Emulation Accuracy...................... 63 6.3.4 WlanModel Scalability.......................... 67 6.4 Performance Evaluation: Bandwidth....................... 69 6.4.1 Test Procedure.............................. 70 6.4.2 VirtualMesh Throughput......................... 70 7 Conclusion and Future Work 73 7.1 Conclusion.................................... 73 7.2 Future Work.................................... 74 A Evaluation Setup 77 A.1 Test Machines................................... 77 A.2 OMNeT++ Configuration for the WlanModel.................. 78 A.3 How to create a Xen image with ADAM’s image-tool?............. 79 vi B Evaluation Results 81 B.1 Infrastructure Evaluation Results......................... 81 B.2 VirtualMesh Evaluation Results......................... 84 B.3 OMNeT++/INET Simulation Results....................... 88 List of Acronyms 91 List of Figures 95 List of Tables 97 Bibliography 101 vii Chapter 1 Introduction Nowadays, nearly all of us are regularly using devices which can connect to a network, without requiring a wire. These can be mobile phones, Personal Digital Assistants (PDA), net-books, laptops, or even multimedia players. One get more and more used that every portable device can communicate and that it provides the same services as our wired computer, gaming console, or phone. However, developing and evaluating services for such an environment requires sophisti- cated tools for debugging and testing. This Master thesis introduces and evaluates VirtualMesh, a flexible and modular framework for testing new network protocols, applications or even entire network architectures, with focus on wireless mesh networking. This introductory chapter is divided into several sections approaching the wider domain, of which this thesis is part. After a sum up of the important milestones in the history of wireless networking (Section 1.1),
Recommended publications
  • Auditing Overhead, Auditing Adaptation, and Benchmark Evaluation in Linux Lei Zeng1, Yang Xiao1* and Hui Chen2
    SECURITY AND COMMUNICATION NETWORKS Security Comm. Networks 2015; 8:3523–3534 Published online 4 June 2015 in Wiley Online Library (wileyonlinelibrary.com). DOI: 10.1002/sec.1277 RESEARCH ARTICLE Auditing overhead, auditing adaptation, and benchmark evaluation in Linux Lei Zeng1, Yang Xiao1* and Hui Chen2 1 Department of Computer Science, The University of Alabama, Tuscaloosa 35487-0290, AL, U.S.A. 2 Department of Mathematics and Computer Science, Virginia State University, Petersburg 23806, VA, U.S.A. ABSTRACT Logging is a critical component of Linux auditing. However, our experiments indicate that the logging overhead can be significant. The paper aims to leverage the performance overhead introduced by Linux audit framework under various us- age patterns. The study on the problem leads to an adaptive audit-logging mechanism. Many security incidents or other im- portant events are often accompanied with precursory events. We identify important precursory events – the vital signs of system activity and the audit events that must be recorded. We then design an adaptive auditing mechanism that increases or reduces the type of events collected and the frequency of events collected based upon the online analysis of the vital-sign events. The adaptive auditing mechanism reduces the overall system overhead and achieves a similar level of protection on the system and network security. We further adopt LMbench to evaluate the performance of key operations in Linux with compliance to four security standards. Copyright © 2015 John Wiley & Sons, Ltd. KEYWORDS logging; overhead; Linux; auditing *Correspondence Yang Xiao, Department of Computer Science, The University of Alabama, 101 Houser Hall, PO Box 870290, Tuscaloosa 35487-0290, AL, U.S.A.
    [Show full text]
  • Adecuándose a La Norma ISO/IEC 1799 Mediante Software Libre
    Adecu´andose a la norma ISO/IEC 1799 mediante software libre * Jose Fernando Carvajal Vi´on Grupo de Inter´esen Seguridad de ATI (ATI-GISI) <[email protected]> Javier Fern´andez-Sanguino Pe˜na Grupo de Inter´esen Seguridad de ATI (ATI-GISI) <[email protected]> 28 de octubre de 2002 Resumen Este art´ıculo muestra la forma de adecuar a la norma ISO/IEC 17999 un sistema de informaci´onimplementado en un servidor cuyo software de sistema operativo se basa en alguna alternativa de software Libre y c´odigo abierto. La utilizaci´onde una distribuci´onDebian GNU/Linux sirve como base a la que a˜nadir las utilidades y paquetes necesarios para conseguir el objetivo. ´Indice 1. Introducci´on 1 2. Objetivo y Asunciones 2 3. Cumplimiento de la Norma ISO/IEC 17799 en GNU/Linux 4 4. Conclusiones 4 5. Referencias 5 6. Referencias de herramientas 7 7. Referencias Generales 11 *Copyright (c) 2002 Jose Fernando Carvajal y Javier Fern´andez-Sanguino. Se otorga permiso para copiar, distribuir y/o modificar este documento bajo los t´erminos de la Licencia de Documen- taci´onLibre GNU, Versi´on1.1 o cualquier otra versi´onposterior publicada por la Free Software Foundation. Puede consultar una copia de la licencia en: http://www.gnu.org/copyleft/fdl.html 1 1. Introducci´on De forma general para mantener la seguridad de los activos de informaci´on se deben preservar las caracter´ısticas siguientes [1]. 1. Confidencialidad: s´oloel personal o equipos autorizados pueden acceder a la informaci´on. 2. Integridad: la informaci´on y sus m´etodos de proceso son exactos y completos.
    [Show full text]
  • Building Embedded Linux Systems ,Roadmap.18084 Page Ii Wednesday, August 6, 2008 9:05 AM
    Building Embedded Linux Systems ,roadmap.18084 Page ii Wednesday, August 6, 2008 9:05 AM Other Linux resources from O’Reilly Related titles Designing Embedded Programming Embedded Hardware Systems Linux Device Drivers Running Linux Linux in a Nutshell Understanding the Linux Linux Network Adminis- Kernel trator’s Guide Linux Books linux.oreilly.com is a complete catalog of O’Reilly’s books on Resource Center Linux and Unix and related technologies, including sample chapters and code examples. ONLamp.com is the premier site for the open source web plat- form: Linux, Apache, MySQL, and either Perl, Python, or PHP. Conferences O’Reilly brings diverse innovators together to nurture the ideas that spark revolutionary industries. We specialize in document- ing the latest tools and systems, translating the innovator’s knowledge into useful skills for those in the trenches. Visit con- ferences.oreilly.com for our upcoming events. Safari Bookshelf (safari.oreilly.com) is the premier online refer- ence library for programmers and IT professionals. Conduct searches across more than 1,000 books. Subscribers can zero in on answers to time-critical questions in a matter of seconds. Read the books on your Bookshelf from cover to cover or sim- ply flip to the page you need. Try it today for free. main.title Page iii Monday, May 19, 2008 11:21 AM SECOND EDITION Building Embedded Linux SystemsTomcat ™ The Definitive Guide Karim Yaghmour, JonJason Masters, Brittain Gilad and Ben-Yossef, Ian F. Darwin and Philippe Gerum Beijing • Cambridge • Farnham • Köln • Sebastopol • Taipei • Tokyo Building Embedded Linux Systems, Second Edition by Karim Yaghmour, Jon Masters, Gilad Ben-Yossef, and Philippe Gerum Copyright © 2008 Karim Yaghmour and Jon Masters.
    [Show full text]
  • Praise for the Official Ubuntu Book
    Praise for The Official Ubuntu Book “The Official Ubuntu Book is a great way to get you started with Ubuntu, giving you enough information to be productive without overloading you.” —John Stevenson, DZone Book Reviewer “OUB is one of the best books I’ve seen for beginners.” —Bill Blinn, TechByter Worldwide “This book is the perfect companion for users new to Linux and Ubuntu. It covers the basics in a concise and well-organized manner. General use is covered separately from troubleshooting and error-handling, making the book well-suited both for the beginner as well as the user that needs extended help.” —Thomas Petrucha, Austria Ubuntu User Group “I have recommended this book to several users who I instruct regularly on the use of Ubuntu. All of them have been satisfied with their purchase and have even been able to use it to help them in their journey along the way.” —Chris Crisafulli, Ubuntu LoCo Council, Florida Local Community Team “This text demystifies a very powerful Linux operating system . in just a few weeks of having it, I’ve used it as a quick reference a half dozen times, which saved me the time I would have spent scouring the Ubuntu forums online.” —Darren Frey, Member, Houston Local User Group This page intentionally left blank The Official Ubuntu Book Sixth Edition This page intentionally left blank The Official Ubuntu Book Sixth Edition Benjamin Mako Hill Matthew Helmke Amber Graner Corey Burger With Jonathan Jesse, Kyle Rankin, and Jono Bacon Upper Saddle River, NJ • Boston • Indianapolis • San Francisco New York • Toronto • Montreal • London • Munich • Paris • Madrid Capetown • Sydney • Tokyo • Singapore • Mexico City Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks.
    [Show full text]
  • Mode D'emploi
    Toujours là pour vous aider Enregistrez votre produit et obtenez de l'assistance sur le site www.philips.com/support AW2000 Des questions ? Contactez Philips Mode d'emploi Table des matières Français 1 Important 2 7 Informations sur le produit 26 Spécificités 26 Sécurité 2 Avertissement 3 8 Dépannage 27 2 Votre récepteur Hi-Fi sans fil 4 Introduction 4 9 Annexe : Signification des Contenu de l'emballage 4 couleurs du voyant 29 Autres éléments nécessaires... 4 Présentation de l'unité principale 5 3 Préparation 6 Téléchargez Philips AirStudio sur votre smartphone ou vos tablettes 6 Connexion à un système d'enceintes existant 7 Connectez l'alimentation électrique et allumez l'appareil 8 4 Connexion de votre AW2000 au réseau Wi-Fi domestique 9 Option 1 : configuration de la connexion sans fil à un routeur autre que WPS par l'intermédiaire d'un appareil iOS 10 Option 2 : configuration par l'intermédiaire d'un routeur Wi-Fi autre que WPS et d'un appareil Android 12 Option 3 : configuration de la connexion sans fil à un routeur WPS 14 Option 4 : configuration de la connexion filaire via un câble Ethernet 16 5 Lecture 17 Diffusez le son audio sur votre AW2000 17 Écoutez des stations de radio Internet sur votre AW2000 20 Lecture à partir d'un appareil externe 23 6 Mise à niveau du micrologiciel 24 FR 1 g N'obstruez pas les orifices de ventilation. 1 Important Installez l'appareil conformément aux consignes du fabricant. h Ne retirez pas le boîtier de l'appareil. i L'appareil ne doit pas être exposé Sécurité aux fuites goutte à goutte ou aux éclaboussures, à la pluie ou à l'humidité.
    [Show full text]
  • The Official Ubuntu Book
    Praise for Previous Editions of The Official Ubuntu Book “The Official Ubuntu Book is a great way to get you started with Ubuntu, giving you enough information to be productive without overloading you.” —John Stevenson, DZone book reviewer “OUB is one of the best books I’ve seen for beginners.” —Bill Blinn, TechByter Worldwide “This book is the perfect companion for users new to Linux and Ubuntu. It covers the basics in a concise and well-organized manner. General use is covered separately from troubleshooting and error-handling, making the book well-suited both for the beginner as well as the user that needs extended help.” —Thomas Petrucha, Austria Ubuntu User Group “I have recommended this book to several users who I instruct regularly on the use of Ubuntu. All of them have been satisfied with their purchase and have even been able to use it to help them in their journey along the way.” —Chris Crisafulli, Ubuntu LoCo Council, Florida Local Community Team “This text demystifies a very powerful Linux operating system . In just a few weeks of having it, I’ve used it as a quick reference a half-dozen times, which saved me the time I would have spent scouring the Ubuntu forums online.” —Darren Frey, Member, Houston Local User Group This page intentionally left blank The Official Ubuntu Book Seventh Edition This page intentionally left blank The Official Ubuntu Book Seventh Edition Matthew Helmke Amber Graner With Kyle Rankin, Benjamin Mako Hill, and Jono Bacon Upper Saddle River, NJ • Boston • Indianapolis • San Francisco New York • Toronto • Montreal • London • Munich • Paris • Madrid Capetown • Sydney • Tokyo • Singapore • Mexico City Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks.
    [Show full text]
  • Securing Linux
    466_HTC_Linux_FM.qxd 10/2/07 10:05 AM Page iii How to Cheat at Securing Linux Mohan Krishnamurthy Eric S. Seagren Raven Alder Aaron W. Bayles Josh Burke Skip Carter Eli Faskha 466_HTC_Linux_FM.qxd 10/2/07 10:05 AM Page iv Elsevier, Inc., the author(s), and any person or firm involved in the writing, editing, or production (collectively “Makers”) of this book (“the Work”) do not guarantee or warrant the results to be obtained from the Work. There is no guarantee of any kind, expressed or implied, regarding the Work or its contents.The Work is sold AS IS and WITHOUT WARRANTY.You may have other legal rights, which vary from state to state. In no event will Makers be liable to you for damages, including any loss of profits, lost savings, or other incidental or consequential damages arising out from the Work or its contents. Because some states do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you. You should always use reasonable care, including backup and other appropriate precautions, when working with computers, networks, data, and files. Syngress Media®, Syngress®,“Career Advancement Through Skill Enhancement®,”“Ask the Author UPDATE®,” and “Hack Proofing®,” are registered trademarks of Elsevier, Inc.“Syngress:The Definition of a Serious Security Library”™,“Mission Critical™,” and “The Only Way to Stop a Hacker is to Think Like One™” are trademarks of Elsevier, Inc. Brands and product names mentioned in this book are trademarks or service marks of their respective companies. PUBLISHED BY Syngress Publishing, Inc.
    [Show full text]
  • Linux Auditing: Overhead and Adaptation
    IEEE ICC 2015 - Communication and Information Systems Security Symposium 1 Linux Auditing: Overhead and Adaptation Lei Zeng, Yang Xiao* Hui Chen Department of Computer Science, Department of Mathematics and The University of Alabama, Computer Science, Tuscaloosa, AL 35487-0290 USA Virginia State University, Email: [email protected] Petersburg, VA 23806 USA *Prof. Yang Xiao is the corresponding author Abstract— Logging is a critical component of Linux auditing. The Common Criteria is closely related to the Orange Book. The experiments indicate that the logging overhead can be Its goal is to establish a guideline for developing and significant. The paper aims to leverage the performance evaluating computer products in regards to its security overhead introduced by Linux audit framework under various features. The Common Criteria concentrates on the security usage patterns. The study on the problem leads an adaptive audit logging mechanism. The adaptive auditing mechanism reduces threads from human activities. It reiterates the audit the overall system overhead and achieves a similar level of requirement for secure computer systems. Logging is essential protection on the system and network security. to meet the requirement. Although these standards recognize the importance of auditing, the focus is obviously placed in Index items: logging, overhead, Linux, auditing; bookkeeping audit trail/log, which is in fact the system activity log. In regard to the logging functionality of computer systems, I. INTRODUCTION audit information must be recorded and protected selectively UDITING in operating systems (OSs) is necessary to [1, 2, 3, 4]. It is the logging functionality that keeps and A achieve network and system security.
    [Show full text]
  • How to Cheat at Configuring Open Source Security Tools
    436_XSS_FM.qxd 4/20/07 1:18 PM Page ii 441_HTC_OS_FM.qxd 4/12/07 1:32 PM Page i Visit us at www.syngress.com Syngress is committed to publishing high-quality books for IT Professionals and deliv- ering those books in media and formats that fit the demands of our customers. We are also committed to extending the utility of the book you purchase via additional mate- rials available from our Web site. SOLUTIONS WEB SITE To register your book, visit www.syngress.com/solutions. Once registered, you can access our [email protected] Web pages. There you may find an assortment of value- added features such as free e-books related to the topic of this book, URLs of related Web sites, FAQs from the book, corrections, and any updates from the author(s). ULTIMATE CDs Our Ultimate CD product line offers our readers budget-conscious compilations of some of our best-selling backlist titles in Adobe PDF form. These CDs are the perfect way to extend your reference library on key topics pertaining to your area of expertise, including Cisco Engineering, Microsoft Windows System Administration, CyberCrime Investigation, Open Source Security, and Firewall Configuration, to name a few. DOWNLOADABLE E-BOOKS For readers who can’t wait for hard copy, we offer most of our titles in downloadable Adobe PDF form. These e-books are often available weeks before hard copies, and are priced affordably. SYNGRESS OUTLET Our outlet store at syngress.com features overstocked, out-of-print, or slightly hurt books at significant savings. SITE LICENSING Syngress has a well-established program for site licensing our e-books onto servers in corporations, educational institutions, and large organizations.
    [Show full text]
  • Construcción De Routers Inalámbricos Para Monitorizar Calidad De Servicio
    Facultad de Ingenier´ıa - Universidad de la Republica´ Proyecto de grado Construcci´onde routers inal´ambricos para monitorizar calidad de servicio Autores: Supervisores: Johnatan Stanley Galli Mat´ıasRichart Guti´errez Nicol´asSantiago Puppo Perna Eduardo Gramp´ın Castro Instituto de Computaci´on 9 de julio de 2015 “Confine yourself to observing and you always miss the point of your life. The object can be stated this way: Live the best life you can. Life is a game whose rules you learn if you leap into it and play it to the hilt. Otherwise, you are caught off balance, continually surprised by the shifting play. Non-players often whine and complain that luck always passes them by. They refuse to see that they can create some of their own luck. Darwi Odrade - Chapterhouse: Dune" Frank Herbert (\Lim´ıtatea observar y siempre perder´asel sentido de tu vida. Se puede poner de esta manera: Vive la mejor vida que puedas. La vida es un juego cuyas reglas aprendes si saltas a ella y la juegas a fondo. De lo contrario, te encontrar´asen una inestabilidad constante, sorprendi´endote continuamente de los cambios del juego. Quienes no juegan, a menudo se quejan de que la suerte les pasa por al lado. Se niegan a ver que pueden crear un poco de su propia suerte. Darwi Odrade - Dune: Casa Capitular") Resumen Las redes inal´ambricas 802.11, conocidas com´unmente como redes \Wi-Fi", se enfrentan a una gran variedad de problemas de se~naly cobertura. En este proyecto se construye una herramienta que monitorea las redes inal´ambricas, brindando diversa informaci´onde las mismas, teniendo como objetivos centrales entender sus problemas y analizar su funcionamiento, permitiendo lograr una mejor planificaci´on.
    [Show full text]
  • Locks and Raspberries: a Comparative Study of Single-Board Computers for Access Control
    UPTEC F 16013 Examensarbete 30 hp April 2016 Locks and raspberries: a comparative study of single-board computers for access control Andreas Romin Abstract Locks and raspberries: a comparative study of single-board computers for access control Andreas Romin Teknisk- naturvetenskaplig fakultet UTH-enheten Over the past decade, there has been a drastic development of the single-board computer market. These computers are now in a position where they can compete Besöksadress: with classic embedded hardware. Such fast improvement has led ASSA ABLOY, a Ångströmlaboratoriet Lägerhyddsvägen 1 well-known lock and security company, to see value in replacing some of their Hus 4, Plan 0 existing access control hardware with an off-the-shelf single-board computer. Therefore, a comparative study of single-board computers was performed for this Postadress: company. Some of the compared properties were price, performance (i.e. CPU, Box 536 751 21 Uppsala memory, USB, network, operating temperature and power consumption) and other relevant information such as operating systems, open/closed source hardware and Telefon: future availability. Information and testing data from nine different computers was 018 – 471 30 03 compiled and analyzed. This data was then used to determine the best-suited Telefax: candidates that could possibly replace the current access control hardware. They 018 – 471 30 00 were chosen in accordance to three different categories: performance, power consumption and open source hardware. The ODROID C1+, the Raspberry Pi A+ Hemsida: and the A20 OLinuXino Lime2 proved to be the best candidates for these three http://www.teknat.uu.se/student categories respectively. Furthermore, it was also concluded that the company behind a computer is just as important as the computer itself, where the best company in this study was determined to be Olimex.
    [Show full text]
  • SUSE Linux Enterprise Server 11 SP4 Administration Guide Administration Guide SUSE Linux Enterprise Server 11 SP4
    SUSE Linux Enterprise Server 11 SP4 Administration Guide Administration Guide SUSE Linux Enterprise Server 11 SP4 Publication Date: September 24, 2021 SUSE LLC 1800 South Novell Place Provo, UT 84606 USA https://documentation.suse.com Copyright © 2006– 2021 SUSE LLC and contributors. All rights reserved. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or (at your option) version 1.3; with the Invariant Section being this copyright notice and license. A copy of the license version 1.2 is included in the section entitled “GNU Free Documentation License”. For SUSE trademarks, see http://www.suse.com/company/legal/ . All other third party trademarks are the property of their respective owners. A trademark symbol (®, ™ etc.) denotes a SUSE or Novell trademark; an asterisk (*) denotes a third party trademark. All information found in this book has been compiled with utmost attention to detail. However, this does not guarantee complete accuracy. Neither SUSE LLC, its aliates, the authors nor the translators shall be held liable for possible errors or the consequences thereof. Contents About This Guide xix 1 Available Documentation xx 2 Feedback xxii 3 Documentation Conventions xxii I SUPPORT AND COMMON TASKS 1 1 YaST Online Update 2 1.1 The Online Update Dialog 3 KDE Interface (Qt) 3 • GNOME Interface (GTK) 4 1.2 Installing Patches 6 1.3 Automatic Online Update 7 2 Gathering System Information for Support 9 2.1 Collecting System Information with Supportconfig
    [Show full text]