Configuring a Standalone VCL Environment using VMware Server 2.0

Size: px
Start display at page:

Download "Configuring a Standalone VCL Environment using VMware Server 2.0"

Transcription

1 Configuring a Standalone VCL Environment using VMware Server 2.0 DISCLAIMER! This document provides instuctions for configuring a standalone VCL environment running on a single computer which is able to provision VCL reservations using VMware. It is only provided to help you understand how the various components of VCL operate. This document DOES NOT describe how to configure a production VCL environment. The environment described in this document can however be used to learn, test, and help develop VCL. Gather Required Files & Information Requirements VMware Server 2.x RPM Installer - These instructions assume the VMware Server RPM has been downloaded to the following location on the management node: /root/vmware-server x86_64.rpm VMware Server 2.x serial number - A serial number can be obtained when you download VMware Server 2.0 from vmware.com. You will need to register. Assumptions These instructions assume you are logged in to the management node as root These instructions assume you are using a bash shell. Networking The computer used to host the standalone VCL environment described in these instructions only needs a single network interface. These instructions will also work if it has multiple interfaces. The computer used to create these instructions had the following interfaces: eth0 - connected to the private VCL network (not used or referenced in these instructions) eth1 - connected to the public network VMware Server 2.0 Configuration Remove Existing Virtualization Components yum groupremove "Virtualization" -y Make Sure The Host Computer Is Not Running A Xen Kernel VMWare Server cannot be installed on a computer running a Xen kernel. To determine if a Xen kernel is being used: uname -a The following output indicates a Xen kernel is being used: Linux blade1g el5 xen #1 SMP Tue Jun 10 19:20:18 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux If "xen" appears in the output of the previous command, replace the Xen kernel: yum update ecryptfs-utils -y yum install kernel kernel-devel -y yum remove xen kernel-xen -y

2 Check the grub.conf file to make sure it is not configured to boot using the Xen Kernel less /boot/grub/grub.conf The grub.conf file should NOT look like this: title CentOS ( el5 xen) module /vmlinuz el5 xen ro root=label=/ pci=nommconf After removing the Xen kernel, reboot the computer: reboot Download VMware Server 2.0 Download the latest VMware Server 2.0 RPM from These instructions assume you saved the RPM into /root Install VMware Server 2.0 rpm -ivh /root/vmware-server x86_64.rpm Configure VMware Server: vmware-config.pl Answer the questions asked by vmware-config.pl as follows: Do you accept? (yes/no) yes Do you want networking for your virtual machines? (yes/no/help) yes Configuring a bridged network for vmnet0. Please specify a name for this network. Bridged Your computer has multiple ethernet network interfaces available: eth0, eth1. Which one do you want to bridge to vmnet0? eth1 ( this should be set to the public interface) The following bridged networks have been defined:. vmnet0 is bridged to eth1 Do you wish to configure another bridged network? (yes/no) no Do you want to be able to use NAT networking in your virtual machines? (yes/no) no Do you want to be able to use host-only networking in your virtual machines? yes Configuring a host-only network for vmnet1. Please specify a name for this network. HostOnly Do you want this program to probe for an unused private subnet? (yes/no/help) no What will be the IP address of your host on the private network? What will be the netmask of your private network? The following host-only networks have been defined:. vmnet1 is a host-only network on private subnet Do you wish to configure another host-only network? (yes/no) no Please specify a port for remote connections to use: 902 Please specify a port for standard http connections to use: 8222 Please specify a port for secure http (https) connections to use: 8333 The current administrative user for VMware Server is ''. Would you like to specify a different administrator? no Using root as the VMware Server administrator. In which directory do you want to keep your virtual machine files? /var/lib/vmware/virtual Machines The path "/var/lib/vmware/virtual Machines" does not exist currently. This program is going to create it, including needed parent directories. Is this what you want? yes Please enter your 20-character serial number. <Enter the serial number you received from VMware> In which directory do you want to install the VMware VIX API binary files? /usr/bin In which directory do you want to install the VMware VIX API library files? /usr/lib/vmware-vix/lib The path "/usr/lib/vmware-vix/lib" does not exist currently. This program is going to create it, including needed parent directories. Is this what you want? yes In which directory do you want to install the VMware VIX API document pages? /usr/share/doc/vmware-vix

3 The path "/usr/share/doc/vmware-vix" does not exist currently. This program is going to create it, including needed parent directories. Is this what you want? yes If you receive an error message when you execute vmware-config.pl you may need to install or update the following libraries and then run vmware-config.pl again: yum install glibc-devel -y yum install glibc -y yum install libxtst-devel -y Verify the host-only network was configured correctly: /sbin/ifconfig You should see a vmnet1 interface using IP address : vmnet1 Link encap:ethernet HWaddr 00:50:56:C0:00:01 inet addr: Bcast: Mask: inet6 addr: fe80::250:56ff:fec0:1/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:4 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Restart the vmware service: /sbin/service vmware restart You should see the following: Starting VMware services: Virtual machine monitor [ OK ] Virtual ethernet [ OK ] Bridged networking on /dev/vmnet0 [ OK ] Host-only networking on /dev/vmnet1 (background) [ OK ] Starting VMware virtual machines... [ OK ] Fix VMware Server 2.0 glibc Problem VMware Server 2.0 will not run reliably if the version of glibc installed on the host is newer than This problem is known to affect recent versions of Red Hat Enterprise Linux and CentOS. If not corrected, VMware Server will crash intermittently and the VMware administration web pages will lock up or fail to load. Check the version of glib installed on the VMware host: yum list installed glibc You will need to configure VMware to use glibc if the version installed on the host is newer than : Installed Packages glibc.i installed glibc.x86_ installed For CentOS, you will need to download the glibc RPM included with CentOS 5.3. This is available from vault.centos.org: For 32-bit CentOS installations: For 64-bit CentOS installations:

