交换机的基本原理配置(一)

1、配置主机名

在全局模式下输入hostname 名字 然后回车即可立马生效(在生产环境交换机必须有自己唯一的名字)
 Switch(config)#hostname jsh-sw1jsh-sw1(config)#

2、显示系统OS名称及版本信息

特权模式下,输入命令 show version
 Switch#show versionCisco IOS Software, C2960 Software (C2960-LANBASE-M), Version 12.2(25)FX, RELEASE SOFTWARE (fc1)Copyright (c) 1986-2005 by Cisco Systems, Inc.Compiled Wed 12-Oct-05 22:05 by pt_teamROM: C2960 Boot Loader (C2960-HBOOT-M) Version 12.2(25r)FX, RELEASE SOFTWARE (fc4)System returned to ROM by power-onCisco WS-C2960-24TT (RC32300) processor (revision C0) with 21039K bytes of memory.
 24 FastEthernet/IEEE 802.3 interface(s)      ——说明有24个百兆接口2 Gigabit Ethernet/IEEE 802.3 interface(s)   ——说明有 2个千兆接口63488K bytes of flash-simulated non-volatile configuration memory.<u>Base ethernet MAC Address    : 0040.0BE5.7EEE</u>    (MAC地址)Motherboard assembly number     : 73-9832-06Power supply part number        : 341-0097-02<u>Motherboard serial number    : FOC103248MJ</u>       (主板S/N序列号,用于辨别交换机)Power supply serial number      : DCA102133JAModel revision number           : B0Motherboard revision number     : C0Model number                    : WS-C2960-24TTSystem serial number            : FOC1033Z1EY--More--

3、查看交换机的MAC地址表

特权模式下输入命令 show mac-address-table 显示静态MAC地址(手工方式添加,无老化时间,会一直存在)
特权模式下输入命令 show mac-address-table dynamic 显示动态MAC地址(通过arp学习到的,有老化时间)

image

 Switch3#show mac-address-table Mac Address Table-------------------------------------------Vlan    Mac Address       Type        Ports----    -----------       --------    -----1    0000.0c0c.7a5a    DYNAMIC     Fa0/24 (其中0000.0c0c.7a5a是MAC地址;类型DYNAMIC表示是动态学习到的;Fa0/24表示该MAC地址对应交换机的端口号)1    0001.9734.c756    DYNAMIC     Fa0/241    0001.c981.6818    DYNAMIC     Fa0/241    0004.9a65.ed19    DYNAMIC     Fa0/11    00e0.f99e.4637    DYNAMIC     Fa0/2

4、指定接口的双工模式

在接口模式下,输入命令duplex full 则设置为:全双工
在接口模式下,输入命令duplex half 则设置为:办双工
在接口模式下,输入命令duplex auto 则设置为:自动(默认为此模式)

5、指定接口的速率

在接口模式下,输入命令 speed 10 则设置为10M
在接口模式下,输入命令 speed 100 则设置为100M
在接口模式下,输入命令 speed 1000 则设置为1000M
在接口模式下,输入命令 speed auto 则设置为自动(默认为此速度)
 Switch(config-if)#speed ?10    Force 10 Mbps operation100   Force 100 Mbps operationauto  Enable AUTO speed configurationSwitch(config-if)#speed auto Switch(config-if)#

6、查看接口的双工模式和速率

在特权模式,使用命令 show interface 端口
Switch#show interfaces fa 0/24
FastEthernet 0/24 is up, line protocol is up (connected)
Hardware is Lance, address is 0005.5eb1.7918 (bia 0005.5eb1.7918)
BW 100000 Kbit, DLY 1000 usec, reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)  
Full-duplex, 100Mb/s     ——双工模式及速率

7、设备配置的辅助命令

7.1 命令行界面空闲一段时间,重回初始界面的问题
在全局模式下,输入命令 line con 0 然后回车换行,输入命令exec-timeout 0 0 即可设置为永不超时
jingshihai-01>
jingshihai-01>en
jingshihai-01#config ter
jingshihai-01#config terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
jingshihai-01(config)#line con 0
jingshihai-01(config-line)#exec-t
jingshihai-01(config-line)#exec-timeout 0 0
jingshihai-01(config-line)#
7.2 控制台消息打算输入的处理
当执行完一个命令,需要输入另一个命令时,为了保持光标不被返回的消息打扰,可以配置如下命令:在全局模式下,输入命令 line con 0 然后回车换行,输入命令logging synchronous(简写 logg syn)
jingshihai-01(config)#line con 0
jingshihai-01(config-line)#logging synchronous
7.3 禁用DNS查询
jingshihai-01#asdadffffffffffffffffffff
Translating "asdadffffffffffffffffffff"...domain server (255.255.255.255)
当遇到如上提示时,一般需要等待很久,此时就要要禁用DNS查询。
在全局模式下,输入命令 no ip domain-lookup(简写no ip domain-lo)
jingshihai-01#asdadffffffffffffffffffff
Translating "asdadffffffffffffffffffff"...domain server (255.255.255.255)
% Unknown command or computer name, or unable to find computer address   (等待很久才会显示该信息)jingshihai-01#config terminal
Enter configuration commands, one per line.  End with CNTL/Z.
jingshihai-01(config)#no ip domain-lookup
jingshihai-01(config)#asdadffffffffffffffffffff
% Invalid input detected at '^' marker.    (直接显示该信息)jingshihai-01(config)#

