admin 管理员组

文章数量: 887021


2024年3月13日发(作者:北京疫情太严重了)

.-

交换机和路由器配置过程总结

第一部分 交换机配置

一、概述

一层、二层交换机工作在数据链路层,三层交换机工作在网络层,最常见的是以太网交换机。交换机

一般具有用户模式、配置模式、特权模式、全局配置模式等模式。

二、基本配置命令(CISCO)

Switch >enable 进入特权模式

Switch #config terminal 进入全局配置模式

Switch (config)#hostname 设置交换机的主机名

Switch(config)#enable password 进入特权模式的密码(明文形式保存)

Switch(config)#enable secret 加密密码(加密形式保存) (优先)

Switch(config)#ip default-gateway 配置交换机网关

Switch(config)#show mac-address-table 查看MAC地址

Switch(config)logging synchronous 阻止控制台信息覆盖命令行上的

输入

Switch(config)no ip domain-looku

p 关闭DNS查找功能

Switch(config)exec-timeout 0

0

阻止会话退出

使用Telnet远程式管理

Switch (config)#line vty 0 4 进入虚拟终端

Switch (config-line)# password 设置登录口令

Switch (config-line)# login 要求口令验证

控制台口令

switch(config)#line console 0 进入控制台口

switch(config-line)# password xx

switch(config-line)# 设置登录口令login 允许登录

恢复出厂配置

Switch(config)#erase startup-config

Switch(config)delete

Vlan基本配置

Switch#vlan databas

e 进去vl

an配置模式

Switch(vlan)#vlan 号码 name 名称 创建vlan及vlan名

Switch(vlan)#vlan号码 mtu数值 修改MTU大小

Switch(vlan)#exi

t

更新vlan数据并推出

Switch#show vla

.-

n

查看验证

Switch#copy running-config startup-config 保存配置

VLAN 中添加 删除端口

Switch#config termina

l 进入全局配置

Switch(config)#interface fastethernet0/1 进入要分配的端口

Switch(config-if)#Switchport mode access 定义二层端口

Switch(config-if)#Switchport acces vlan 号 把端口分给一个vlan

Switch(config-if)#switchport mode trunk 设置为干线

Switch(config-if)#switchport trunk encapsulation dot1q 设置vlan 中继协议

Switch(config-if)#no switchport mode 或 ( switchport mode access) 禁用干线

Switch(config-if)#switchport trunk allowed vlan add 1,2 从Trunk中添加vlans

Switch(config-if)#switchport trunk allowed vlan remove 1,2 从Trunk中删除vlan

Switch(config-if)#switchport trunk pruning vlan remove 1,2 ;从Trunk中关闭局部修剪

查看vlan信息 Switch#show vlan brief 所有vlan信息

查看vlan信息 Switch#show vlan id 某个vlan信息

注:Switch#show int trunk 查看trunk协议

注:可以使用default interface interface-id 还原接口到默认配置状态

Trunk

开启(no) ——将端口设置为永久中继模式

关闭(off) ——将端口设置为永久非中继模式, 并且将链路转变为非中继链路

企望(desirable)——让端口主动试图将链路转换成中继链路

自动(auto) ——使该端口愿意将链路变成中继链路

交换机显示命令:

switch#show vtp status 查看vtp配置信息

switch#show running-config 查看当前配置信息

switch#show vlan 查看vlan配置信息

switch#show interface 查看端口信息

switch#show int f0/0 查看指定端口信息

switch#dir flash: 查看闪存

switch#show version 查看当前版本信息

switch#show cdp cisco设备发现协议 (可以查看聆接设备)

switch#show cdp traffic 杳看接收和发送的cdp包统计信息

switch#show cdp neighbors 查看与该设备相邻的cisco设备

switch#show interface f0/1 switchpor

t 查看有关switchport的配置

switch#show cdp neighbors 查看与该设备相邻的

cisco设备

三、模拟配置(一个实例)


本文标签: 配置 查看 模式 端口