Lenovo NE1032 and NE1032T Switch

Size: px
Start display at page:

Download "Lenovo NE1032 and NE1032T Switch"

Transcription

1 Lenovo NE1032 and NE1032T Switch Quickstart Guide Document Version 1.0: 10/2018 Scale Computing

2 Table of Contents Introduction 3 Requirements 3 Connect to the Switch 4 Over the Network 4 Console 4 CLI Mode Basics 5 Set the Management IP 6 Management Configuration Example 6 Management VLAN Configuration Example 6 Update the Firmware 7 General Configuration 9 Set the Enable Mode Password 9 Generate New SSH keys 9 Set AAA Maximum Attempts 9 Create Additional Users 9 Set NTP 9 Set DNS 10 Create VLANs 10 Verify Spanning Tree 10 Logging 11 Port Configuration 12 Switchport Access Mode 12 Switchport Hybrid Mode 12 Switchport Trunk Mode 12 Link Layer Discovery Protocol 13 Feedback & Support 14 Document Feedback 14 Technical Support and Resources 14 Disclaimer 14 Scale Computing

3 Introduction This guide provides general configuration examples. The configurations found here may not be applicable for all environments. Consult Lenovo s official documentation for further information in regards to your environment's unique configuration. Requirements This guide was written for CNOS version If you are on a lesser version, update to match due to command syntax changes. A Terminal Emulation program, such as PuTTY. (Optional) Mini-USB B male to USB A male cable. Scale Computing

4 Connect to the Switch Over the Network By default, the management interface is set to request a DHCP address. If DHCP is available, check your leases on your DHCP server to determine the IP address of the switch. Using an SSH client, you may log in to the switch over the network. The default username is admin, and the default password is admin. Console Using a terminal emulator, such as PuTTY, connect the provided USB adapter to the port shown below. Set your console settings as follows: Default baud rate = 9,600 bps Character size = 8 characters Parity = none Stop bits = 1 Data bits = 8 Flow control = none The default username is admin and the default password is admin. Scale Computing

5 CLI Mode Basics Configuration for the NE1032 or NE1032T is performed through a CLI interface. As a reference: > = unprivileged mode # = privileged mode (config)# = global configuration mode (config-if)# = interface configuration mode (config-vrf)# = virtual routing and forwarding configuration mode Upon login you will be in the unprivileged mode. To enter privileged mode: > enable # NOTE You can use? to display what commands are available in the current mode. In order to configure the switch we need to enter global configuration mode. This mode is used for settings that aren t specific to the switch ports. # conf t (config)# Configuration of switch ports is performed in interface configuration mode. To return to the previous configuration level: (config-if)# exit (config)# Scale Computing

6 Set the Management IP The management network should be separated from any data networks and have physically independent hardware supporting it. The goal of the management network is to maintain remote access to network equipment should a configuration change interrupt the data networks. Optionally, you may use a VLAN interface instead. Management Configuration Example > en # conf t (config)# int mgmt0 (config)# ip addr (config)# vrf context management (config-vrf)# ip route / Management VLAN Configuration Example > en # conf t (config)# interface vlan 1 (config-if)# ip address (config-if)# exit (config)# ip route / Scale Computing

7 Update the Firmware Download the Latest Firmware Download the zip file for the NE1032 here. Download the zip file for the NE1032T here. Unzip the archive. Rename the extracted folder to ne1032 or ne1032t as necessary and place it in your local user home directory. Make sure your firewall will allow port 22, or turn it off temporarily. If you are using a linux machine, ensure sshd is running. # copy sftp sftp:// //home/cdraper/ne1032/ne1032-cnos imgs systemimage all vrf management Output should appear as follows: Confirm download operation? (y/n) [n] y Download in progress Enter Username:user user@ 's password: sftp> progress Progress meter enabled sftp> get /home/user/ne1032/ne1032-cnos imgs /tmp/orca/image /home/user/ne1032/ne1032-cnos imgs 6% 12MB 2.0MB/s 01:22 ETAN/home/user/ne1032/NE1032-CNOS imgs 8% 15MB 1.9MB/s 01:24 ETAN/home/user/ne1032/NE1032-CNOS imgs 100% 175MB 1.6MB/s 01:47 Copy Success Install image...this takes about 90 seconds. Please wait Check image signature succeeded Extracting image: 100% Installing system image to slot 1: Installing image: 100% Extracting image: 100% Installing uboot: Updating flash: 100% Extracting image: 100% Installing NOS Kernel: Updating flash: 100% Extracting image: 100% Installing NOS DFT: Updating flash: 100% Scale Computing

8 Extracting image: 100% Installing NOS RFS: Updating flash: 100% Boot image installation succeeded. OS image installation succeeded. Boot loader now contains Software Version Standby image now contains Software Version Switch is currently set to boot active image. Do you want to change that to the standby image? (y/n) [n] y Reboot the switch to load the new firmware: # reload Scale Computing

9 General Configuration Set the Enable Mode Password (config)# enable password SOMEPASS Generate New SSH keys # conf t (config)# no feature ssh (config)# ssh key rsa length 4096 force (config)# ssh login-attempts 3 (config)# feature ssh Set AAA Maximum Attempts Authentication, authorization, and accounting features determine what resources users have access to, and where to check for that user s credentials. Here, we are setting failed login attempts to be logged and the maximum number of login attempts to 25. (config)# aaa authentication login error-enable (config)# aaa local authentication attempts max-fail 25 Create Additional Users The network-admin account type has full administrative rights to the switch. The network-operator is a limited account type. (config)# username <ADMIN> role network-admin password <PASSWORD> (config)# username <USER> role network-operator password <PASSWORD> Set NTP Any internal or external NTP server that is accessible on your network should work. (config)# feature ntp (config)# ntp server Scale Computing