4 Create a temp directory and cd to it: mkdir /tmp/glibc ; cd /tmp/glibc Download the glibc RPM (change the URL accordingly): wget Extract the cpio archive from the glibc RPM: rpm2cpio glibc el5_3.1.x86_64.rpm cpio --extract --make-directories Create the following directory: mkdir /usr/lib/vmware/lib/libc.so.6 Copy the following file to the new directory: cp /tmp/glibc/lib64/libc-2.5.so /usr/lib/vmware/lib/libc.so.6/libc.so.6 Make a backup of the original vmware-hostd file: cp /usr/sbin/vmware-hostd /root/vmware-hostd.orig Edit vmware-hostd: vi /usr/sbin/vmware-hostd Navigate to the bottom of the file. You should see the following as the last line: eval exec "$DEBUG_CMD" "$binary" "$@" Add the following export line immediately before the last eval line in vmware-hostd: export LD_LIBRARY_PATH=/usr/lib/vmware/lib/libc.so.6:$LD_LIBRARY_PATH eval exec "$DEBUG_CMD" "$binary" "$@" The following sed command can also be used to add the line to vmware-hostd: Do not both manually edit vmware-hostd and run the following sed command sed -i -r -e "s/(eval exec.*)/export LD_LIBRARY_PATH=\/usr\/lib\/vmware\/lib\/libc.so.6:\$LD_LIBRARY_PATH\n\1/" /usr/sbin/vmwarehostd Restart the vmware service:

5 /sbin/service vmware restart Login to VMware At this point you should be able to log in as root to the VMware Infrastructure Web Access page: * Install VCL Components Begin by completing the VCL installation instructions. Install all of the components on the same computer: VCL Database Installation VCL Web Code Installation Complete the Web Code Installation steps up to the Add a Management Node to the Database section. Use the instructions below to add the management node, VM host computer, and VM computers to the VCL database. 3. VCL Management Node Installation Add the Management Node to the Database Click Management Nodes > Edit Management Node Information Click Add Hostname: localhost IP Address: Owner: admin@local State: available Predictive Loading Module: Predictive Loading Level 0 Module Check-in Interval: 5 Install Path: /install End Node SSH Identitiy Key Files: /etc/vcl/vcl.key SSH Port for this node: 22 Enable Image Library: no Click Confirm Management Node Add the VMware Host Computer to the VCL database Click Manage Computers > Add Single Computer > Submit Hosthame: localvmhost IP Address: State: vmhostinuse Owner: admin Platform: i386 Schedule: VCL 24x7 RAM: 1024 No Processors: 1 Processor Speed: 2000 Network Speed: 1000 Type: blade Provisioning engine: xcat 2.x The computer Type and Provisioning engine values don't matter for the localvmhost computer in this test environment because vcld isn't provisioning or reloading it Computer Groups: allcomputers Click Confirm Computer Click Submit Select a VM Host Profile to be used on this computer: VMware Server 2.x - local storage Click Add Computer Add the Virtual Machine Computers to the VCL Database Click Manage Computers > Edit Computer Information > Submit Click the Add Multiple checkbox Click Add

6 Hosthame: vmguest-% Start value: 1 End value: 10 Start IP Address: End IP Address: Start private IP Address: End private IP Address: Start MAC Address: 00:50:56:1a:01:01 State: maintenance Owner: admin Platform: i386 Schedule: VCL 24x7 RAM: 4096 No Processors: 1 Processor Speed: 2000 Network Speed: 1000 Type: virtualmachine Provisioning engine: VMware Computer Groups: All VM Computers allcomputers newvmimages Click Confirm Compute Click Submit Enter the private address for the management node: Click: Download Data, you should automatically generated dhcpd.conf file entries. Keep this web page open and continue with the following instructions. Install & Configure the DHCP Service VMware Server installs its own DHCP service ( vmnet-dhcpd). This service starts automatically when the vmware service is running. Either the VMware vmnet-dhcpd service or the normal dhcpd service installed on the Linux operating system can be used to assign IP addresses to the VMs' private interfaces. The instructions below explain how to disable vmnet-dhcpd and configure dhcpd. Disable vmnet-dhcpd Stop the vmware service: /sbin/service vmware stop Edit the following file: /etc/vmware/locations Find all lines beginning with answer VNET_1_DHCP yes and change yes to no: answer VNET_1_DHCP no Start the vmware service: /sbin/service vmware start Install the DHCP Service Install dhcp if it is not already installed: yum install dhcp -y The DHCP daemon should only listen on the virtual private network (vmnet1) to avoid conflicts with other networks. Configure the dhcpd service startup script to only listen on the vmnet1 interface:

