Article Number: 549 Rating: Unrated Last Updated: Tue, May 30, 2017 at 11:02 AM

Size: px
Start display at page:

Download "Article Number: 549 Rating: Unrated Last Updated: Tue, May 30, 2017 at 11:02 AM"

Transcription

1 Configuring Your Server With A Static IP Address Article Number: 549 Rating: Unrated Last Updated: Tue, May 30, 2017 at 11:02 AM O ve r vie w This KB article shows you how to configure your Nagios server with a static IP address. This KB article applies to both RHEL and CentOS, there are separate sections for v 6.x and v 7.x. This applies to Nagios Fusion, Nagios Log Server, Nagios Network Analyzer and Nagios XI. There is also a dedicated section for each individual product that explains any specific changes that are required. You will need to perform these changes while logged in as the root user. Due to the nature of these changes it is recommended that you perform the actions while logged onto the c o ns o le of the server, performing the changes from an SSH session may disconnect you from the server. RHEL / C e nt O S 6.x Us ing s ys t e m-c o nf ig-ne t wo rk There's an easy way to perform these changes using system-config-network (a text based GUI). In your console session execute the command: system-config-network If you receive the following error: -bash: system-config-network: command not found Then you have two options: O p tio n 1) Install the package using yum (which assumes your server has internet access via it's DHCP address): yum install -y system-config-network-tui Once installed execute the command again and proceed with the next step. O p tio n 2 ) Manually configure address in config file. Please follow the steps in the "Manual IP Configuration" section that explains how to do this. When you execute system-config-network you will be prompted with a text based GUI: Press Ente r on De vic e c o nfig ura tio n You will presented with the "Select A Device" screen:

2 e th0 should be the default interface selected, press Ente r You will now be presented with the "Network Configuration" screen. Press the Do wn Arro w on your keyboard until you are in the Us e DHC P field Press the S p a c e b a r and the * will disappear Press the Do wn Arro w on your keyboard until you are in the StaS tic IP field Type in your IP Address Repeat these steps on the Netmask, Default gateway IP, Primary DNS Server, Secondary DNS Server fields The following screenshot is an example: When the O K button is selected press Ente r to save the changes You will be returned to the "Select A Device" screen. Press Ta b until the S a ve button is highlighted and then press Ente r You will be returned to the "Select Action" screen. Press Ta b until the S a ve &Q uit button is highlighted and then press Ente r Now you will need to take the interface "down" and then back "up" again using the following commands: ifdown eth0 ifup eth0 Execute these commands to check your changes have been applied and that they are working: ping -c 4

3 The important items in the output should be that the interface is in an UP state AND the ine t address is correct. If you wish to define an IPv6 address then you will need to follow the steps in the "Manually Configuring An IPv6 Address" section. Manual IP C onf igurat ion If you are unable to use system-config-network (a text based GUI) to configure your IP address then you will need to configure the interface in the text based configuration file for that interface. First you will need to identify the name of the network interface, type the following command: Here you can see the name of the interface is e th0 The config file for this interface will be in the file /etc/sysconfig/network-scripts/ifcfg-eth0 Open the vi editor using this command: vi /etc/sysconfig/network-scripts/ifcfg-eth0 When using the vi editor, to make changes press i on the keyboard first to enter insert mode. Press Esc to exit insert mode. The default configuration will appear something like: DEVICE=eth0 TYPE=Ethernet UUID=18b83e30-a b2e-99abc0c5decf NM_CONTROLLED=yes BOOTPROTO=dhcp HWADDR=00:0C:29:86:BB:B3 DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=yes IPV6INIT=no NAME="System eth0" The following lines need changing in the file: BOOTPROTO=dhcp

4 To: BOOTPROTO=none The following lines need to be added to the file (you will need to adjust them to your requirements): IPADDR= NETMASK= GATEWAY= DNS1= DNS2= USERCTL=no The final configuration would look like this: DEVICE=eth0 TYPE=Ethernet UUID=18b83e30-a b2e-99abc0c5decf NM_CONTROLLED=yes BOOTPROTO=none HWADDR=00:0C:29:86:BB:B3 DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=yes IPV6INIT=no NAME="System eth0" IPADDR= NETMASK= GATEWAY= DNS1= DNS2= USERCTL=no Save the changes in vi by typing :wq and pressing Ente r. Now you will need to take the interface "down" and then back "up" again using the following commands: ifdown eth0 ifup eth0 Execute these commands to check your changes have been applied and that they are working: ping -c 4 If you wish to define an IPv6 address then you will need to follow the steps in the "Manually Configuring An IPv6 Address" section.

5 Manually C onf iguring An IPv6 Addre s s If you need to use an IPv6 address then you will need to configure the interface in the text based configuration file for that interface First you will need to identify the name of the network interface, type the following command: Here you can see the name of the interface is e th0 The config file for this interface will be in the file /etc/sysconfig/network-scripts/ifcfg-eth0 Open the vi editor using this command: vi /etc/sysconfig/network-scripts/ifcfg-eth0 When using the vi editor, to make changes press i on the keyboard first to enter insert mode. Press Esc to exit insert mode. Assuming you already have defined a static IPv4 address, your configuration will appear something like: DEVICE=eth0 TYPE=Ethernet UUID=18b83e30-a b2e-99abc0c5decf NM_CONTROLLED=yes BOOTPROTO=none HWADDR=00:0C:29:86:BB:B3 DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=yes IPV6INIT=no NAME="System eth0" IPADDR= NETMASK= GATEWAY= DNS1= DNS2= USERCTL=no The following lines need changing in the file: IPV6INIT=no To: IPV6INIT=yes The following lines need to be added to the file (you will need to adjust them to your requirements): IPV6ADDR=2001:44b8:3132:25:10:25:40:60/64 IPV6_DEFAULTGW=2001:44b8:3132:25:10:25:1:253 DNS3=2001:44b8:3132:25:10:25:2:1 DNS4=2001:44b8:3132:25:10:25:2:2 The final configuration would look like this: DEVICE=eth0 TYPE=Ethernet UUID=18b83e30-a b2e-99abc0c5decf