10 Set DNS Any internal DNS server that is accessible on your network should work. (config)# ip name-server vrf default Create VLANs You may create VLANs individually as follows: (config)# vlan 2 (config-vlan)# name SCALEBACKPLANE Or, you may create multiple VLANs at once using a range: (config)# vlan 1-10 Verify Spanning Tree (config)# sh spanning-tree Ensure that the spanning tree protocol supports rapid convergence. By default, the NE1032 and the NE1032T uses rapid-pvst. VLAN0001 spanning-tree enabled protocol rapid-pvst ROOT ID priority address a48c.db96.7f00 This bridge is the root Hello Time 2 Max age 20 Forward Delay 15 BRIDGE ID priority (32768 sys-id-ext 1) address a48c.db96.7f00 Hello Time 2 Max age 20 Forward Delay 15 Interface Role Sts cost Prio.Nbr Type Ethernet1/1 Desg FWD point-to-point Ethernet1/2 Desg FWD point-to-point Ethernet1/3 Desg FWD point-to-point Ethernet1/4 Desg FWD point-to-point Scale Computing

11 Logging Troubleshooting relies heavily on inspecting the switch logs. In this example, we are setting logging to debug level and storing them locally, allocating the maximum size possible for local storage of the logs. (config)# logging logfile switch_log 6 size (config)# show logging logfile If there is a remote syslog server available: (config)# no logging logfile (config)# logging server vrf data (config)# logging server protocol tcp port 5002 Scale Computing

12 Port Configuration By default, all ports are in access mode for VLAN 1. If you are not utilizing VLANs in your environment, you will not need to configure the VLAN settings for the switch ports further. We recommend isolating backplane ports for Scale Computing equipment to a VLAN other than 1 using access mode. Switchport Access Mode Access mode allows only one VLAN to be configured for a switch port. Use this mode when connecting an end device that is unaware of VLANs, such as the Scale Computing node backplane ports. (config)# interface ethernet 1/1 (config-if)# switchport mode access (config-if)# switchport access vlan 10 Switchport Hybrid Mode Hybrid mode is used when an interface needs to carry multiple VLANs, such as the Scale Computing LAN ports. If your VMs need access to specific VLANs other than what the Scale Computing node itself resides upon, you will need to tag those VLANs. In this example, the Scale Computing appliance is being managed on VLAN 5. The management interface is unaware of VLANs and thus needs to be untagged traffic. Note that VLAN 5 is omitted from the list of egress-tagged VLANs. (config)# interface ethernet 1/1 (config-if)# switchport mode hybrid (config-if)# switchport hybrid native vlan 5 (config-if)# switchport hybrid allowed vlan 1-10 (config-if)# switchport hybrid egress-tagged vlan 1,2,3,4,6,7,8,9,10 (config-if)# show interface eth1/1 switchport (config-if)# show running-config interface ethernet1/1 Switchport Trunk Mode Trunk mode is also used when an interface needs to carry multiple VLANs. Trunk mode configuration is less explicit than Hybrid mode. In the following configuration example, the Scale Computing appliance is being managed on VLAN 5. (config)# interface ethernet 1/1 (config-if)# switchport mode trunk (config-if)# switchport trunk allowed vlan all (config-if)# switchport trunk native vlan 5 (config-if)# show interface eth1/1 switchport (config-if)# show running-config interface ethernet1/1 Scale Computing

13 Link Layer Discovery Protocol LLDP is very useful for troubleshooting and network mapping. (config)# interface ethernet 1/1 (config-if)# lldp transmit (config-if)# lldp receive (config-if)# lldp trap-notification (config-if)# end To view information about neighboring network devices: # show lldp neighbors [detail] # show lldp interface all Scale Computing

14 Feedback & Support Document Feedback Scale Computing welcomes your suggestions for improving our documentation. Please send your feedback to Technical Support and Resources There are many technical support resources available for use. Access this document, and many others, at Disclaimer Switches are not covered under the support and warranty for the Scale Computing HC3 system. Scale Computing is not responsible for any issues arising from the use of this guide. Any and all questions, issues, or concerns regarding switch configuration should be addressed with the switch manufacturer directly. Scale Computing

Lenovo RackSwitch G8272. Release Notes. For Cloud Network Operating System 10.3

Lenovo RackSwitch G8272. Release Notes. For Cloud Network Operating System 10.3 Lenovo RackSwitch G8272 Release Notes For Cloud Network Operating System 10.3 Note: Before using this information and the product it supports, read the general information in the Safety information and

More information

Laboration 2 Troubleshooting Switching and First-Hop Redundancy

Laboration 2 Troubleshooting Switching and First-Hop Redundancy Laboration 2 Troubleshooting Switching and First-Hop Redundancy Topology All contents are Copyright 1992 2011 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1

More information

Lenovo ThinkSystem NE1032/NE1032T/NE1072T. Release Notes. For Lenovo Cloud Network Operating System 10.6