8、查看交换机的配置

在特权模式下输入命令 show running-config(可以用来检查配置)
jingshihai-01#
jingshihai-01#show running-config 
Building configuration...Current configuration : 1157 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname jingshihai-01  (历史输入的命令,可以用来检查输入的是否正确)
!
!
!
jingshihai-01#

9、设置进入特权模式的密码(明文)

在全局模式下输入命令 enable password 密码
jingshihai-01#config terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
jingshihai-01(config)#enable password 123456
jingshihai-01(config)#end
jingshihai-01#
jingshihai-01#show running-config 
Building configuration...Current configuration : 1157 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname jingshihai-01
!
enable password 123456
!
!
jingshihai-01#exit
jingshihai-01>enable
Password: 
jingshihai-01#

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/389554.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

opencv:卷积涉及的基础概念,Sobel边缘检测代码实现及Same(相同)填充与Vaild(有效)填充

滤波 线性滤波可以说是图像处理最基本的方法&#xff0c;它可以允许我们对图像进行处理&#xff0c;产生很多不同的效果。 卷积 卷积的概念&#xff1a; 卷积的原理与滤波类似。但是卷积却有着细小的差别。 卷积操作也是卷积核与图像对应位置的乘积和。但是卷积操作在做乘…

r psm倾向性匹配_南瓜香料指标psm如何规划季节性广告

r psm倾向性匹配Retail managers have been facing an extraordinary time with the COVID-19 pandemic. But the typical plans to prepare for seasonal sales will be a new challenge. More seasonal products have been introduced over the years, making August the bes…

主成分分析:PCA的思想及鸢尾花实例实现

主成份分析算法PCA 非监督学习算法 PCA的实现&#xff1a; 简单来说&#xff0c;就是将数据从原始的空间中转换到新的特征空间中&#xff0c;例如原始的空间是三维的(x,y,z)&#xff0c;x、y、z分别是原始空间的三个基&#xff0c;我们可以通过某种方法&#xff0c;用新的坐…

两家大型网贷平台竟在借款人审核问题上“偷懒”?

python信用评分卡&#xff08;附代码&#xff0c;博主录制&#xff09; https://study.163.com/course/introduction.htm?courseId1005214003&utm_campaigncommission&utm_sourcecp-400000000398149&utm_mediumshare 放贷流量增加&#xff0c;逾期率也会随之增加&…

opencv:边缘检测之Laplacian算子思想及实现

Laplacian算子边缘检测的来源 在边缘部分求取一阶导数&#xff0c;你会看到极值的出现&#xff1a; 如果在边缘部分求二阶导数会出现什么情况? 从上例中我们可以推论检测边缘可以通过定位梯度值大于邻域的相素的方法找到(或者推广到大 于一个阀值). 从以上分析中&#xff0c…

使用机器学习预测天气_如何使用机器学习预测着陆