6 NM_CONTROLLED=yes BOOTPROTO=none HWADDR=00:0C:29:86:BB:B3 DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=yes IPV6INIT=yes NAME="System eth0" IPADDR= NETMASK= GATEWAY= DNS1= DNS2= USERCTL=no IPV6ADDR=2001:44b8:3132:25:10:25:40:60/64 IPV6_DEFAULTGW=2001:44b8:3132:25:10:25:1:253 DNS3=2001:44b8:3132:25:10:25:2:1 DNS4=2001:44b8:3132:25:10:25:2:2 Save the changes in vi by typing :wq and pressing Ente r. Now you will need to take the interface "down" and then back "up" again using the following commands: ifdown eth0 ifup eth0 Execute these commands to check your changes have been applied and that they are working: ping6 -c 4 RHEL / C e nt O S 7.x Us ing nmt ui There's an easy way to perform these changes using nmtui (a text based GUI). In your console session execute the command: nmtui If you receive the following error: -bash: nmtui: command not found Then you have two options: O p tio n 1) Install the package using yum (which assumes your server has internet access via it's DHCP address):

7 yum install -y net-tools Once installed execute the command again and proceed with the next step. O p tio n 2 ) Manually configure address in config file. Please follow the steps in the "Manual IP Configuration" section that explains how to do this. When you execute nmtui you will be prompted with a text based GUI: Press Ente r on Ed it a c o nne c tio n You will presented with a list of devices: In this example e no is the default interface selected, press Ente r You will now be presented with the "Edit Connection" screen. Press Ta b on your keyboard until you are on <Auto ma tic > selector next to IPv4 C ONFIGURATIONO N Press Ente r, select Ma nua l from the list and press Ente r Press Ta b until you are on <S ho w> (for IPv4) and press Ente r More fields will be shown on the screen Press Ta b until you are on <Ad d > selector next to Ad d re s s e s Type a valid address with using CIDR notation, for example /16 Repeat these steps for the Gateway IP and DNS Servers fields If you want to define a s ta tic IP v6 a d d re s s, follow the same steps above for the IPv6 C ONFIGURATION O N section. The following screenshot is an example configuration:

8 Press Ta b until the O K button is selected press Ente r to save the changes You will be returned to the "Select A Device" screen. Press Ta b until the Q uit button is highlighted and then press Ente r Now you will need to take the interface "down" and then back "up" again using the following commands: ifdown eno ifup eno Execute these commands to check your changes have been applied and that they are working: ping -c 4

9 The important items in the output should be that the interface is in an UP state AND the ine t address is correct (and inet6 if defined). Manual IP C onf igurat ion If you are unable to use nmuti (a text based GUI) to configure your IP address then you will need to configure the interface in the text based configuration file for that interface. First you will need to identify the name of the network interface, type the following command: Here you can see the name of the interface is e no The config file for this interface will be in the file /etc/sysconfig/network-scripts/ifcfg-eno Open the vi editor using this command: vi /etc/sysconfig/network-scripts/ifcfg-eno When using the vi editor, to make changes press i on the keyboard first to enter insert mode. Press Esc to exit insert mode.

10 The default configuration will appear something like: TYPE=Ethernet BOOTPROTO=dhcp DEFROUTE=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no NAME=eno UUID=3de c-48cd-96bb-6a5a9c8aa91e DEVICE=eno PEERDNS=yes PEERROUTES=yes IPV6_PEERDNS=yes IPV6_PEERROUTES=yes IPV6_PRIVACY=no The following lines need c ha ng ing in the file: IP v4 To: BOOTPROTO=dhcp BOOTPROTO=none IP v6 To: IPV6_AUTOCONF=yes IPV6_AUTOCONF=no The following lines need re mo ving from the file: IP v4 PEERDNS=yes PEERROUTES=yes IP v6 IPV6_PEERDNS=yes IPV6_PEERROUTES=yes The following lines need to be a d d e d to the file (you will need to adjust them to your requirements): IP v4 IPADDR= PREFIX=16 GATEWAY= DNS1= DNS2= IP v6 IPV6ADDR=2001:44b8:3132:25:10:25:40:70/64 IPV6_DEFAULTGW=2001:44b8:3132:25:10:25:1:253 DNS3=2001:44b8:3132:25:10:25:2:1 DNS4=2001:44b8:3132:25:10:25:2:2 The final configuration would look like this: TYPE=Ethernet BOOTPROTO=none DEFROUTE=yes

11 IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=no IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no NAME=eno UUID=3de c-48cd-96bb-6a5a9c8aa91e DEVICE=eno IPV6_PRIVACY=no IPADDR= PREFIX=16 GATEWAY= DNS1= DNS2= IPV6ADDR=2001:44b8:3132:25:10:25:40:70/64 IPV6_DEFAULTGW=2001:44b8:3132:25:10:25:1:253 DNS3=2001:44b8:3132:25:10:25:2:1 DNS4=2001:44b8:3132:25:10:25:2:2 Save the changes in vi by typing :wq and pressing Ente r. Now you will need to take the interface "down" and then back "up" again using the following commands: ifdown eno ifup eno Execute these commands to check your changes have been applied and that they are working: ping -c 4 ping6 -c 4 Na gio s Fus io n S pe c if ic S e t t ings After changing the IP address on your server you should check that the Program URL is correct. Admin > System Config > Ma na g e S ys te m C o nfig