Lenovo ThinkSystem NE1032/NE1032T/NE1072T. Release Notes. For Lenovo Cloud Network Operating System 10.6 Lenovo ThinkSystem NE1032/NE1032T/NE1072T Release Notes For Lenovo Cloud Network Operating System 10.6 Note: Before using this information and the product it supports, read the general information in the

More information

Lenovo RackSwitch G8272. Release Notes. For Cloud Network Operating System 10.2

Lenovo RackSwitch G8272. Release Notes. For Cloud Network Operating System 10.2 Lenovo RackSwitch G8272 Release Notes For Cloud Network Operating System 10.2 Note: Before using this information and the product it supports, read the general information in the Safety information and

More information

Buy full file at

Buy full file at 14 Chapter 2 LAN Redundancy Chapter 2 LAN Redundancy 2.0.1.2 Class Activity Stormy Traffic ( ) Objective Explain the purpose of the Spanning Tree Protocol (STP) in a switched LAN environment with redundant

More information

Lenovo Flex System SI Gb System Interconnect Module. Release Notes. for Networking OS 8.2

Lenovo Flex System SI Gb System Interconnect Module. Release Notes. for Networking OS 8.2 Lenovo Flex System SI4091 10Gb System Interconnect Module Release Notes for Networking OS 8.2 Note: Before using this information and the product it supports, read the general information in the Safety

More information

Lenovo RackSwitch G8272. Release Notes. For Lenovo Cloud Network Operating System 10.7

Lenovo RackSwitch G8272. Release Notes. For Lenovo Cloud Network Operating System 10.7 Lenovo RackSwitch G8272 Release Notes For Lenovo Cloud Network Operating System 10.7 Note: Before using this information and the product it supports, read the general information in the Safety information

More information

DGS-3630-Series Switches

DGS-3630-Series Switches DGS-3630-Series Switches Switch Management Interfaces Adding Administrator Account Enabling Remote Management (SSH) Changing Switch IP Address Saving Configuration Resetting to Factory Defaults Switch

More information

Lenovo ThinkSystem NE Release Notes. For Lenovo Cloud Network Operating System 10.6

Lenovo ThinkSystem NE Release Notes. For Lenovo Cloud Network Operating System 10.6 Lenovo ThinkSystem NE10032 Release Notes For Lenovo Cloud Network Operating System 10.6 Note: Before using this information and the product it supports, read the general information in the Safety information

More information

CCNA Semester 3 labs. Part 1 of 1 Labs for chapters 1 8

CCNA Semester 3 labs. Part 1 of 1 Labs for chapters 1 8 CCNA Semester 3 labs Part 1 of 1 Labs for chapters 1 8 2.1.2.12 Lab - Building a Switched Network with Redundant Links 2.3.2.3 Lab - Configuring Rapid PVST+, PortFast and BPDU Guard 2.4.3.4 Lab - Configuring

More information

Dell EMC Networking S4148-ON and S4128-ON

Dell EMC Networking S4148-ON and S4128-ON Dell EMC Networking S4148-ON and S4128-ON Switch Configuration Guide for Dell EMC SC Series SANs Abstract This document illustrates how to configure Dell EMC Networking S4148-ON and S4128-ON switches for

More information

Getting Started. Getting Started with Your Platform Model. Factory Default Configurations CHAPTER

Getting Started. Getting Started with Your Platform Model. Factory Default Configurations CHAPTER CHAPTER 2 This chapter describes how to access the command-line interface, configure the firewall mode, and work with the configuration. This chapter includes the following sections: with Your Platform

More information

Dell EMC Networking S4148-ON and S4128-ON

Dell EMC Networking S4148-ON and S4128-ON Dell EMC Networking S4148-ON and S4128-ON Switch Configuration Guide for Dell PS Series SANs Abstract This document illustrates how to configure Dell EMC Networking S4148-ON and S4128-ON switches for use

More information

CCNA Semester 3 labs. Labs for chapters 2 10

CCNA Semester 3 labs. Labs for chapters 2 10 CCNA Semester 3 labs Labs for chapters 2 10 2.1.4.5 Lab - Configure Extended VLANs, VTP, and DTP 2.2.2.5 Lab - Troubleshooting Inter-VLAN Routing 3.1.2.12 Lab - Building a Switched Network with Redundant

More information

Laboration 1 Examine the Topology and Basic Troubleshooting Commands

Laboration 1 Examine the Topology and Basic Troubleshooting Commands Laboration 1 Examine the Topology and Basic Troubleshooting Commands Topology All contents are Copyright 1992 2011 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page

More information

EX2500 Ethernet Switch 3.1 Release Notes

EX2500 Ethernet Switch 3.1 Release Notes EX2500 Ethernet Switch 3.1 Release Notes Release 3.1R2 29 January 2010 Revision 3 These release notes accompany Release 3.1R2 of the Juniper Networks EX2500 Ethernet Switches and software. They briefly

More information

Lenovo RackSwitch G8272. Release Notes. For Networking OS 8.2

Lenovo RackSwitch G8272. Release Notes. For Networking OS 8.2 Lenovo RackSwitch G8272 Release Notes For Networking OS 8.2 Note: Before using this information and the product it supports, read the general information in the Safety information and Environmental Notices

More information

Chapter 4 Lab 4-2 Multiple Spanning Tree INSTRUCTOR VERSION