使用机器学习预测天气Based on every NFL play from 2009–2017根据2009-2017年每场NFL比赛 Ah, yes. The times, they are changin’. The leaves are beginning to fall, the weather is slowly starting to cool down (unless you’re where I’m at in LA, where it’s on…

laravel 导出插件

转发&#xff1a;https://blog.csdn.net/gu_wen_jie/article/details/79296470 版本&#xff1a;laravel5 php 5.6 安装步骤&#xff1a; 一、安装插件 ①、首先在Laravel项目根目录下使用Composer安装依赖&#xff1a; composer require "maatwebsite/excel:~2.1.0"…

国外 广告牌_广告牌下一首流行歌曲的分析和预测,第1部分

国外 广告牌Using Spotify and Billboard’s data to understand what makes a song a hit.使用Spotify和Billboard的数据来了解歌曲的流行。 Thousands of songs are released every year around the world. Some are very successful in the music industry; others less so…

Jmeter测试普通java类说明

概述 Apache JMeter是Apache组织开发的基于Java的压力测试工具。本文档主要描述用Jmeter工具对基于Dubbo、Zookeeper框架的Cassandra接口、区块链接口进行压力测试的一些说明&#xff0c;为以后类似接口的测试提供参考。 环境部署 1、 下载Jmeter工具apache-jmeter-3.3.zip&am…

opencv:Canny边缘检测算法思想及实现

Canny边缘检测算法背景 求边缘幅度的算法&#xff1a; 一阶导数&#xff1a;sobel、Roberts、prewitt等算子 二阶导数&#xff1a;Laplacian、Canny算子 Canny算子效果比其他的都要好&#xff0c;但是实现起来有点麻烦 Canny边缘检测算法的优势&#xff1a; Canny是目前最优…

opencv:畸变矫正:透视变换算法的思想与实现

畸变矫正 注意&#xff1a;虽然能够成功矫正但是也会损失了部分图像&#xff01; 透视变换(Perspective Transformation) 概念&#xff1a; 透视变换是将图片投影到一个新的视平面(Viewing Plane)&#xff0c;也称作投影映射(Projective Mapping)。 我们常说的仿射变换是透视…

数据多重共线性_多重共线性对您的数据科学项目的影响比您所知道的要多

数据多重共线性Multicollinearity is likely far down on a mental list of things to check for, if it is on a list at all. This does, however, appear almost always in real-life datasets, and it’s important to be aware of how to address it.多重共线性可能根本不…

K-Means聚类算法思想及实现

K-Means聚类概念&#xff1a; K-Means聚类是最常用的聚类算法&#xff0c;最初起源于信号处理&#xff0c;其目标是将数据点划分为K个类簇&#xff0c; 找到每个簇的中心并使其度量最小化。 该算法的最大优点是简单、便于理解&#xff0c;运算速度较快&#xff0c;缺点是只能应…

(2.1)DDL增强功能-数据类型、同义词、分区表

1.数据类型 &#xff08;1&#xff09;常用数据类型  1.整数类型 int 存储范围是-2,147,483,648到2,147,483,647之间的整数&#xff0c;主键列常设置此类型。 &#xff08;每个数值占用 4字节&#xff09; smallint 存储范围是-32,768 到 32,767 之间的整数&#xff0c;用…

充分利用昂贵的分析

By Noor Malik努尔马利克(Noor Malik) Let’s say you write a query in Deephaven which performs a lengthy and expensive analysis, resulting in a live table. For example, in a previous project, I wrote a query which pulled data from an RSS feed to create a li…

层次聚类和密度聚类思想及实现

层次聚类 层次聚类的概念&#xff1a; 层次聚类是一种很直观的算法。顾名思义就是要一层一层地进行聚类。 层次法&#xff08;Hierarchicalmethods&#xff09;先计算样本之间的距离。每次将距离最近的点合并到同一个类。然后&#xff0c;再 计算类与类之间的距离&#xff0…

通配符 或 怎么浓_浓咖啡的咖啡渣新鲜度

通配符 或 怎么浓How long could you wait to brew espresso after grinding? Ask a barista, any barista, and I suspect their answer is immediately or within a few minutes. The common knowledge on coffee grounds freshness is that after 30 minutes or so, coffee…

《netty入门与实战》笔记-02:服务端启动流程

为什么80%的码农都做不了架构师&#xff1f;>>> 1.服务端启动流程 这一小节&#xff0c;我们来学习一下如何使用 Netty 来启动一个服务端应用程序&#xff0c;以下是服务端启动的一个非常精简的 Demo: NettyServer.java public class NettyServer {public static v…

谱聚类思想及实现

&#xff08;这个我也没有怎么懂&#xff0c;为了防止以后能用上&#xff0c;还是记录下来&#xff09; 谱聚类 注意&#xff1a;谱聚类核心聚类算法还是K-means 算法进行聚类~ 谱聚类的实现过程&#xff1a; 1.根据数据构造一个 图结构&#xff08;Graph&#xff09; &…

Tengine HTTPS原理解析、实践与调试【转】

本文邀请阿里云CDN HTTPS技术专家金九&#xff0c;分享Tengine的一些HTTPS实践经验。内容主要有四个方面&#xff1a;HTTPS趋势、HTTPS基础、HTTPS实践、HTTPS调试。 一、HTTPS趋势 这一章节主要介绍近几年和未来HTTPS的趋势&#xff0c;包括两大浏览器chrome和firefox对HTTPS的…