12 Ge ne ra l P ro g ra m S e tting s Make sure the P ro g ra m URL is correct. If a DNS entry is used make sure that this resolves to your new IP address. Na gio s Lo g S e r ve r S pe c if ic S e t t ings After changing the IP address on your server you should check that the Interface URL is correct. Administration > General > Glo b a l S e tting s Make sure the Inte rfa c e URL is correct. If a DNS entry is used make sure that this resolves to your new IP address. In addition to this, on ALL nodes you need to check the following file has the correct IP addresses: /usr/local/nagioslogserver/var/cluster_hosts Na gio s Ne t wo r k Ana lyz e r S pe c if ic S e t t ings There are no additional changes required. Na gio s XI S pe c if ic S e t t ings After changing the IP address on your server you should check that the Program URL is correct. Admin > System Config > S ys te m S e tting s Ge ne ra l tab Make sure the P ro g ra m URL is correct. If a DNS entry is used make sure that this resolves to your new IP address. lo c a lho s t Ent r y I n /e t c /ho s t s It has been observed that sometimes the system-config-network or nmtui tool removes the localhost entries from the /etc/hosts file. Edit your /etc/hosts file and make sure there are localhost entries. For example: localhost.localdomain localhost.localdomain localhost4 localhost4.localdomain4 localhost xi-c6x-x64 ::1 localhost.localdomain localhost.localdomain localhost6 localhost6.localdomain6 localhost xi-c6x-x64 Tr o uble s ho o t ing After you change the IP address and reboot the server you find that the interface is in the DOWN state. The following line needs c ha ng ing in the config file: ONBOOT=no To: Fina l Tho ught s For any support related questions please visit the Nagios Support Forums at:

13 Posted by: tle a - Tue, Oct 11, 2016 at 12:00 AM. This article has been viewed times. Online URL:

Quick Start Guide. Neverfail HybriStor v2.3 on VMware Appliance

Quick Start Guide. Neverfail HybriStor v2.3 on VMware Appliance Quick Start Guide For HybriStor v2.3 on VMware Appliance, LLC has taken all reasonable care to ensure the information in this document is accurate at the date of publication. In relation to any information

More information

It is important to remember that an external worker needs all of the plugins installed on it so it can execute the checks that are handed to it.

It is important to remember that an external worker needs all of the plugins installed on it so it can execute the checks that are handed to it. Nagios XI - Mod-Gearman Queues and Workers Article Number: 484 Rating: 5/5 from 3 votes Last Updated: Thu, Jul 6, 2017 at 5:30 PM O ve r vie w The purpose of this article is to explain how queues work

More information

Article Number: 602 Rating: Unrated Last Updated: Tue, Jan 2, 2018 at 5:13 PM

Article Number: 602 Rating: Unrated Last Updated: Tue, Jan 2, 2018 at 5:13 PM NRDP - Installing NRDP From Source Article Number: 602 Rating: Unrated Last Updated: Tue, Jan 2, 2018 at 5:13 PM I ns t a lling NRDP Fr o m S o ur c e This document describes how to install Nagios Remote

More information

Article Number: 513 Rating: 5/5 from 1 votes Last Updated: Tue, Jul 19, 2016 at 10:09 PM

Article Number: 513 Rating: 5/5 from 1 votes Last Updated: Tue, Jul 19, 2016 at 10:09 PM Nagios XI - MySQL/MariaDB - Max Connections Article Number: 513 Rating: 5/5 from 1 votes Last Updated: Tue, Jul 19, 2016 at 10:09 PM O ve r vie w This KB article is about the MySQL / MariaDB database and

More information

Oracle Communication WebRTC Session Controller. Preparation Guide

Oracle Communication WebRTC Session Controller. Preparation Guide Oracle Communication WebRTC Session Controller Preparation Guide Edition 1.0 January 2014 Disclaimer This document contains proprietary information and is protected by copyright and other intellectual

More information

This is sometimes necessary to free up disk space on a volume that cannot have extra disk space easily added.

This is sometimes necessary to free up disk space on a volume that cannot have extra disk space easily added. Movin g /var/log/ Article Number: 473 Rating: Unrated Last Updated: Tue, Mar 29, 2016 at 5:56 PM O ve r vie w This KB article will walk you through the steps of moving the /var/log directory to a new disk/volume

More information

Article Number: 722 Rating: Unrated Last Updated: Thu, Jul 20, 2017 at 12:31 AM

Article Number: 722 Rating: Unrated Last Updated: Thu, Jul 20, 2017 at 12:31 AM Nagios XI - Using Scripts / Plugins With NCPA Article Number: 7 Rating: Unrated Last Updated: Thu, Jul 0, 017 at 1:31 AM O ve r vie w This KB article explains how to use external scripts / plugins with

More information

Oracle Communications WebRTC Session Controller. Preparation Guide

Oracle Communications WebRTC Session Controller. Preparation Guide Oracle Communications WebRTC Session Controller Preparation Guide Edition 1.0 February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

More information

Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0

Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0 Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0 May 3, 2018 100 Innovative Way - Suite 3322 Nashua, NH 03062 Tel. +1.888.630.PLEX (7539) www.plexxi.com Legal Notices

More information

Article Number: 38 Rating: Unrated Last Updated: Thu, Apr 28, 2016 at 9:49 PM

Article Number: 38 Rating: Unrated Last Updated: Thu, Apr 28, 2016 at 9:49 PM Nagios Log Server - Logs Not Searchable or Not Coming In Article Number: 38 Rating: Unrated Last Updated: Thu, Apr 28, 2016 at 9:49 PM O ve r vie w When running a query in a dashboard, logs are not showing

More information

Network Configuration for Cisco UCS Director Baremetal Agent

Network Configuration for Cisco UCS Director Baremetal Agent Network Configuration for Cisco UCS Director Baremetal Agent This chapter contains the following sections: About the Network Configuration Options, page 1 Single Network for Management and PXE, page 1

More information

About 1. Chapter 1: Getting started with centos 2. Remarks 2. Versions 2. Examples 2. Installation or Setup 2

About 1. Chapter 1: Getting started with centos 2. Remarks 2. Versions 2. Examples 2. Installation or Setup 2 centos #centos Table of Contents About 1 Chapter 1: Getting started with centos 2 Remarks 2 Versions 2 Examples 2 Installation or Setup 2 Documentation How To guide for CentOS 37 Credits 38 About You can