Chapter 4 Lab 4-2 Multiple Spanning Tree INSTRUCTOR VERSION CCNPv7.1 SWITCH Chapter 4 Lab 4-2 Multiple Spanning Tree INSTRUCTOR VERSION Topology Objectives Implement Multiple Spanning Tree Leverage VTP version 3 with MST Background Cisco s Per VLAN Spanning Tree

More information

CISCO SWITCH BEST PRACTICES GUIDE

CISCO SWITCH BEST PRACTICES GUIDE CISCO SWITCH BEST PRACTICES GUIDE Table of Contents (After Clicking Link Hit HOME to Return to TOC) 1) Add Hostname... 2 2) Add Username and Password... 2 3) Create Secret Password... 2 4) Encrypt Password...

More information

OS10 Virtualization Guide. Enterprise Edition

OS10 Virtualization Guide. Enterprise Edition OS10 Virtualization Guide Enterprise Edition 2018-7 Rev. A00 Contents 1 OS10 software virtualization...4 2 Setup GNS3 server...7 3 Setup GNS3 client... 11 4 Start GNS3 client...16 5 Import OS10 appliance...20

More information

Cisco Nexus Switch Configuration Guide for Dell SC Series SANs. Dell Storage Engineering August 2015

Cisco Nexus Switch Configuration Guide for Dell SC Series SANs. Dell Storage Engineering August 2015 Cisco Nexus 6001 Switch Configuration Guide for Dell SC Series SANs Dell Storage Engineering August 2015 Revisions Date August 2015 Description Initial release THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES

More information

Dell EMC Networking S6010-ON

Dell EMC Networking S6010-ON Dell EMC Networking S6010-ON Switch Configuration Guide for Dell PS Series SANs Abstract This document illustrates how to configure Dell EMC Networking S6010-ON switches for use with Dell PS Series storage

More information

Lenovo Flex System Fabric EN4093R 10Gb Scalable Switch. Release Notes. for Lenovo Network OS 8.4

Lenovo Flex System Fabric EN4093R 10Gb Scalable Switch. Release Notes. for Lenovo Network OS 8.4 Lenovo Flex System Fabric EN4093R 10Gb Scalable Switch Release Notes for Lenovo Network OS 8.4 Note: Before using this information and the product it supports, read the general information in the Safety

More information

Lab - Troubleshooting VLAN Configurations (Instructor Version Optional Lab)

Lab - Troubleshooting VLAN Configurations (Instructor Version Optional Lab) (Instructor Version Optional Lab) Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only. Optional activities are designed to enhance understanding and/or

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

MR2324-4C. 24-Port Intelligent Gigabit Ethernet Switch. Management Guide

MR2324-4C. 24-Port Intelligent Gigabit Ethernet Switch. Management Guide MR2324-4C 24-Port Intelligent Gigabit Ethernet Switch Management Guide Management Guide Intelligent Gigabit Ethernet Switch with 24 10/100/1000BASE-T (RJ-45) Ports, and 4 Combination RJ-45/SFP Ports E082004-R01

More information

VLAN Configuration via CLI on 300/500 Series Managed Switches

VLAN Configuration via CLI on 300/500 Series Managed Switches Article ID: 4986 4986 - VLAN Configuration via CLI on 300/500 Series Managed Switches Objective VLANs allow you to logically segment a LAN into different broadcast domains. In scenarios where sensitive

More information

Initial Configuration for the Switch

Initial Configuration for the Switch Options for Initial Configuration, page 1 Configuring the Switch Using the Web User Interface, page 1 Configuring the Switch Using the CLI, page 4 Configuring the Switch in the ROMMON Mode, page 12 Options

More information

switch# switch#configure terminal switch(config)#spanning-tree mode pvst switch(config)#spanning-tree extend system-id switch(config)#vtp mode transparent switch(config)#vlan 4093 Switch(config-vlan)#exit

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

LAN Troubleshooting. Ethernet Troubleshooting

LAN Troubleshooting. Ethernet Troubleshooting CCIE Routing & Switching Advanced Troubleshooting Bootcamp LAN Troubleshooting http:// Ethernet Troubleshooting No Ethernet switching troubleshooting in Troubleshooting Section, but it can be included

More information

About Chassis Manager

About Chassis Manager CHAPTER 1 Chassis Manager runs directly on your Server Switch to perform administration tasks. This chapter discusses the various components of the interface. Chassis Manager runs on all Server Switches.

More information

Lenovo ThinkSystem NE Release Notes. For Lenovo Cloud Network Operating System 10.7

Lenovo ThinkSystem NE Release Notes. For Lenovo Cloud Network Operating System 10.7 Lenovo ThinkSystem NE10032 Release Notes For Lenovo Cloud Network Operating System 10.7 Note: Before using this information and the product it supports, read the general information in the Safety information

More information

Chapter 3 Lab 3-1, Assembling Maintenance and Troubleshooting Tools

Chapter 3 Lab 3-1, Assembling Maintenance and Troubleshooting Tools Chapter 3 Lab 3-1, Assembling Maintenance and Troubleshooting Tools Physical Topology All contents are Copyright 1992 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information.

More information

Lenovo ThinkSystem NE1032/NE1032T/NE1072T RackSwitch. Release Notes. For Lenovo Cloud Network Operating System 10.8

Lenovo ThinkSystem NE1032/NE1032T/NE1072T RackSwitch. Release Notes. For Lenovo Cloud Network Operating System 10.8 Lenovo ThinkSystem NE1032/NE1032T/NE1072T RackSwitch Release Notes For Lenovo Cloud Network Operating System 10.8 Note: Before using this information and the product it supports, read the general information

