交换机的基本配置-stp文件怎么打开

交换机的基本配置-stp文件怎么打开

交换机的配置模式:

Switch>:用户模式

-------------------

Switch>enable

Switch#特权模式

-------------------

Switch(config)#config terminal

Switch#

Switch(config)#配置模式

---------------------------

接口配置模式模式

interface fastethernet 0/1

Switch(config)#interface fastEthernet 0/1

Switch(config-if)#

---------------------------------

interface:关键字

fastethernet:接口类型

e、gi、te

0/1:0表示模块号 1表示端口号

模式之间转换:

--end

--exit

--快捷键Ctrl+Z退出到特权模式

四大配置模式:

1。用户模式:查看统计信息

2。特权模式:查看并修改设备配置

3。全局模式:针对整个交换机配置参数

4。接口模式:针对设备的接口修改配置

----------------------------------

交换机配置的基本命令:

1。配置主机名:hbp-1(config)#hostname hbp-s1

hbp-s1(config)#

2。查看交换机的配置信息;show running-config

3.配置交换机的enable明文口令:enable password 密码内容

hbp-s1(config)#enable password 123

hbp-s1(config)#

4。配置交换机的enable的加密口令:enable secret 456

5。保存交换机的配置:copy running-config startup-config或者wr

------------------------------

交换机的配置技巧;

1。table 自动补全命令

2。? 自动查询

3。命令的简写

--------------------------------------------

交换机的其他配置:

1。取消enable的密码:hbp-s1(config)#no enable password

2。重设密码:直接覆盖

3。enable secret 456加密的密码

------------------------------------------

配置Console口令:只针对本地控制台生效;

hbp-s1(config)#line console 0

hbp-s1(config-line)#password 789

hbp-s1(config-line)#login

显示IOS名称以及版本信息:show version

恢复设备的出厂设置默认值:

cisco#erase startup-config

cisco#reload

交换机配置常见的问题:

配置控制台回话永不超时:

switch(config)#line con 0

switch(config-if)#exec-timeout 0 0

配置输出日志同步:

switch(config)#line con 0

switch(config-if)#logging synchronous

禁用DNS查询:

switch(config)# no ip domain-lookup

查看MAC地址表:

switch#show mac-address-table

接口的工作模式配置;

指定接口的双攻模式:

switch(config-if)#duplex{full|half|auto}

指定接口的通信速率:

switch(config-if)#speed{10|100|1000|auto}

查看以太网接口的双工模式和通信速率:

switch#show interface fastethernet 0/24

配置管理用的IP地址:

switch(config)#interface vlan1

switch(config-if)#ip address 192.168.1.1 255.255.255.0

switch(config-if)#no shutdown

switch# show running-config

配置管理网关:

switch(config)# ip default-gateway 192.168.1.100

vlan1是交换机默认的vlan

telnet远程管理路由器和交换机:

步骤;

1.配置交换机的管理IP

switch(config)# interface vlan 1

switch(config-if)#ip address 192.168.1.2 255.255.255.0

switch(config-if) no shutdown

2.开启交换机的远程管理服务

switch(config)#line vty 0 4

switch(config-line) #password 123

switch(config-line)#login

3.配置特权密码

switch(config)#enable password 456

4.测试;

pc>Telnet 192.168.1.2

paddword:123

switch>en

password:

switch#

管理路由器:

1.配置路由器R1的接口IP

R1(config)# interfacefastEthernet 0/0

R1(config-if)#ip address 192.168.1.254 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#exit

R1(config)#interface fastEthernet0/1

R1(config-if)#ip address 192.168.2.254 255.255.255.0

R1(config-if)#no shutdown

2.开启R1的远程管理服务

R1(config)#line vty 0 4

R1(config-line)#password 123

R1(config-line)#login

3.配置特权模式的明文密码

R1(config)#enable password 456

4.pc远程管理R1

pc>telnet 192.168.1.254

password:

R1>en

password:

R1#:

推荐阅读