More information

This guide is broken up into several sections and covers different Linux distributions and non- Linux operating systems.

This guide is broken up into several sections and covers different Linux distributions and non- Linux operating systems. NRPE - How To Uninstall NRPE Article Number: 741 Rating: Unrated Last Updated: Fri, Aug 11, 2017 at 1:02 AM Unins t a lling NRPE This document describes how to unins ta ll NRPE that is installed from source.

More information

LIP for Windows Server Infrastructure Automation Via Ansible Devops Tool

LIP for Windows Server Infrastructure Automation Via Ansible Devops Tool LIP for Windows Server Infrastructure Automation Via Ansible Devops Tool This document provides the details about ansible automation for Windows server infrastructure. Author : Sangeetha Sangeetha@cloudnloud.com

More information

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Oded Nahum Principal Systems Engineer PLUMgrid EMEA November 2014 Page 1 Page 2 Table of Contents Table

More information

Article Number: 552 Rating: Unrated Last Updated: Sun, Nov 20, 2016 at 6:09 PM. This guide will show you how to integrate Nagios XI with ServiceNow.

Article Number: 552 Rating: Unrated Last Updated: Sun, Nov 20, 2016 at 6:09 PM. This guide will show you how to integrate Nagios XI with ServiceNow. Nagios XI - Integrating ServiceNow Article Number: 552 Rating: Unrated Last Updated: Sun, Nov 20, 2016 at 6:09 PM O ve r vie w This guide will show you how to integrate Nagios XI with ServiceNow. ServiceNow

More information

XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents

XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents XE2000/XE3000 (2U 19'' width unit) Power cord Support hardware for 19'' cabinet Prerequisites You need a computer equipped with Internet browser.

More information

Deploy Dual Stack CentOS 7 Instance in AWS

Deploy Dual Stack CentOS 7 Instance in AWS Deploy Dual Stack CentOS 7 Instance in AWS Lawrence E. Hughes Sixscape Communications Pte Ltd. 26 Oct 2017 This assumes you have already created an AWS account and a dual stack VPC. Click Launch Instance

More information

Link Gateway Initial Configuration Manual

Link Gateway Initial Configuration Manual Link Gateway Initial Configuration Manual Copyright 2016 NetLinkz. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated

More information

Argument 1 = A number (0, 1, 2, 3) that will be used as the exit code the script will exit with (this is how Nagios determines the status)

Argument 1 = A number (0, 1, 2, 3) that will be used as the exit code the script will exit with (this is how Nagios determines the status) Nagios XI - Using Scripts / Plugins With NSClient++ Article Number: 58 Rating: Unrated Last Updated: Wed, Jul 19, 017 at 11:59 PM O ve r vie w This KB article explains how to use external scripts / plugins

More information

INSTALLATION RUNBOOK FOR Triliodata + TrilioVault

INSTALLATION RUNBOOK FOR Triliodata + TrilioVault INSTALLATION RUNBOOK FOR Triliodata + TrilioVault Application Type: [Backup and disaster recovery] Application Version: [2.1] MOS Version: [7.0] OpenStack version: [Kilo] Content Document History 1 Introduction

More information

Article Number: 77 Rating: 4.8/5 from 4 votes Last Updated: Mon, Feb 27, 2017 at 5:54 PM

Article Number: 77 Rating: 4.8/5 from 4 votes Last Updated: Mon, Feb 27, 2017 at 5:54 PM Nagios XI - SNMP Trap Tutorial Article Number: 77 Rating: 4.8/5 from 4 votes Last Updated: Mon, Feb 27, 2017 at 5:54 PM O ve r vie w This document describes how SNMP Traps work and integrate with Nagios

More information

VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7]

VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7] Alternate Titles: APACHE V-HOST SETUP Author: Muhammad Zeeshan Bhatti [LPI, VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7] (http://zeeshanbhatti.com) (admin@zeeshanbhatti.com) APACHE V-HOST SETUP [root@zeeshanbhatti

More information

Purpose. Target Audience. Windows Machine Requirements. Windows Server Core (No Desktop) Nagios XI. Monitoring Windows Using WMI

Purpose. Target Audience. Windows Machine Requirements. Windows Server Core (No Desktop) Nagios XI. Monitoring Windows Using WMI Purpose This document describes how to monitor Windows machines with Nagios XI using Windows Management Instrumentation (WMI). WMI allows for agentless monitoring of Windows machines which without having

More information

This document is intended for use by Nagios Administrators that want to use Slack for notifications.

This document is intended for use by Nagios Administrators that want to use Slack for notifications. Purpose This document describes how integrate the Slack messaging platform with. This integration will allow to send notifications to Slack channels, enabling teams to see the health of their devices monitored

More information

Linux Networking. How Networking Works Configuring Networking in Linux Using system-config-network Network debugging Wireless networking IPv6

Linux Networking. How Networking Works Configuring Networking in Linux Using system-config-network Network debugging Wireless networking IPv6 Linux Networking How Networking Works Configuring Networking in Linux Using system-config-network Network debugging Wireless networking IPv6 Iowa State University Information Technology Services Last update

More information

pulsarvmlite v Installation and Usage

pulsarvmlite v Installation and Usage pulsarvmlite v1.05 Installation and Usage Lawrence Toomey July 15 th 2015 lawrence.toomey@gmail.com Welcome to pulsarvmlite, a custombuilt 32bit virtual machine (VM) image for pulsar astronomers. Based

More information

Purpose. Target Audience. Solution Overview NCPA. Using NCPA For Passive Checks

Purpose. Target Audience. Solution Overview NCPA. Using NCPA For Passive Checks Using For Passive Checks Purpose This document describes how to configure the Nagios Cross Platform Agent () to send passive check results to Nagios XI or Nagios Core using Nagios Remote Data Processor

More information

Article Number: 802 Rating: 4/5 from 1 votes Last Updated: Wed, Mar 7, 2018 at 5:20 PM

Article Number: 802 Rating: 4/5 from 1 votes Last Updated: Wed, Mar 7, 2018 at 5:20 PM Nagios Core - Performance Graphs Using InfluxDB + Nagflux + Grafana + Article Number: 802 Rating: 4/5 from 1 votes Last Updated: Wed, Mar 7, 2018 at 5:20 PM Na gio s C o r e - Pe r f o r ma nc e G r a

More information

OK: {C: 68% free / 99.51GB total} 'C: free'= g; ; ;0; 'C: free %'=68%;20;10;0;100

OK: {C: 68% free / 99.51GB total} 'C: free'= g; ; ;0; 'C: free %'=68%;20;10;0;100 Disk Space Checks Article Number: 770 Rating: Unrated Last Updated: Mon, Nov 13, 2017 at 6:27 PM Dis k S pa c e C he c ks Disk space checks vary depending on the following factors: Disk Free Space - Percentage

More information

Installing Cisco StadiumVision Director Software from a DVD

Installing Cisco StadiumVision Director Software from a DVD Installing Cisco StadiumVision Director Software from a DVD First Published: May 29, 2012 Revised: August 2, 2012 This module describes how to install the Cisco StadiumVision Director Release 3.0 software

More information

RH-202. RedHat. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs)