More information

Setting-up WAN Emulation using WAN-Bridge Live-CD v1.10

Setting-up WAN Emulation using WAN-Bridge Live-CD v1.10 Setting-up WAN Emulation using WAN-Bridge Live-CD v1.10 Contents Document version 0.1 Overview... 2 What s New in Version 1.10... 2 Software Installed on the CD... 2 License... 3 Sample Lab Configurations...

More information

C H A P T E R Commands Cisco SFS Product Family Command Reference OL

C H A P T E R Commands Cisco SFS Product Family Command Reference OL CHAPTER 3 This chapter documents the following commands: aaa accounting, page 3-8 aaa authorization, page 3-9 action, page 3-11 addr-option, page 3-12 authentication, page 3-14 auto-negotiate (Ethernet

More information

CLI Guide. JetStream 8-Port Gigabit Smart Switch T1500G-10MPS/T1500G-8T (TL-SG2008) T1500G-10PS (TL-SG2210P) REV

CLI Guide. JetStream 8-Port Gigabit Smart Switch T1500G-10MPS/T1500G-8T (TL-SG2008) T1500G-10PS (TL-SG2210P) REV CLI Guide JetStream 8-Port Gigabit Smart Switch T1500G-10MPS/T1500G-8T (TL-SG2008) T1500G-10PS (TL-SG2210P) REV1.0.2 1910012064 COPYRIGHT & TRADEMARKS Specifications are subject to change without notice.

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

Design and Implementation Plan for Network Based on the ALOHA Point of Sale System. Proposed by Jedadiah Casey. Introduction

Design and Implementation Plan for Network Based on the ALOHA Point of Sale System. Proposed by Jedadiah Casey. Introduction Design and Implementation Plan for Network Based on the ALOHA Point of Sale System Proposed by Jedadiah Casey Introduction The goal of this design document is to provide a framework of suggested implementation

More information

Deploy the ExtraHop Discover Appliance 1100

Deploy the ExtraHop Discover Appliance 1100 Deploy the ExtraHop Discover Appliance 1100 Published: 2018-07-17 The following procedures explain how to deploy an ExtraHop Discover appliance 1100. System requirements Your environment must meet the

More information

Yamaha L2 Switch. SWP1 Series(SWP1-8, SWP1-8MMF, SWP1-16MMF) Command Reference Rev

Yamaha L2 Switch. SWP1 Series(SWP1-8, SWP1-8MMF, SWP1-16MMF) Command Reference Rev Yamaha L2 Switch SWP1 Series(SWP1-8, SWP1-8MMF, SWP1-16MMF) Command Reference Rev.2.01.04 2 Command Reference TOC Contents Preface: Introduction...10 Chapter 1: How to read the command reference...11 1.1

More information

Viewing System Status, page 404. Backing Up and Restoring a Configuration, page 416. Managing Certificates for Authentication, page 418

Viewing System Status, page 404. Backing Up and Restoring a Configuration, page 416. Managing Certificates for Authentication, page 418 This chapter describes how to maintain the configuration and firmware, reboot or reset the security appliance, manage the security license and digital certificates, and configure other features to help

More information

Bring-up the Router. Boot the Router

Bring-up the Router. Boot the Router After installing the hardware, boot the router. Connect to the XR LXC console port and power on the router. The router completes the boot process using the pre-installed operating system (OS) image. If

More information

Lab 8.5.2: Troubleshooting Enterprise Networks 2

Lab 8.5.2: Troubleshooting Enterprise Networks 2 Lab 8.5.2: Troubleshooting Enterprise Networks 2 Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway Fa0/0 192.168.10.1 255.255.255.0 N/A R1 Fa0/1 192.168.11.1 255.255.255.0

More information

EX2500 Ethernet Switch 3.0 Release Notes

EX2500 Ethernet Switch 3.0 Release Notes EX2500 Ethernet Switch 3.0 Release Notes Release 3.0R1 24 April 2009 Part Number: 530-029707-01 Revision 2 These release notes accompany Release 3.0R1 of the Juniper Networks EX2500 Ethernet Switches and

More information

WLM1200-RMTS User s Guide

WLM1200-RMTS User s Guide WLM1200-RMTS User s Guide Copyright 2011, Juniper Networks, Inc. 1 WLM1200-RMTS User Guide Contents WLM1200-RMTS Publication Suite........................................ 2 WLM1200-RMTS Hardware Description....................................

More information

3.2.7 switch# switch#configure terminal switch(config)#spanning-tree mode pvst switch(config)#spanning-tree extend systemid switch(config)#vlan 1 switch(config-vlan)#exit switch(config)#vlan 10 switch(config-vlan)#exit

More information

Chapter 10 Lab 10-1, Troubleshooting Complex Environments

Chapter 10 Lab 10-1, Troubleshooting Complex Environments Chapter 10 Lab 10-1, Troubleshooting Complex Environments Lab Topology Objectives Load the device configuration files for each trouble ticket. Diagnose and resolve problems related to features, protocols,

More information

1. Products Overview Major Management Features Product Specification Package Contents Hardware Description...

1. Products Overview Major Management Features Product Specification Package Contents Hardware Description... NGSM24T2 2 1. Products Overview... 9 1.1 Major Management Features... 9 1.2 Product Specification... 10 1.3 Package Contents... 12 2. Hardware Description... 14 3. Preparation for Management... 16 3.1

More information

Cisco Nexus Data Broker for Network Traffic Monitoring and Visibility

Cisco Nexus Data Broker for Network Traffic Monitoring and Visibility Guide Cisco Nexus Data Broker for Network Traffic Monitoring and Visibility Solution Implementation Guide 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information.

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER 7 CHAPTER This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the Cisco MWR 2941 router. It includes information about VLAN

More information

Management Software AT-S79. User s Guide. For use with the AT-GS950/16 and AT-GS950/24 Smart Switches. Version Rev.

Management Software AT-S79. User s Guide. For use with the AT-GS950/16 and AT-GS950/24 Smart Switches. Version Rev. Management Software AT-S79 User s Guide For use with the AT-GS950/16 and AT-GS950/24 Smart Switches Version 1.0.0 613-000207 Rev. A Copyright 2005 Allied Telesyn, Inc. All rights reserved. No part of this

More information

RealCiscoLAB.com. Observe what happens when the default spanning tree behavior is modified.

RealCiscoLAB.com. Observe what happens when the default spanning tree behavior is modified. RealCiscoLAB.com CCNPv6 SWITCH Modifying Default Spanning Tree Behavior Topology Objective Background Observe what happens when the default spanning tree behavior is modified. Four switches have just been

More information

Troubleshooting CHAPTER

Troubleshooting CHAPTER CHAPTER 3 This chapter provides troubleshooting procedures for basic problems with the access point. For the most up-to-date, detailed troubleshooting information, refer to the Cisco Technical Support

More information

CounterACT 7.0 Single CounterACT Appliance

CounterACT 7.0 Single CounterACT Appliance CounterACT 7.0 Single CounterACT Appliance Quick Installation Guide Table of Contents Welcome to CounterACT Version 7.0....3 Included in your CounterACT Package....3 Overview...4 1. Create a Deployment

More information

Understanding and Configuring STP

Understanding and Configuring STP CHAPTER 14 This chapter describes how to configure the Spanning Tree Protocol (STP) on a Catalyst 4500 series switch. It also provides guidelines, procedures, and configuration examples. This chapter includes

More information

Chapter 10 Lab 10-2, Securing VLANs INSTRUCTOR VERSION

Chapter 10 Lab 10-2, Securing VLANs INSTRUCTOR VERSION CCNPv7.1 SWITCH Chapter 10 Lab 10-2, Securing VLANs INSTRUCTOR VERSION Topology Objectives Background Secure the server farm using private VLANs. Secure the staff VLAN from the student VLAN. Secure the

More information

UniNets CCNA Security LAB MANUAL UNiNets CCNA Cisco Certified Network Associate Security LAB MANUAL UniNets CCNA LAB MANUAL

UniNets CCNA Security LAB MANUAL UNiNets CCNA Cisco Certified Network Associate Security LAB MANUAL UniNets CCNA LAB MANUAL UNiNets CCNA Cisco Certified Network Associate Security LAB MANUAL Contents: UniNets CCNA Security LAB MANUAL Section 1 Securing Layer 2 Lab 1-1 Configuring Native VLAN on a Trunk Links Lab 1-2 Disabling

More information

Configure Dynamic Host Configuration Protocol (DHCP) Image Upgrade Settings on a Switch through the Command Line Interface (CLI)

Configure Dynamic Host Configuration Protocol (DHCP) Image Upgrade Settings on a Switch through the Command Line Interface (CLI) Configure Dynamic Host Configuration Protocol (DHCP) Image Upgrade Settings on a Switch through the Command Line Interface (CLI) Objective The Dynamic Host Configuration Protocol (DHCP) image upgrade feature

More information

Management Software AT-S101. User s Guide. For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch. Version Rev.

Management Software AT-S101. User s Guide. For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch. Version Rev. Management Software AT-S101 User s Guide For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch Version 1.0.0 613-000985 Rev. A Copyright 2008 Allied Telesis, Inc. All rights reserved. No part

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

MR2228-S2C. Stack Fast Ethernet Switch Management Guide

MR2228-S2C. Stack Fast Ethernet Switch Management Guide MR2228-S2C Stack Fast Ethernet Switch Management Guide Management Guide Stackable Fast Ethernet Switch with 24 10/100BASE-TX (RJ-45) Ports, 2 1000BASE-T Combination Ports (RJ-45/SFP), and 2 1000BASE-T/Stacking

More information

Administration of Cisco WLC

Administration of Cisco WLC Using the Controller Interface, on page 1 Enabling Web and Secure Web Modes, on page 6 Telnet and Secure Shell Sessions, on page 8 Management over Wireless, on page 13 Configuring Management using Dynamic

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 9 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094). It includes information about VLAN membership modes, VLAN configuration

