Auditing Overhead, Auditing Adaptation, and Benchmark Evaluation in Linux Lei Zeng1, Yang Xiao1* and Hui Chen2

Total Page:16

File Type:pdf, Size:1020Kb

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. E-mail: [email protected] 1. INTRODUCTION systems that cannot meet the requirements of the higher category). Category C sets forth the requirements for dis- Auditing in operating systems is necessary to achieve net- cretionary protection. Category B defines the requirements work and system security. Linux auditing watches file ac- for mandatory protection. In category A, formal verifica- cesses, monitors system calls, records commands run by tion methods are required to assure that sensitive or classi- users, and security events, such as authentication, authori- fied data processed or stored by the system can be zation, and privilege elevation, which is achieved via log- protected by discretionary and mandatory security con- ging the system activities to events. Attributes of an trols. Categories B and C are further divided into a number event include the date, time, type, subject identity, result, of subclasses, organized hierarchically. For example, class and sensitivity labels. C1 requires the separation user and data enforcement of ac- The book [1] published by the US Department of cess limitation to the data on an individual basis, while a Defense in 1985 defines the requirement of logging for more finely grained discretionary access control character- auditing purpose. This book is often referred to as “the izes class C2 so that actions of users become accountable Orange Book,” which has been regarded as the security via auditing of security-related events, log-in procedures, requirements for the design and implementation of secure and resource isolation. computer systems and has a profound influence on the The Common Criteria is closely related to the Orange design of secure computer systems. The Orange Book Book. Its goal is to establish a guideline for developing divides its security criteria into four categories, D, C, B, and evaluating computer products in regard to its security and A, which are organized in a hierarchical manner such features. The Common Criteria concentrates on the secu- that category D has the lowest level of security require- rity threads from human activities. It reiterates the audit ments while category A has the highest level. Category D requirement for secure computer systems. Logging is es- stands for the minimal protection (i.e., the computer sential to meet the requirement. Although these standards Copyright © 2015 John Wiley & Sons, Ltd. 3523 Auditing overhead and auditing adaptation in Linux L. Zeng, Y. Xiao and H. Chen recognize the importance of auditing, the focus is obvi- The rest of the paper is organized as follows. In ously placed in bookkeeping audit trail/log, which is in fact Section 2, we introduce Linux audit framework. Section 3 the system activity log. presents the Linux benchmarks and Linux security stan- In regard to the logging functionality of computer sys- dards. In Section 4, we study overhead of Linux logging. tems, audit information must be recorded and protected We propose an adaptive mechanism and study the perfor- selectively [1–8]. It is the logging functionality that keeps mance of the proposed adaptive logging in Section 5. In and protects the audit information, which is often referred Section 6, we present an evaluation for Linux benchmarks. to as audit trails, audit data, logs, or logging data. The Finally, we conclude the paper in Section 7. criteria also indicates that identifications are needed for individual subjects and access information, such as iden- tities of accessing information, and their authorization of 2. LINUX AUDIT FRAMEWORK accessing the information is mediated [1]. Information of identification and authorization must be saved in Linux audit provides users with a way to analyze system computers, protected from attractors, and used when activities in great detail [9]. It does not, however, protect performing some security-relevant actions [1]. Thus, the users from attacks [9]. Instead, Linux audit helps users to responsible party can be traced via its actions related to track these issues and take security measures to prevent security, and the outcome of the actions can be assessed, them [9]. and this is essentially based on the logging data recorded Linux audit framework includes several components: on nonvolatile memory. auditd, auditctl, audit rules, aureport, ausearch, audispd, Linux audit framework [9] helps Linux meet many and autrace, as shown in Figure 1 [9]. government and industrial security standards, such as We explain the functions in Figure 1 as follows [9]: Controlled Access Protection Profile/Evaluation Assurance Level 4+ (CAPP/EAL4+) [10], Labeled Security Protec- • Auditd – The audit daemon writes the audit messages tion Profile (LSPP) [11], role-based access control (RBAC) that collected in the Linux kernel to disk or transfers [12], National Industrial Security Program Operating them to audispd. The configuration file, /etc/ Manual (NISPOM) [13], Federal Information Security sysconfig/auditd, controls how the audit daemon Management Act (FISMA) [14], payment card industry starts, and the configuration file, /etc/auditd.conf, con- (PCI) [15,16], and Director of Central Intelligence Direc- trols how the audit daemon functions once it starts. tive 6/3 (DCID 6/3) [17]. It is important to the adoption • Auditctl – The auditctl utility is responsible for kernel of Linux in mission critical environments to meet the settings, log generation parameters, and audit rules requirements of the security standards; otherwise, Linux that determine which events are tracked. cannot compete with other commercial operating systems, • Audit rules – Audit rules are contained in the file /etc/ such as IBM AIX and Windows Server. They have already audit.rules. The file is loaded when the system boots received certifications in many government and industrial and starts audit daemon. security standards. • Aureport – The aureport utility helps users to create a However, to the best of our knowledge, an important custom view of logged messages. question remains open: What is the performance overhead • Ausearch – Users can use the ausearch utility to induced by Linux audit framework under various traffic search some events with characteristics, such as keys, and usage patterns? Would recent development and devel- of the logged format in the log file. opment of high-throughput/high-bandwidth networks fur- • Audispd – The audit dispatcher daemon (audispd) dis- ther stress Linux audit framework? patches event messages to other applications instead In this paper, we first identify the important usage pat- of writing them to a disk. terns of Linux operating systems, and then, we design ex- periments to measure the overhead induced by the Linux audit framework in these usage patterns. The experiments inform the design of an adaptive auditing mechanism, which uses a set of selected but important type of events as the vital sign of system and network activity and uses the vital signs to adjust audit logging. In order to change the type of events logged, the frequency of events logged and the time-window intensive logging must be per- formed. The adoption achieves a low overhead in normal uses and at the same time provides the same amount of audit data sufficiently to accomplish an audit during critical events, such as system and network intrusion. We further adopt LMbench to evaluate the performance of key operations in Linux with compliance to four secu- rity standards. Figure 1. Linux audit framework [9]. 3524 Security Comm. Networks 2015; 8:3523–3534 © 2015 John Wiley & Sons, Ltd. DOI: 10.1002/sec L. Zeng, Y. Xiao and H. Chen Auditing overhead and auditing adaptation in Linux An audit event that is written to disk is shown in 3. LINUX BENCHMARKS AND Figure 2. SECURITY STANDARDS There are several keywords in an audit event record: type, msg, arch, syscall, success, exit, a0 to a3, items, ppid, 3.1. Synthetic benchmarks versus pid, auid, uid, gid, euid, suid, fsuid, tty, comm., exe, subj, application benchmarks key, item, name, inode, dev, mode, and ouid. We explain them in details as follows [9]: There are two kinds of benchmarks for operating systems: synthetic and application [18]. In application benchmarks, • The type field in the record denotes the type of events a common application is chosen to test the system perfor- recorded. mance. One drawback of application benchmarks is that • The msg field stores a message identification (ID).
Recommended publications
  • 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]
  • 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.
    [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]