RH-202. RedHat. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) RedHat RH-202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Download Full Version : https://killexams.com/pass4sure/exam-detail/rh-202 QUESTION: 159 Install the dialog-* Questions asking

More information

Newsreader virtual machines Technical Report NWR

Newsreader virtual machines Technical Report NWR Newsreader virtual machines Technical Report NWR-2014-4 Version FINAL Aitor Soroa 1, Enrique Fernández 2 1 University of Basque Country Donostia, Basque Country a.soroa@ehu.es 2 University of Basque Country

More information

ScopTEL TM IP PBX Software. DNS Server Configuration Wizard

ScopTEL TM IP PBX Software. DNS Server Configuration Wizard ScopTEL TM IP PBX Software DNS Server Configuration Wizard Network Module - ifconfig A newly installed server uses DHCP to get an IP address from a DHCP server on the network so make sure the eth0 interface

More information

Quick Note 52. Connecting to Digi Remote Manager Through Web Proxy. Digi Product Management February 2017

Quick Note 52. Connecting to Digi Remote Manager Through Web Proxy. Digi Product Management February 2017 Quick Note 52 Connecting to Digi Remote Manager Through Web Proxy Digi Product Management February 2017 Contents 1 Document Version... 3 2 Abstract... 3 3 Introduction... 3 4 Web Proxy Configuration...

More information

TECHNICAL NOTE. Technical Note. EMC Avamar Post-Installation Network Configuration Avamar 5.x, 6.x, or 7.x Server Software P/N REV 03

TECHNICAL NOTE. Technical Note. EMC Avamar Post-Installation Network Configuration Avamar 5.x, 6.x, or 7.x Server Software P/N REV 03 TECHNICAL NOTE EMC Avamar Post-Installation Network Configuration Avamar 5.x, 6.x, or 7.x Server Software Technical Note P/N 300-015-091 REV 03 December 23, 2014 This technical note describes how to change

More information

Quick Installation Guide for RHV/Ovirt

Quick Installation Guide for RHV/Ovirt Quick Installation Guide for RHV/Ovirt 2017 Chengdu Vinchin Technology Co. Ltd. All rights reserved. CONTENTS 1. Create New Virtual Machine...2 2. Install Backup Server ( as master)...5 3. Install Backup

More information

Cluster Computing Spring 2004 Paul A. Farrell

Cluster Computing Spring 2004 Paul A. Farrell Configuring & Tuning Cluster Networks Node connectivity Node visibility Networking Services Security Performance Enhancement Internet Protocol Stack and Parameters NIC/OS Driver Maximum Amount of Data

More information

QUICK START GUIDE Cisco Physical Access Manager Quick Start Guide, Release 1.4.1

QUICK START GUIDE Cisco Physical Access Manager Quick Start Guide, Release 1.4.1 QUICK START GUIDE Cisco Physical Access Manager Quick Start Guide, Release 1.4.1 1 Before You Begin 2 Installing the Appliance 3 Logging In to the Cisco Physical Access Manager 4 Entering the Initial Configuration

More information

Link Gateway ISO Installation Manual

Link Gateway ISO Installation Manual Link Gateway ISO Installation Manual Copyright 2016 NetLinkz. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

FUJITSU Software PRIMECLUSTER Clustering Base 4.4A00B. Installation Guide. Linux

FUJITSU Software PRIMECLUSTER Clustering Base 4.4A00B. Installation Guide. Linux FUJITSU Software PRIMECLUSTER Clustering Base 4.4A00B Installation Guide Linux J2UL-2097-03ENZ0(01) June 2017 Preface Purpose This manual explains how to install PRIMECLUSTER Clustering Base. Target Readers

More information

Ixia Developer KVM over CentOS deployment and configuration steps:

Ixia Developer KVM over CentOS deployment and configuration steps: Ixia Developer KVM over CentOS deployment and configuration steps: Document scope and high level Steps: The scope of this document is to present a straightforward workflow that will assist you while deploying

More information

Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3

Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3 Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3 Introduction Preparing the 3.2.X system for the upgrade Installing the BIG-IP version 9.2.3 software Licensing the software using

More information

This documentation can used to generate a request that can be submitted to any of these CA types.

This documentation can used to generate a request that can be submitted to any of these CA types. Nagios Core - Configuring SSL/TLS Article Number: 595 Rating: 5/5 from 1 votes Last Updated: Thu, Jul 20, 2017 at 8:09 PM C o nf igur ing S S L/TLS Fo r Na gio s C o r e This KB article describes how to

More information

There are separate firewall daemons for for IPv4 and IPv6 and hence there are separate commands which are provided below.