More information

Overview. ACE Appliance Device Manager Overview CHAPTER

Overview. ACE Appliance Device Manager Overview CHAPTER 1 CHAPTER This section contains the following: ACE Appliance Device Manager, page 1-1 Logging Into ACE Appliance Device Manager, page 1-3 Changing Your Account Password, page 1-4 ACE Appliance Device Manager

More information

Chapter 6 Global CONFIG Commands

Chapter 6 Global CONFIG Commands Chapter 6 Global CONFIG Commands aaa accounting Configures RADIUS or TACACS+ accounting for recording information about user activity and system events. When you configure accounting on an HP device, information

More information

DES-3528/52 Series Firmware Release Notes

DES-3528/52 Series Firmware Release Notes : Prom Code : v1.00.b007 Published: 2009/3/20 These release notes include important information about D-Link switch firmware revisions. Verify that these release notes are correct for your switch: - If

More information

CCNA Semester 2 labs. Labs for chapters 2 10

CCNA Semester 2 labs. Labs for chapters 2 10 CCNA Semester 2 labs Labs for chapters 2 10 2.2.2.5 Lab - Configuring IPv4 Static and Default Routes 2.3.2.4 Lab - Troubleshooting Static Routes 3.2.1.9 Lab - Configuring Basic RIPv2 5.2.2.9 Lab - Configuring