7 vi /etc/sysconfig/dhcpd Add vmnet1 the to the DHCPDARGS line: # Command line options here DHCPDARGS=vmnet1 Configure the dhcpd service to automatically start at runlevels 3-5: /sbin/chkconfig --level 345 dhcpd on Start the dhcpd service: /sbin/service dhcpd start Configure dhcpd.conf Edit the /etc/dhcpd.conf file on the computer: vi /etc/dhcpd.conf Paste the following into the dhcpd.conf file and save the file: The host sections below should be identical the the output displayed on the VCL website after you added the VM computers. ddns-update-style none; shared-network vmnet1 { subnet netmask { ignore unknown-clients; option routers ; host vmguest-1 { option host-name "vmguest-1"; hardware ethernet 00:50:56:1a:01:01; fixed-address ; host vmguest-2 { option host-name "vmguest-2"; hardware ethernet 00:50:56:1a:01:03; fixed-address ; host vmguest-3 { option host-name "vmguest-3";

8 hardware ethernet 00:50:56:1a:01:05; fixed-address ; host vmguest-4 { option host-name "vmguest-4"; hardware ethernet 00:50:56:1a:01:07; fixed-address ; host vmguest-5 { option host-name "vmguest-5"; hardware ethernet 00:50:56:1a:01:09; fixed-address ; host vmguest-6 { option host-name "vmguest-6"; hardware ethernet 00:50:56:1a:01:0b; fixed-address ; host vmguest-7 { option host-name "vmguest-7"; hardware ethernet 00:50:56:1a:01:0d; fixed-address ; host vmguest-8 { option host-name "vmguest-8"; hardware ethernet 00:50:56:1a:01:0f; fixed-address ; host vmguest-9 {

9 option host-name "vmguest-9"; hardware ethernet 00:50:56:1a:01:11; fixed-address ; host vmguest-10 { option host-name "vmguest-10"; hardware ethernet 00:50:56:1a:01:13; fixed-address ; Restart the dhcpd service: /sbin/service dhcpd restart Configure /etc/hosts Modify the /etc/hosts file to include entries for the VM host and VM computers: vi /etc/hosts Add the following entries: localvmhost vmguest vmguest vmguest vmguest vmguest vmguest vmguest vmguest vmguest vmguest-10 Configure the sshd Service to Listen on the Virtual Private Network vi /etc/ssh/sshd_config Add the following line to the end of the file: ListenAddress Restart the sshd service on the management node: /sbin/service sshd restart

10 Configure The VM Host To Be Able To SSH To Itself If you have not already generated an SSH identity key on the management node to be used to login to the computers the management node controls, run the following command to generate a new key: mkdir /etc/vcl ; ssh-keygen -t rsa -f "/etc/vcl/vcl.key" -N '' -b C "VCL root account on $HOSTNAME" Add the VM host's public key to its own authorized_keys file to allow it to SSH to itself without a password prompt: cat /etc/vcl/vcl.key.pub >> /root/.ssh/authorized_keys The following command should execute without having to enter a password: ssh -i /etc/vcl/vcl.key localvmhost 'ls /' Configure the VM Host Profile Virtual Hosts > VM Host Profiles tab > VMware Server 2.x - local storage > Configure Profile Virtual Switch 0: HostOnly Virtual Switch 1: Bridged Assign the VM Computers to the VM Host Virtual Hosts > VM Hosts tab Select localvmhost Click Configure Host Set VM limit to 10 Select vmguest-1...vmguest-10 under Unassigned VMs Click Add Create a Base Image Proceed to follow the instructions to create a Windows or Linux base image.

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

Linux. Computer networks - Administration 1DV202. fredag 30 mars 12

Linux. Computer networks - Administration 1DV202. fredag 30 mars 12 Linux Computer networks - Administration 1DV202 Configuration files /etc/hosts /etc/resolv.conf /etc/network/interfaces /etc/hosts 127.0.0.1 localhost.localdomain localhost 127.0.1.1 lokal.kalmar.se lokal

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

CIS Test 1- Practice - Fall 2011

CIS Test 1- Practice - Fall 2011 CIS 192 - Test 1- Practice - Fall 2011 Name Each question worth 2 points: Tip: When not logged in as root, you can still use many of the network commands but you must preface them with /sbin/ because you

More information

Create Test Environment

Create Test Environment Create Test Environment Describes how to set up the Trafodion test environment used by developers and testers Prerequisites Python Passwordless ssh If you already have an existing set of ssh keys If you

More information

~]# uname -a Linux app el6.x86_64 #1 SMP Tue Mar 25 19:59:55 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

~]# uname -a Linux app el6.x86_64 #1 SMP Tue Mar 25 19:59:55 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux Alternate Titles: VPN Client Setup on Centos Author: Muhammad Zeeshan Bhatti [LPI, VCP, OCP (DBA), MCSA, SUSE CLA,] (http://zeeshanbhatti.com) (admin@zeeshanbhatti.com) [root@app-01 ~]# uname -a Linux

More information

RG-MACC_2.0 Installation Manual

RG-MACC_2.0 Installation Manual RG-MACC_2.0 Installation Manual Ruijie Networks Co., Ltd all rights reserved 1 Copyright Clarify Copyright ownership belongs to Ruijie, shall not be reproduced, copied, or used in other ways without permission.

More information

ssh keys, yum, ntp, rsync

ssh keys, yum, ntp, rsync ssh keys, yum, ntp, rsync 1 CST8177 Linux Operating Systems II Saturday 25-April-15 9:00-11:00 T119/T126 2 ifconfig to find your VM's ip address so you can ssh to it ssh key login yum ntp tar scp rsync

More information

Access Server: User's and Developer's Guide <<< Previous Next >>>

Access Server: User's and Developer's Guide <<< Previous Next >>> 1 of 14 12/9/2008 10:18 AM Access Server: User's and Developer's Guide > Chapter 2. Getting Started with Access Server Access Server can be controlled in three ways: by using the WWW

More information

Blueprints. Quick Start Guide for installing and running KVM

Blueprints. Quick Start Guide for installing and running KVM Blueprints Quick Start Guide for installing and running KVM Blueprints Quick Start Guide for installing and running KVM Note Before using this information and the product it supports, read the information

More information

NVIDIA Professional Application Center

NVIDIA Professional Application Center NVIDIA Professional Application Center Network Licensing Guide 5 May 2017 Document version 2.0 Copyright Information 2017 NVIDIA Corporation. All rights reserved. This document is protected under copyright

More information

RG-MACC-BASE_v2.01. Installation Guide

RG-MACC-BASE_v2.01. Installation Guide RG-MACC-BASE_v2.01 Preface Thank you for using our products. Audience This manual is intended for: Network engineers Technical support and servicing engineers Network administrators Symbols Important information.

More information

Clustered Data ONTAP 8.3 Update 2, IPspaces. Self-paced Lab NETAPP UNIVERSITY. NetApp University - Do Not Distribute

Clustered Data ONTAP 8.3 Update 2, IPspaces. Self-paced Lab NETAPP UNIVERSITY. NetApp University - Do Not Distribute NETAPP UNIVERSITY Clustered Data ONTAP 8.3 Update 2, IPspaces Self-paced Lab Course ID: STRSW-SPL-CDOT83UPD2 Content Version: 1.0 ATTENTION The information contained in this course is intended only for

More information

IP over IB Protocol. Introduction CHAPTER

IP over IB Protocol. Introduction CHAPTER CHAPTER 3 The following sections appear in this chapter: Introduction, page 3-1 Manually Configure IPoIB for Default IB Partition, page 3-2 Subinterfaces, page 3-2 Verify IPoIB Functionality, page 3-5

More information

StampA5D3x/PortuxA5/PanelA5. Quickstart Guide

StampA5D3x/PortuxA5/PanelA5. Quickstart Guide StampA5D3x/PortuxA5/PanelA5 Quickstart Guide StampA5D3x/PortuxA5/PanelA5 StampA5D3x/PortuxA5/PanelA5: Quickstart Guide Copyright 2015 taskit GmbH All rights to this documentation and to the product(s)

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

These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement

These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement Copyright 2017, fp Technologies, Inc. All Rights Reserved These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement You will need to

More information

Hosting Applications Using Configuration Management Tools

Hosting Applications Using Configuration Management Tools Hosting Applications Using Configuration Management Tools Configuration management tools are used to automate manual tasks, such as setting up servers and network devices. As application delivery requirements

More information

Oracle 11g RAC on Linux- CRS Inderpal S. Johal. Inderpal S. Johal

Oracle 11g RAC on Linux- CRS   Inderpal S. Johal. Inderpal S. Johal ORACLE CRS INSTALLATION : INSTALLATION AND CONFIGURATION GUIDE Inderpal S. Johal INTRODUCTION This document will gives details of Oracle Clusterware installation on RHEL 4. CRS INSTALLATION STEPS 1. Cluster

More information

Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices

Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices Inhaltsverzeichnis Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices... 1 1. Installation

More information

GM8126 MAC DRIVER. User Guide Rev.: 1.0 Issue Date: December 2010

GM8126 MAC DRIVER. User Guide Rev.: 1.0 Issue Date: December 2010 GM8126 MAC DRIVER User Guide Rev.: 1.0 Issue Date: December 2010 REVISION HISTORY Date Rev. From To Dec. 2010 1.0 - Original Copyright 2010 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2010

More information

Using Shell Commands

Using Shell Commands This chapter contains the following sections: General Administration, page 1 Working with Databases, page 9 Importing Certificates, page 13 Accessing Root Privileges, page 14 Using a Multi-Node Setup,

More information

Wi-Fi Guide: Edimax USB Adapter on BBG

Wi-Fi Guide: Edimax USB Adapter on BBG Wi-Fi Guide: Edimax USB Adapter on BBG August 3 rd 2017 Table of Contents: Page 1: Page 2: Page 3: Page 4: Page 5: Introduction & Hardware requirements Getting Started Connecting to a network using Network

More information

Getting Started with PetaLinux SDK

Getting Started with PetaLinux SDK Getting Started with PetaLinux SDK November 26, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 Getting Started...3 Prerequisites...3 Installation...4

More information

Quick guide for configuring a system with multiple IP-LINKs

Quick guide for configuring a system with multiple IP-LINKs Quick guide for configuring a system with multiple IP-LINKs October 4 th 2005, KK. This guide will show an example configurations for a system with multiple IP-LINKs. Example 1, three devices connected

More information

Virtual Appliance User s Guide

Virtual Appliance User s Guide Cast Iron Integration Appliance Virtual Appliance User s Guide Version 4.5 July 2009 Cast Iron Virtual Appliance User s Guide Version 4.5 July 2009 Copyright 2009 Cast Iron Systems. All rights reserved.

More information

HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide

HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide Part Number 733-0207 www.hp.com/networking Revision A www.netscout.com September 28, 2010 Copyright 2008 Hewlett-Packard

More information

Enabling CDC_ETHER Connection for Skywire GSM CAT1

Enabling CDC_ETHER Connection for Skywire GSM CAT1 Enabling CDC_ETHER Connection for Skywire GSM CAT1 NimbeLink Corp Updated: February 2018 PN 30262 rev 4 NimbeLink Corp. 2018. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

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

VisibleThread - Server Configuration Help

VisibleThread - Server Configuration Help VisibleThread - Server Configuration Help Version 2.13 (November 2016) Copyright 2017 VisibleThread Limited. This document is the copyright of VisibleThread Limited and may not be reproduced in whole or

More information

Enabling CDC-ETHER Connection for Skywire CAT1

Enabling CDC-ETHER Connection for Skywire CAT1 Enabling CDC-ETHER Connection for Skywire CAT1 NimbeLink Corp Updated: May 2017 PN 30111 rev 5 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction 2 1.1 Orderable

More information

New System Setup Guide

New System Setup Guide New System Setup Guide Logging into PBXact UC Quick Setup Wizard STEP 1: Time Zone and Email STEP 2: Extension Creation STEP 3: Extension Customization Dashboard Module Configuration Extensions IVR Inbound

More information

Accessing the Networking Stack

Accessing the Networking Stack The Cisco IOS XR Software serves as a networking stack for communication. This section explains how applications on IOS XR can communicate with internal processes, and with servers or outside devices.

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

LAN Setup Reflection

LAN Setup Reflection LAN Setup Reflection After the LAN setup, 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

More information

How to install VMWare Server on Mandriva 2007 (64bit) and to use Linux and Windows clients. by Frank Neugebauer

How to install VMWare Server on Mandriva 2007 (64bit) and to use Linux and Windows clients. by Frank Neugebauer How to install VMWare Server 1.0.1 on Mandriva 2007 (64bit) and to use Linux and Windows clients by Frank Neugebauer www.linux-tip.net 12.01.2007 This workshop describes how to install VMware server 1.0.1

More information

Application Hosting Configuration Guide for Cisco ASR 9000 Series Routers

Application Hosting Configuration Guide for Cisco ASR 9000 Series Routers Application Hosting Configuration Guide for Cisco ASR 9000 Series Routers First Published: 2016-11-01 Last Modified: 2017-09-05 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose,

More information

Installing Cisco MSE in a VMware Virtual Machine

Installing Cisco MSE in a VMware Virtual Machine Installing Cisco MSE in a VMware Virtual Machine This chapter describes how to install and deploy a Cisco Mobility Services Engine (MSE) virtual appliance. Cisco MSE is a prebuilt software solution that

More information

EL Serial Port Server Installation Guide Errata

EL Serial Port Server Installation Guide Errata EL Serial Port Server Installation Guide Errata This errata supplies additions to EL Serial Port Server Installation Guide (91000932B). EL stands for EtherLite. To operate your Silicon Graphics Ethernet

More information

Basics of GNS3 and Cisco IOS

Basics of GNS3 and Cisco IOS Lab00: Objectives: Basics of GNS3 and Cisco IOS IERG4090 Lab00 P.1 Upon completion of this lab, you will be able to: - Extract a given topology GNS3 archive - Start GNS3 - Open the given topology file

More information

Configuring the BeagleBone Black s Ethernet Port for SSH Access

Configuring the BeagleBone Black s Ethernet Port for SSH Access Configuring the BeagleBone Black s Ethernet Port for SSH Access NimbeLink Corp Updated: April 2016 PN 30112 rev 1 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

More information

Hostname and IP Address

Hostname and IP Address 1/19 IP Addressing Surasak Sanguanpong nguan@ku.ac.th http://www.cpe.ku.ac.th/~nguan Last updated: 27 June 2002 Hostname and IP Address 2/19 browser What is the IP address of www.isoc.org? www.isoc.org

More information

GMSplus Customer Connection Test Procedure

GMSplus Customer Connection Test Procedure GMS-xx Customer Connection Test Procedure Page 1/14 GMSplus Customer Connection Test Procedure Company: Author: Checked: Approved: Distribution: GeoSIG Ltd Wiesenstrasse 39, 8952 Schlieren, Switzerland,

More information

Getting Started with Application Hosting

Getting Started with Application Hosting This section introduces application hosting and the Linux environment used for hosting applications on the Cisco IOS XR Operating System. Need for Application Hosting, page 1 Deep Dive Into Application

More information

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 UNIX MODULE NO: CPU5003

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 UNIX MODULE NO: CPU5003 [CRT09] UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 MODULE NO: CPU5003 Date: Wednesday 21 st January 2015 Time: 10:00 13:00 INSTRUCTIONS

More information

DHCP prevents IP address Conflicts and helps conserve the use of client IP Address on the Network

DHCP prevents IP address Conflicts and helps conserve the use of client IP Address on the Network What is? It gives IP Addresses Automatically to the s who is requesting for an IP Address Centralized IP Address Management prevents IP address Conflicts and helps conserve the use of client IP Address

More information

Replace HyperFlex Self-Signed SSL Certificates with CA-issued Certificates

Replace HyperFlex Self-Signed SSL Certificates with CA-issued Certificates Replace HyperFlex Self-Signed SSL Certificates with CA-issued Certificates Contents Google Chrome Mozila FireFox Software Credentials HX Cluster DNS Server Certificate Authority vcenter Server 1. Create

More information

High Availability for Cisco RAN Management Systems

High Availability for Cisco RAN Management Systems First Published: 2014-10-13 Last Modified: 2016-06-13 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

UCS IPv6 Management Configuration Example

UCS IPv6 Management Configuration Example UCS IPv6 Management Configuration Example Document ID: 118784 Contributed by Padmanabhan Ramaswamy and Shankar Prasath, Cisco TAC Engineers. Mar 06, 2015 Contents Introduction Prerequisites Requirements

More information

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host.

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host. Networking Guide for BeagleBone (Black or Green) by Brian Fraser Last update: Nov 17, 2017 This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green

More information

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 LAB REFERENCE & TOPOLOGY INFORMATION... 3 3 DELETE THE EXISTING OUT OF BAND NODE MANAGEMENT ADDRESSES CONFIGURATION FOR YOUR DESIGNATED ACI FABRIC... 4 4 CONFIGURE

More information

Unit- 5. Linux Systems

Unit- 5. Linux Systems Unit- 5 Linux System- Basic Concepts; System Administration-Requirements for Linux System Administrator, Setting up a LINUX Multifunction Server, Domain Name System, Setting Up Local Network Services;

More information

Manually Change Default Gateway Centos Command Line Windows

Manually Change Default Gateway Centos Command Line Windows Manually Change Default Gateway Centos Command Line Windows Learn how to add a defaull gateway on Redhat Linux. Linux command line tutorial Bash scripting tutorial Vim tutorial Perl programming tutorial

More information

Monospace $ ls -latr pictures # less /var/log/messages $ # ipchains turboclusteradmin # mount /mnt/cdrom # cd /mnt/cdrom TLCS-install #./TLCS-install redhat turbolinux

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

How to Configure ClusterXL for L2 Link Aggregation

How to Configure ClusterXL for L2 Link Aggregation How to Configure ClusterXL for L2 Link Aggregation User Guide 15 January 2013 Classification: [Protected] 2013 Check Point Software Technologies Ltd. All rights reserved. This product and related documentation

More information

INSTALLATION RUNBOOK FOR Hitachi Block Storage Driver for OpenStack

INSTALLATION RUNBOOK FOR Hitachi Block Storage Driver for OpenStack INSTALLATION RUNBOOK FOR Hitachi Block Storage Driver for OpenStack Product Name: Hitachi Block Storage Driver for OpenStack Driver Version: 1.4.10 MOS Version: 7.0 OpenStack Version: Product Type: Kilo

More information

Perform Disaster Recovery

Perform Disaster Recovery The topics covered in this chapter are: Boot using USB Drive, page 1 Boot Using ipxe, page 3 Boot using USB Drive The bootable USB drive is used to re-image the router for the purpose of system upgrade

More information

The Balabit s Privileged Session Management 5 F5 Azure Reference Guide

The Balabit s Privileged Session Management 5 F5 Azure Reference Guide The Balabit s Privileged Session Management 5 F5 Azure Reference Guide March 12, 2018 Abstract Administrator Guide for Balabit s Privileged Session Management (PSM) Copyright 1996-2018 Balabit, a One Identity

More information

Active Fabric Manager Installation Guide 1.5

Active Fabric Manager Installation Guide 1.5 Active Fabric Manager Installation Guide 1.5 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION indicates either

More information

Chapter 5 Network Layer

Chapter 5 Network Layer Chapter 5 Network Layer Network Layer IPv4 2 IP Header Application Header + data 3 IP IP IP IP 4 Focus on Transport Layer IP IP 5 Network Layer The Network layer (Layer 3) provides services to exchange

More information

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2017/2018 UNIX MODULE NO: CPU5003

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2017/2018 UNIX MODULE NO: CPU5003 [CRT06] UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2017/2018 UNIX MODULE NO: CPU5003 Date: Wednesday 17 th January 2018 Time: 10:00 12:00

More information

Disaster Recovery. Boot using USB Drive. Create a Bootable USB Drive Using Compressed Boot File

Disaster Recovery. Boot using USB Drive. Create a Bootable USB Drive Using Compressed Boot File The topics covered in this chapter are: Boot using USB Drive, on page 1 Boot Using ipxe, on page 3 Boot using USB Drive The bootable USB drive is used to re-image the router for the purpose of system upgrade

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

CA Agile Central Administrator Guide. CA Agile Central On-Premises

CA Agile Central Administrator Guide. CA Agile Central On-Premises CA Agile Central Administrator Guide CA Agile Central On-Premises 2018.1 Table of Contents Overview... 3 Server Requirements...3 Browser Requirements...3 Access Help and WSAPI...4 Time Zone...5 Architectural

More information

System Administration. Startup Process

System Administration. Startup Process System Administration Startup Process Why Care? Every process on your system comes about by following a specific chain of events from the machine startup You may want to disable processes You may want

More information

Red Hat Enterprise Linux 7 Getting Started with Cockpit

Red Hat Enterprise Linux 7 Getting Started with Cockpit Red Hat Enterprise Linux 7 Getting Started with Cockpit Getting Started with Cockpit Red Hat Enterprise Linux Documentation Team Red Hat Enterprise Linux 7 Getting Started with Cockpit Getting Started

More information

3 Connection, Shell Serial Connection over Console Port SSH Connection Internet Connection... 5

3 Connection, Shell Serial Connection over Console Port SSH Connection Internet Connection... 5 Contents 1 Description 2 2 Supported Devices 3 3 Connection, Shell 4 3.1 Serial Connection over Console Port...................... 4 3.2 SSH Connection................................. 4 3.3 Internet Connection...............................

More information

Citrix CloudPlatform (powered by Apache CloudStack) Version Patch D Release Notes. Revised July 02, :15 pm Pacific

Citrix CloudPlatform (powered by Apache CloudStack) Version Patch D Release Notes. Revised July 02, :15 pm Pacific Citrix CloudPlatform (powered by Apache CloudStack) Version 3.0.5 Patch D Release Notes Revised July 02, 2014 10:15 pm Pacific Citrix CloudPlatform (powered by Apache CloudStack) Version 3.0.5 Patch D

More information

Quick Start Guide for BeagleBone Black. Table of Contents. by Brian Fraser Last update: Summer, 2015

Quick Start Guide for BeagleBone Black. Table of Contents. by Brian Fraser Last update: Summer, 2015 Quick Start Guide for BeagleBone Black by Brian Fraser Last update: Summer, 2015 This document guides the user through: 1. Installing Ubuntu in a virtual machine. 2. Connecting to the target using serial

More information

Spacewalk. Installation Guide for CentOS 6.4

Spacewalk. Installation Guide for CentOS 6.4 Spacewalk Installation Guide for CentOS 6.4 Contents Spacewalk Overview... 3 Spacewalk Project Architecture... 3 System Prerequisites... 3 Installation... 4 Spacewalk Components... 4 Prerequisites Install

More information

UIP1869V User Interface Guide

UIP1869V User Interface Guide UIP1869V User Interface Guide (Firmware version 0.1.8 and later) Table of Contents Opening the UIP1869V's Configuration Utility... 3 Connecting to Your Broadband Modem... 5 Setting up with DHCP... 5 Updating

More information

installing Linux Paul Cobbaut

installing Linux Paul Cobbaut installing Linux Paul Cobbaut installing Linux Paul Cobbaut lt-2.0 Publication date Wed 12 Nov 2014 03:59:02 PM CET Table of Contents 1. installing Debian 8... 1 1.1. Debian... 2 1.2. Downloading... 2

More information

PROBE INSTALLATION AND CONFIGURATION GUIDE RELEASE 5.1

PROBE INSTALLATION AND CONFIGURATION GUIDE RELEASE 5.1 PROBE INSTALLATION AND CONFIGURATION GUIDE RELEASE 5.1 DOCUMENT DATE: NOVEMBER 20, 2015 Introduction Notice The information contained in this document is believed to be accurate in all respects but is

More information

Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit

Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit Getting Started with Cockpit Red Hat Atomic Host Documentation Team Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit

More information

ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi)

ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi) ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi) Revised: November, 2013 Contents Overview, page 1 Guidelines and Limitations, page 1 Prerequisites, page 2 Installation

More information

Spacewalk. Installation Guide RHEL 5.9

Spacewalk. Installation Guide RHEL 5.9 Spacewalk Installation Guide RHEL 5.9 Contents Spacewalk Overview... 3 Spacewalk Project Architecture... 3 System Prerequisites... 3 Installation... 4 Spacewalk Components... 4 Prerequisites Install for

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

EAN-Network Configuration

EAN-Network Configuration EAN-Network Configuration PN: EAN-Network-Configuration 1/25/2018 SightLine Applications, Inc. Contact: Web: sightlineapplications.com Sales: sales@sightlineapplications.com Support: support@sightlineapplications.com

More information

ElasterStack 3.2 User Administration Guide - Advanced Zone

ElasterStack 3.2 User Administration Guide - Advanced Zone ElasterStack 3.2 User Administration Guide - Advanced Zone With Advance Zone Configuration TCloud Computing Inc. 6/22/2012 Copyright 2012 by TCloud Computing, Inc. All rights reserved. This document is

More information

Ubuntu LTS Precise

Ubuntu LTS Precise Author : Tony Hill Version : 1-1 Date : 26 th April 2014 1 Introduction This installation is carried out on the following operating system: Ubuntu 12.04.4 LTS Precise The installation is on a Lenovo 64-bit

More information

Using Juju with a Local Provider with KVM and LXC in Ubuntu LTS

Using Juju with a Local Provider with KVM and LXC in Ubuntu LTS Using Juju with a Local Provider with KVM and LXC in Ubuntu 14.04 LTS A Dell and Canonical Technical White Paper Mark Wenning Canonical Field Engineer Jose De la Rosa Dell Software Engineer 2 THIS WHITE

More information

Multiplying Your Server Ubuntu Server and Virtualization

Multiplying Your Server Ubuntu Server and Virtualization CHAPTER 12 Multiplying Your Server Ubuntu Server and Virtualization One of the hottest new technologies for servers is virtualization, which allows you to install multiple instances of one or more operating

More information

CHAPTER 7 ADVANCED ADMINISTRATION PC

CHAPTER 7 ADVANCED ADMINISTRATION PC ii Table of Contents CHAPTER 1 INTRODUCTION... 1 Broadband ADSL Router Features... 1 Package Contents... 3 Physical Details... 4 CHAPTER 2 INSTALLATION... 6 Requirements... 6 Procedure... 6 CHAPTER 3 SETUP...

More information

Silexica Software Licensing Introduction & Installation Version 1.0 English

Silexica Software Licensing Introduction & Installation Version 1.0 English Silexica Software Licensing Introduction & Installation Version 1.0 English Page 1 of 11 1 Introduction 1.1 Introduction The Silexica Software Licensing is based on Flexera s reliable and secure technology.

More information

How to Install a DHCP Server in Ubuntu and Debian

How to Install a DHCP Server in Ubuntu and Debian How to Install a DHCP Server in Ubuntu and Debian Source : https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/ Dynamic Host Configuration Protocol (DHCP) is a network protocol that is used to

More information

LevelOne FBR User s Manual. 1W, 4L 10/100 Mbps ADSL Router. Ver

LevelOne FBR User s Manual. 1W, 4L 10/100 Mbps ADSL Router. Ver LevelOne FBR-1416 1W, 4L 10/100 Mbps ADSL Router User s Manual Ver 1.00-0510 Table of Contents CHAPTER 1 INTRODUCTION... 1 FBR-1416 Features... 1 Package Contents... 3 Physical Details... 3 CHAPTER 2

More information

PetaLinux SDK Guide to QEMU System Simulation

PetaLinux SDK Guide to QEMU System Simulation PetaLinux SDK Guide to QEMU System Simulation v1.1 November 27, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 PetaLinux Software Simulation with QEMU...3

More information

Installing or Upgrading ANM Virtual Appliance

Installing or Upgrading ANM Virtual Appliance CHAPTER 2 This chapter describes how to deploy Cisco ANM Virtual Appliance 4.3 (new installation) and how to upgrade from ANM software version 4.1 or 4.2 to software version 4.3. This chapter includes

More information

Cisco UCS Director FlexPod Management Guide, Release 4.1

Cisco UCS Director FlexPod Management Guide, Release 4.1 First Published: 2013-11-08 Last Modified: 2014-03-26 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

The TinyHPC Cluster. Mukarram Ahmad. Abstract

The TinyHPC Cluster. Mukarram Ahmad. Abstract The TinyHPC Cluster Mukarram Ahmad Abstract TinyHPC is a beowulf class high performance computing cluster with a minor physical footprint yet significant computational capacity. The system is of the shared

More information

Installing and Upgrading Cisco Network Registrar Virtual Appliance

Installing and Upgrading Cisco Network Registrar Virtual Appliance CHAPTER 3 Installing and Upgrading Cisco Network Registrar Virtual Appliance The Cisco Network Registrar virtual appliance includes all the functionality available in a version of Cisco Network Registrar

More information

Sirindhorn International Institute of Technology Thammasat University

Sirindhorn International Institute of Technology Thammasat University Name...ID... Section...Seat No... Sirindhorn International Institute of Technology Thammasat University Midterm Examination s: Semester 2/2009 Course Title Instructor : ITS332 Information Technology II

More information

Cisco VDS Service Broker Software Installation Guide for UCS Platforms

Cisco VDS Service Broker Software Installation Guide for UCS Platforms Cisco VDS Service Broker 1.0.1 Software Installation Guide for UCS Platforms Revised: May 2013 This document provides detailed instructions for installing the Cisco Videoscape Distribution Suite Service

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

ACE Live on RSP: Installation Instructions

ACE Live on RSP: Installation Instructions ACE Live on RSP ACE Live on RSP: Installation Instructions These installation instructions apply to OPNET ACE Live on RSP Release 7.1.3. You can find the latest version of this document at the OPNET Support

More information

Telestra Diskless Installation Guide. Document: DOC-TEL-DSLS-IG-C-0

Telestra Diskless Installation Guide. Document: DOC-TEL-DSLS-IG-C-0 Advanced Simulation Technology inc. 500A Huntmar Park Drive Herndon, Virginia 20170 USA Tel. (703) 471-2104 Fax. (703) 471-2108 www.asti-usa.com Telestra Diskless Installation Guide Document: DOC-TEL-DSLS-IG-C-0

More information

FUJITSU Server PRIMEQUEST 2000 Series. Basic Installation Guide for Linux/KVM

FUJITSU Server PRIMEQUEST 2000 Series. Basic Installation Guide for Linux/KVM CA92344-0706-01 FUJITSU Server PRIMEQUEST 2000 Series Basic Installation Guide for Linux/KVM FUJITSU LIMITED Preface This manual is a guide to assist in the configuration and installation of the PRIMEQUEST

More information

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Author : admin If you decided to use Redhat based Linux distribution inside Virtualbox

More information

FiberstoreOS IP Service Configuration Guide

FiberstoreOS IP Service Configuration Guide FiberstoreOS IP Service Configuration Guide Contents 1 Configuring ARP...4 1.1 Overview...4 1.2 Configuring ARP... 4 1.3 Validation commands...5 2 Configuring Proxy ARP... 7 2.1 Overview...7 2.2 Configuring

More information