There are separate firewall daemons for for IPv4 and IPv6 and hence there are separate commands which are provided below. SNMP Trap - Firewall Rules Article Number: 87 Rating: 1/5 from 1 votes Last Updated: Tue, Dec 18, 2018 at 5:25 PM Fir e wa ll Rule s These steps explain how to check if the Operating System (OS) of the

More information

Offloading NDO2DB To Remote Server

Offloading NDO2DB To Remote Server Purpose This document is meant to show a step-by-step guide for offloading the NDO2DB daemon from the central server to an external, remote server. NDO2DB is an acronym of "Nagios Data Output To Database"

More information

Table of Contents 1 V3 & V4 Appliance Quick Start V4 Appliance Reference...3

Table of Contents 1 V3 & V4 Appliance Quick Start V4 Appliance Reference...3 Table of Contents 1 V & V4 Appliance Quick Start...1 1.1 Quick Start...1 1.2 Accessing Appliance Menus...1 1. Updating Appliance...1 1.4 Webmin...1 1.5 Setting Hostname IP Address...2 1.6 Starting and

More information

OpenNebula 4.8 Quickstart CentOS 6 and Xen

OpenNebula 4.8 Quickstart CentOS 6 and Xen OpenNebula 4.8 Quickstart CentOS 6 and Xen Release 4.8 OpenNebula Project August 12, 2014 CONTENTS 1 Package Layout 3 2 Step 1. Installation in the Frontend 5 2.1 1.1. Install the repo............................................

More information

CentOS 6.7 with Vault MySQL 5.1

CentOS 6.7 with Vault MySQL 5.1 CentOS 6.7 with Vault MySQL 5.1 OS Middleware Installation Web Server, MySQL and PHP Other Middleware Middleware Setup and Configuration Database PHP NetCommons2 Before Install Preparation Installation

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

Xcalenets Console Setup Guide. Xcalenets Console Setup Guide (Standalone version)

Xcalenets Console Setup Guide. Xcalenets Console Setup Guide (Standalone version) Xcalenets Console Setup Guide Xcalenets Console Setup Guide (Standalone version) 1 Content CONTENT... 2 Getting Started to Xcalenets Console Setup... 3 Account Level Introduction... 3 Login Console Setup...

More information

RHCE-PARTE-12 DHCPv6 SLAAC (StateLess Address AutoConfiguration) 1/5. Objetivo:

RHCE-PARTE-12 DHCPv6 SLAAC (StateLess Address AutoConfiguration) 1/5. Objetivo: Objetivo: RHCE-PARTE-12 DHCPv6 SLAAC (StateLess Address AutoConfiguration) 1/5 Configuración IPv4 server1.example.com y station1.example.com Para: enp0s3 Parámetros de conexión Ipv4: /etc/hosts: 192.168.1.150

More information

vsphere Host Profiles 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7

vsphere Host Profiles 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

Configure the Cisco DNA Center Appliance

Configure the Cisco DNA Center Appliance Review Cisco DNA Center Configuration Wizard Parameters, page 1 Configure Cisco DNA Center Using the Wizard, page 5 Review Cisco DNA Center Configuration Wizard Parameters When Cisco DNA Center configuration

More information

Backing Up And Restoring Your Nagios XI System

Backing Up And Restoring Your Nagios XI System Backing Up And Restoring Your System Purpose This document describes how to backup a installation and restore a installation from a previously made backup. Backups are an important aspect of administration

More information

Deploying Cisco UCS Central

Deploying Cisco UCS Central This chapter includes the following sections: Obtaining the Cisco UCS Central Software from Cisco, page 1 Using the Cisco UCS Central OVA File, page 2 Using the Cisco UCS Central ISO File, page 4 Logging

More information

Let us ping! First we will learn the Hello World of a networked machine.

Let us ping! First we will learn the Hello World of a networked machine. AN INTRODUCTION TO LINUX NETWORKING In this article, we ll explore networking under GNU/Linux. You ll find it interesting to manage the entire network through certain valid keystrokes known as commands.

More information

Red Hat Operating System Installation Tips

Red Hat Operating System Installation Tips APPENDIXA Date: 9/24/10 This appendix describes the recommended Red Hat operating system installation procedure in three parts and includes the following sections: Red Hat Installation Procedure, page

More information

How do I perform a backup and restore from a NOKIA IP VPN 10i to another NOKIA IP VPN 10i in the event of a hardware failure?

How do I perform a backup and restore from a NOKIA IP VPN 10i to another NOKIA IP VPN 10i in the event of a hardware failure? BACKUP AND RESTORE 1 (14) How do I perform a backup and restore from a NOKIA IP VPN 10i to another NOKIA IP VPN 10i in the event of a hardware failure? This document will demonstrate the backup process

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : RH-302 Title : Red Hat Certified Engineer on Redhat Enterprise Linux 5 (Labs) Vendors : RedHat Version

More information

MITEL PERFORMANCE ANALYTICS

MITEL PERFORMANCE ANALYTICS MITEL PERFORMANCE ANALYTICS RELEASE 2.3 PROBE INSTALLATION AND CONFIGURATION GUIDE NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel

More information

Deploy the ExtraHop Trace 6150 Appliance

Deploy the ExtraHop Trace 6150 Appliance Deploy the ExtraHop Trace 6150 Appliance Published: 2018-04-20 This guide explains how to install the rack-mounted ETA 6150 ExtraHop Trace appliances. System requirements This guide explains how to install

More information

Quick Start Guide for Vmware. Version 2.5 Vmware vsphere Instance

Quick Start Guide for Vmware. Version 2.5 Vmware vsphere Instance Quick Start Guide for Vmware Version 2.5 Vmware vsphere Instance CONTENTS 1. Introduction 1.1 Running Gemini appliance on Vmware vsphere 1.1.1 Supported Versions 1.1.2 System Requirement 1.1.3 Note on

More information

Supplies VLab pod 192 VMs shown above. Forum

Supplies VLab pod 192 VMs shown above. Forum Lab 4: Dynamic routing In this lab we will be using the Quagga package to implement dynamic routing across the three routers shown in the diagram below. Supplies VLab pod 192 VMs shown above Forum Use