More information

VERTIV. Avocent ACS8xxx Advanced Console System Release Notes VERSION 2.4.2, AUGUST 24, Release Notes Section Outline. 1 Update Instructions

VERTIV. Avocent ACS8xxx Advanced Console System Release Notes VERSION 2.4.2, AUGUST 24, Release Notes Section Outline. 1 Update Instructions VERTIV Avocent ACS8xxx Advanced Console System Release Notes VERSION 2.4.2, AUGUST 24, 2018 Release Notes Section Outline 1 Update Instructions 2 Appliance Firmware Version Information 3 Local Client Requirements

More information

Chapter 5 Lab 5-1 Inter-VLAN Routing INSTRUCTOR VERSION

Chapter 5 Lab 5-1 Inter-VLAN Routing INSTRUCTOR VERSION CCNPv7.1 SWITCH Chapter 5 Lab 5-1 Inter-VLAN Routing INSTRUCTOR VERSION Topology Objectives Implement a Layer 3 EtherChannel Implement Static Routing Implement Inter-VLAN Routing Background Cisco's switching

More information

Yamaha L2 Switch. Intelligent L2 PoE SWR2311P-10G Command Reference Rev

Yamaha L2 Switch. Intelligent L2 PoE SWR2311P-10G Command Reference Rev Yamaha L2 Switch Intelligent L2 PoE SWR2311P-10G Command Reference Rev.2.02.11 2 Command Reference TOC Contents Preface: Introduction...12 Chapter 1: How to read the command reference...13 1.1 Applicable

More information

ICND2. Rapid Spanning-Tree Protocol. These exercises utilize build on the previous ones used in the last class sessions.

ICND2. Rapid Spanning-Tree Protocol. These exercises utilize build on the previous ones used in the last class sessions. ICND2 Rapid Spanning-Tree Protocol TOPOLOGY 5x2950 (Layer 2 Switches) These exercises utilize build on the previous ones used in the last class sessions. Lab Exercise 1: Rapid Spanning-Tree Configuration

More information

T PCT. Smart PoE Switch REV

T PCT. Smart PoE Switch REV T1500-28PCT Smart PoE Switch REV1.0.0 1910011255 COPYRIGHT & TRADEMARKS Specifications are subject to change without notice. is a registered trademark of TP-LINK TECHNOLOGIES CO., LTD. Other brands and

More information

Managed Ethernet Switch User s Manual

Managed Ethernet Switch User s Manual Managed Ethernet Switch User s Manual Information Coding: UM00D908 Version: V1.1 Product version: all Product Name: Managed Industrial Ethernet Switches on DIN Rail and Rack. Applicable to: Technical Support

More information

EdgeXOS Platform QuickStart Guide

EdgeXOS Platform QuickStart Guide EdgeXOS Platform QuickStart Guide EdgeXOS Functionality Overview The EdgeXOS platform is a Unified Bandwidth Management device, meaning that it has the ability to support multiple bandwidth management

More information

Configuring the SSL Services Module

Configuring the SSL Services Module CHAPTER 3 This chapter describes how to configure the SSL Services Module from the Line Interface (CLI) of the module: Using the CLI, page 3-1 Preparing to Configure the SSL Services Module, page 3-1 Upgrading

More information

Lab Configuring and Testing the Rapid Spanning Tree Prototype

Lab Configuring and Testing the Rapid Spanning Tree Prototype Lab 7.3.3 Configuring and Testing the Rapid Spanning Tree Prototype Device Designation Device Name IP Address Subnet Mask Default Gateway Fa0/0.1 10.0.0.1 255.255.255.0 R1 BR4 Fa0/0.10 10.10.10.254 255.255.255.0

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 10 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the switch. It includes information about VLAN membership

More information

NW Switch Configuration Guide DX2000. NEC Scalable Modular Server. 1. Introduction. 2. System Configuration. 3. Layer1 Configuration

NW Switch Configuration Guide DX2000. NEC Scalable Modular Server. 1. Introduction. 2. System Configuration. 3. Layer1 Configuration NW Switch Configuration Guide NEC Scalable Modular Server DX2000 1. Introduction 2. System Configuration 3. Layer1 Configuration 4. Layer2 Configuration Second edition November 2017 NEC Corporation 2017

More information

Appendix A Command Index

Appendix A Command Index Appendix A Command Index The command index includes all the commands in the Command Manual, which are arranged alphabetically. A B C D E F G H I J K L M N O P Q R S T U V W X Y Z A aaa nas-id profile 21-AAA

More information

FS S5800-8TF12S Switch

FS S5800-8TF12S Switch FS S5800-8TF12S Switch Release Note Issue R1.1 Date 2018-08-14 Content 1 Introduction... 5 2 Version Information... 6 2.1 Basic Information...6 2.2 Release History... 6 2.3 Hardware Supported...8 2.4 Version

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 : 642-999 Title : Implementing Cisco Data Center Unified Computing Vendor : Cisco Version : DEMO Get Latest

More information

File Transfers. Contents

File Transfers. Contents A File Transfers Contents Overview.................................................... A-3................................ A-3 General Software Download Rules............................ A-4 Using TFTP

More information

T2600G-28TS (TL-SG3424) T2600G-52TS (TL-SG3452) JetStream Gigabit L2 Managed Switch

T2600G-28TS (TL-SG3424) T2600G-52TS (TL-SG3452) JetStream Gigabit L2 Managed Switch T2600G-28TS (TL-SG3424) T2600G-52TS (TL-SG3452) JetStream Gigabit L2 Managed Switch REV1.0.0 1910011258 COPYRIGHT & TRADEMARKS Specifications are subject to change without notice. is a registered trademark

More information

Lab 8-2 Securing Spanning Tree Protocol

Lab 8-2 Securing Spanning Tree Protocol Lab 8-2 Securing Spanning Tree Protocol Learning Objectives Secure the Layer 2 spanning tree topology with BPDU guard Protect the primary and secondary root bridge with root guard Protect switchports from

More information

Cisco Nexus 5648Q. Switch Configuration Guide for Dell PS Series SANs

Cisco Nexus 5648Q. Switch Configuration Guide for Dell PS Series SANs Cisco Nexus 5648Q Switch Configuration Guide for Dell PS Series SANs Abstract This document illustrates how to configure a Cisco Nexus 5648Q switch for use with Dell PS Series storage using Dell EMC best

More information

IBM System Networking RackSwitch G8332. Release Notes. For Networking OS 7.7

IBM System Networking RackSwitch G8332. Release Notes. For Networking OS 7.7 IBM System Networking RackSwitch G8332 Release Notes For Networking OS 7.7 Note: Before using this information and the product it supports, read the general information in the Safety information and Environmental

More information

CounterACT 7.0. Quick Installation Guide for a Single Virtual CounterACT Appliance

CounterACT 7.0. Quick Installation Guide for a Single Virtual CounterACT Appliance CounterACT 7.0 Quick Installation Guide for a Single Virtual CounterACT Appliance Table of Contents Welcome to CounterACT Version 7.0... 3 Overview... 4 1. Create a Deployment Plan... 5 Decide Where to

More information

Interconnecting Cisco Networking Devices Part 1 (ICND1) Course Overview

Interconnecting Cisco Networking Devices Part 1 (ICND1) Course Overview Interconnecting Cisco Networking Devices Part 1 (ICND1) Course Overview This course will teach students about building a simple network, establishing internet connectivity, managing network device security,

More information

Lab 5.5.2: Challenge Spanning Tree Protocol

Lab 5.5.2: Challenge Spanning Tree Protocol Topology Diagram Addressing Table Device (Hostname) Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 172.17.99.11 255.255.255.0 N/A S2 VLAN 99 172.17.99.12 255.255.255.0 N/A S3 VLAN 99 172.17.99.13

More information

CCNA Security 1.0 Student Packet Tracer Manual

CCNA Security 1.0 Student Packet Tracer Manual 1.0 Student Packet Tracer Manual This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors

More information

FortiNAC Motorola Wireless Controllers Integration

FortiNAC Motorola Wireless Controllers Integration FortiNAC Motorola Wireless Controllers Integration Version: 8.x Date: 8/29/2018 Rev: B FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET KNOWLEDGE

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 16 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on your Catalyst 2950 or Catalyst 2955 switch. It includes information

More information

Table of Contents SMARTZONE G5 USER MANUAL

Table of Contents SMARTZONE G5 USER MANUAL G5 PDU User Manual 1 Table of Contents Table of Figures... 5 Section 1 System Overview... 8 Intelligent Network Controller... 8 Connecting the PDU to a LAN Ethernet Port... 8 Connecting the PDU to a Computer

More information

HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch

HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch 1 Target audience System Engineers interested to understand the Fabric Attach (FA) technology and/or for demo proposes. Why does it make sense

More information

Skills Assessment (EIGRP) Student Training Exam

Skills Assessment (EIGRP) Student Training Exam Skills Assessment (EIGRP) Student Training Exam Topology 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 16 Addressing Table Assessment Objectives Device

More information

MiPDF.COM. 3. Which procedure is used to access a Cisco 2960 switch when performing an initial configuration in a secure environment?

MiPDF.COM. 3. Which procedure is used to access a Cisco 2960 switch when performing an initial configuration in a secure environment? CCNA1 v6.0 Chapter 2 Exam Answers 2017 (100%) MiPDF.COM 1. What is the function of the kernel of an operating software? It provides a user interface that allows users to request a specific task. The kernel

More information

3.2.7 switch#configure terminal switch(config)#spanning-tree mode pvst switch(config)#spanning-tree extend systemid switch(config)#vlan 1 switch(config-vlan)#exit switch(config)#vlan 10 switch(config-vlan)#exit

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: 2017-12-29 This guide explains how to install the rack-mounted EDA 3100, EDA 6100, EDA 8100, and EDA 9100 ExtraHop Discover appliances.

More information