More information

CCT-1301 MK2 USER MANUAL

CCT-1301 MK2 USER MANUAL denver-elect ronics. com CCT-1301 MK2 USER MANUAL www.facebook.com/denverelectronics ENG-1 1.Shutter 1 7 8 2 3 2.Speaker 3.ON/OFF 4.USB port 5.Micro SD card slot 6.Lens 4 7.Charging indicator light 8.Busy

More information

Article Number: 801 Rating: Unrated Last Updated: Tue, Mar 13, 2018 at 9:19 PM

Article Number: 801 Rating: Unrated Last Updated: Tue, Mar 13, 2018 at 9:19 PM Nagios Core - Performance Graphs Using PNP4Nagios Article Number: 801 Rating: Unrated Last Updated: Tue, Mar 13, 2018 at 9:19 PM Na gio s C o r e - Pe r f o r ma nc e G r a phs Us ing PNP4Na gio s This

More information

For additional installation and software ass istance, review the IBM UPS Manager ReadMe file and online help/manual.

For additional installation and software ass istance, review the IBM UPS Manager ReadMe file and online help/manual. IBM UPS Manager Release Notes IBM UPS Manager (version 01.14.0002) for Windows, R ed Hat Enterprise Linux (RHEL) x86 and x86_64 IBM UPS Manager (version 01.08.0003) Aix and Red Ha t Enterprise Linux (RHEL)PowerPC

More information

OpenNebula 4.10 Quickstart CentOS 6 and KVM

OpenNebula 4.10 Quickstart CentOS 6 and KVM OpenNebula 4.10 Quickstart CentOS 6 and KVM Release 4.10.2 OpenNebula Project January 16, 2015 CONTENTS 1 Package Layout 3 2 Step 1. Installation in the Frontend 5 2.1 1.1. Install the repo............................................

More information

Purpose. Target Audience. Prerequisites. What Is An Event Handler? Nagios XI. Introduction to Event Handlers

Purpose. Target Audience. Prerequisites. What Is An Event Handler? Nagios XI. Introduction to Event Handlers Purpose This document describes how to use event handlers in to take predefined actions when the hosts or services you are monitoring change state. Event handlers are used to automate processes taken when

More information

Deploy the ExtraHop Trace 6150 Appliance

Deploy the ExtraHop Trace 6150 Appliance Deploy the ExtraHop Trace 6150 Appliance Published: 2018-10-10 This guide explains how to install the rack-mounted ETA 6150 ExtraHop Trace appliances. System requirements This guide explains how to install

More information

Deploy the ExtraHop Explore 5100 Appliance

Deploy the ExtraHop Explore 5100 Appliance Deploy the ExtraHop Explore 5100 Appliance Published: 2018-09-25 In this guide, you will learn how to configure the rack-mounted EXA 5100 ExtraHop Explore appliance and to join multiple Explore appliances

More information

Install CPS All In One on VMWare Virtual Player 12

Install CPS All In One on VMWare Virtual Player 12 Install CPS 10.1.0 All In One on VMWare Virtual Player 12 Contents Introduction Prerequisites Requirements Components Used Background Information Procedure Verify Introduction This document describes the

More information

Plexxi Control Installation, Upgrade and Administration Guide Releases 2.3.x, 2.4.x, 3.0.x, 3.1.0

Plexxi Control Installation, Upgrade and Administration Guide Releases 2.3.x, 2.4.x, 3.0.x, 3.1.0 Plexxi Control Installation, Upgrade and Administration Guide Releases 2.3.x, 2.4.x, 3.0.x, 3.1.0 702-20002-10 Rev 2.2 May 16, 2017 100 Innovative Way - Suite 3322 Nashua, NH 03062 Tel. +1.888.630.PLEX

More information

NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1

NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1 NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1 Objective At the conclusion of this lab, the student will be able to perform necessary post-installation hardware configuration

More information

IVE Quick Startup Guide - OS 4.0

IVE Quick Startup Guide - OS 4.0 IVE Quick Startup Guide - OS 4.0 Initial Setup Once you receive the IVE device, unpack the IVE and connect it to a PC or Laptop using the console (null modem) cable provided with the IVE. You have to connect

More information

High Availability and Disaster Recovery

High Availability and Disaster Recovery High Availability and Disaster Recovery ScienceLogic version 8.4.0 rev 2 Table of Contents High Availability & Disaster Recovery Overview 4 Overview 4 Disaster Recovery 4 High Availability 4 Differences

More information

Purpose. Target Audience. Install SNMP On The Remote Linux Machine. Nagios XI. Monitoring Linux Using SNMP

Purpose. Target Audience. Install SNMP On The Remote Linux Machine. Nagios XI. Monitoring Linux Using SNMP Purpose This document describes how to monitor Linux machines with using SNMP. SNMP is an agentless method of monitoring network devices and servers, and is often preferable to installing dedicated agents

More information

How To Monitor Apache Cassandra Distributed Databases

How To Monitor Apache Cassandra Distributed Databases Purpose This document describes how to configure to monitor Apache Cassandra distributed database implementations in order to ensure that data, as well as the hardware housing it, is operating properly.

More information

Disaster Recovery Workflow

Disaster Recovery Workflow CHAPTER 4 InMage CDP starts with the FX/VX agent, also known as "DataTap," which is used to monitor all writes to disk. A small amount of memory on the source machine is reserved by the DataTap (250MB).

More information

LAN Setup Reflection. Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external?

LAN Setup Reflection. Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? LAN Setup Reflection Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? o Are you able to log into other VMs in the classroom?

More information

Configure the Cisco DNA Center Appliance

Configure the Cisco DNA Center Appliance Review Cisco DNA Center Configuration Wizard Parameters, on page 1 Configure Cisco DNA Center as a Single Host Using the Wizard, on page 5 Configure Cisco DNA Center as a Multi-Host Cluster Using the Wizard,

More information

Connecting CoovaAP 1.x with RADIUSdesk - Basic

Connecting CoovaAP 1.x with RADIUSdesk - Basic 2017/05/17 21:58 1/13 Connecting CoovaAP 1.x with RADIUSdesk - Basic Connecting CoovaAP 1.x with RADIUSdesk - Basic Introduction CoovaAP is a sub-project of Coova.org. It is custom firmware which can be

More information

FreeBSD Installation

FreeBSD Installation 1 FreeBSD Installation AFNOG Chix 2011 Blantyre, Malawi 31 st Oct - 4 th Nov 2011 Dorcas Muthoni and Evelyn Namara 2 READ THE INSTRUCTIONS These slides contain explicit instructions to allow you to successfully

More information

SuMegha Cloud Lab Kit

SuMegha Cloud Lab Kit SuMegha Cloud Lab Kit Version 1.3 User Manual 10 th Oct 2013 System Software Development for HPC C-DAC KP Bangalore 1 SuMegha Cloud Lab Kit Version 1.3 User Manual Project No: CDACB/SSDH/CSC/2013/ Document

More information

Videoscape Distribution Suite Software Installation Guide

Videoscape Distribution Suite Software Installation Guide First Published: August 06, 2012 Last Modified: September 03, 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800

More information

ExtraHop Command-line Reference

ExtraHop Command-line Reference ExtraHop Command-line Reference Published: 2018-12-15 You can manage many administrative tasks on your ExtraHop system through a command-line interface (CLI). You will typically manage your ExtraHop appliance

More information

Overview of the Cisco NCS Command-Line Interface

Overview of the Cisco NCS Command-Line Interface CHAPTER 1 Overview of the Cisco NCS -Line Interface This chapter provides an overview of how to access the Cisco Prime Network Control System (NCS) command-line interface (CLI), the different command modes,

More information

OpenNebula 4.4 Quickstart CentOS 6 and KVM. OpenNebula Project

OpenNebula 4.4 Quickstart CentOS 6 and KVM. OpenNebula Project OpenNebula 4.4 Quickstart CentOS 6 and KVM OpenNebula Project February 05, 2014 Copyright 2013 OpenNebula Project, C12G Labs. All rights reserved. Although the information in this document has been carefully

More information

PeerLink Help Manual

PeerLink Help Manual Manual Updated Monday, August 13, 2012 I Table of Contents 1... 1 Getting Started Solutions Overview... 1 Term inology... 2 Requirem ents... 4 Architecture Overview... 6 How File Collaboration... Works

More information

Plexxi Control Installation, Upgrade and Administration Guide Releases 2.3.x, 2.4.x, 3.0.x, 3.1.0

Plexxi Control Installation, Upgrade and Administration Guide Releases 2.3.x, 2.4.x, 3.0.x, 3.1.0 Plexxi Control Installation, Upgrade and Administration Guide Releases 2.3.x, 2.4.x, 3.0.x, 3.1.0 702-20002-10 Rev 2.0 March 31, 2017 100 Innovative Way - Suite 3322 Nashua, NH 03062 Tel. +1.888.630.PLEX

More information

Next. Welcome! This guide will get you started down the path to bulk text messaging excellence. Let s start by going over the basics of the system

Next. Welcome! This guide will get you started down the path to bulk text messaging excellence. Let s start by going over the basics of the system A-PDF Merger DEMO : Purchase from www.a-pdf.com to remove the watermark User Guide Next Welcome! This guide will get you started down the path to bulk text messaging excellence. Let s start by going over

More information

F5 WANJet 200. Quick Start Guide. Quick Start Overview

F5 WANJet 200. Quick Start Guide. Quick Start Overview F5 WANJet 200 Quick Start Guide Quick Start Overview Following is a high level overview of the steps required to successfully install and configure your F5 WANJet 200 appliance. For detailed instructions

More information

SANOG VI IP Services Workshop: FreeBSD Install

SANOG VI IP Services Workshop: FreeBSD Install SANOG VI IP Services Workshop: FreeBSD Install FreeBSD is designed to be a server operating system. This becomes apparent during the installation process. The FreeBSD installer is a console-based (not

More information

CloudStack Installation Documentation

CloudStack Installation Documentation CloudStack Installation Documentation Release 4.3 Apache Software Foundation August 11, 2015 Contents 1 Choosing a Deployment Architecture 3 1.1 Choosing a Deployment Architecture..................................

More information

Using the TUI Upgrade Utility to Update an Existing Release 2.4 Server

Using the TUI Upgrade Utility to Update an Existing Release 2.4 Server Using the TUI Upgrade Utility to Update an Existing Release 2.4 Server First Published: November 4, 2011 Revised: June 12, 2012 Do not use the information in this module to perform an upgrade from Cisco

More information

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam.

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam. REDHAT RH202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam TYPE: DEMO http://www.examskey.com/rh202.html Examskey REDHAT RH202 exam demo product is here for you to test the quality

More information

Deploy the ExtraHop Discover 3100, 6100, 8100, or 9100 Appliances

Deploy the ExtraHop Discover 3100, 6100, 8100, or 9100 Appliances Deploy the ExtraHop Discover 3100, 6100, 8100, or 9100 s Published: 2018-10-28 This guide explains how to install the rack-mounted EDA 3100, EDA 6100, EDA 8100, and EDA 9100 ExtraHop Discover appliances.

More information

Using the Cisco NCS Command-Line Interface

Using the Cisco NCS Command-Line Interface CHAPTER 2 This chapter provides helpful tips for understanding and configuring the Cisco Prime Network Control System (NCS) from the command-line interface (CLI). The Cisco NCS can be deployed for small,

More information

Installation Instructions for Xorcom TwinStar Plus Servers

Installation Instructions for Xorcom TwinStar Plus Servers Document version: 1.0 Overview Installation Instructions for Xorcom TwinStar Plus Servers This document describes the configuration process which must be performed at the customer site for pre-configured

More information