第一章
VTP
协议
1.
配置VTP的域名:
Switch(confing)#vtp domain domain-name
2.
创建VTP的模式
Switch(config)#vtp mode server /client /transparent
或
Switch
(
vlan
)
#vtp
加模式
3.
配置
vtp
的口令
Switch(config)#vtp password passward
4.
配置
VTP
的修剪
Switch(config)#vtp pruning
5.
配置
VTP
的版本
Switch(config)#vtp version 2
或
Switch
(
vlan
)
#vtp v2-mode
6.
查看的配置信息
Switch#show vtp status
7.
查看更新数据包
Switch#debug sw-vlan vtp packets
8
查看
vlan
信息
Switch#show vlan-s ~~
第二章
STP
协议
1.
启用生成树命令
Switch
(
config
)
#spanning-tree vlan vlan-list
2.
配置根网桥的命令
Switch
(
config
)
#spanning-tree vlan vlan-list root primary(24576) / secondary(28672)
3.
修改网桥的优先级
Switch
(
config
)
#spanning vlan vlan-list prioriry bridge-priority(1-65535)
4.
修改端口成本
Switch(config-if)#spanning-tree vlan
vlan-list
cost
cost /(0-255
默认128)
5
修改端口优先级
Switch(config-if)#spanning-tree vlan
vlan-list
port-priority
priority
6
配置上行速链路
Switch(config)#spanning-tree uplinkfast /
划分vlan
了的不建议做
7
配置端口速链路
Switch(config-if)#spanning-tree portfast
8.
查看生成树的配置
Switch#show spanning-tree
(brief
)
9
查看某个
VLAN
的生成树详细信息
Switch#show spanning-tree vlan vlan-id detail
10
配置以太网通道
Switch(config)#interface
加端口
Switch(config-if)#channel-group
加组号 mode on
11
查看以太网通道的配置
Switch#show etherchannel
加组号 summary
第三章
三层交换
1
在三层交换机上启动路由
Switch(config)#ip routing
2
配置VLAN
的IP
地址
Switch (config)#interface vlan vlan-id
Switch (config-if)#ip address Ip-address Subnet-mask
Switch (config-if)#no shutdown
3
查看(转发信息库)FIB
表
Switch (config)#show ip cef
4
查看邻接关系表
Switch (config)#show adjacency detail
5
在三层交换机上配置路由接口
Switch (config-if)#no switchport
6
配置DHCP
中继转发
Switch(config)#interface vlan vlan-id
Switch(config-if)#ip helper-address Dhcpserver-address
(DHCP
服务器的IP
)
7
DHCP
服务器的配置
Router1#configure terminal
Router1(config)#service dhcp //
开启 DHCP
服务
Router1(config)#ip dhcp pool 172.25.1.0/24
(名字)//
定义DHCP
地址池
Router1(dhcp-config)#network 172.25.1.0 255.255.255.0 //
用network
命令来定义网络地址的范围
Router1(dhcp-config)#default-router 172.25.1.1 //
定义要分配的网关地址
Router1(dhcp-config)#exit
Router1(config)#ip dhcp excluded-address 172.25.1.1 172.25.1.50 //
该范围内的ip
地址不能分配给客户端
Router1(config)#ip dhcp excluded-address 172.25.1.200 172.25.1.255 //
该范围内的ip
地址不能分配给客户端
Router1(config)#end
第六章 PPP
协议
一
1.
进入串口配置模式
Router(config)# interface serial 0/0
2
配置接口的链路层协议为PPP
Router(config-if)# encapsulation ppp
3
配置认证用户名和密码
Router(config)# username user_name password 0 pass_word
4
启用PAP
认证
Router(config-if)# ppp authentication pap
5
配置认证用户名和密码
Router(config-if)# ppp pap sent-username user_name password 0 pass_word
以上为配置PAP
认证
二.1
进入串口配置模式
Router(config)# interface serial 0/0
2
配置接口的链路层协议为PPP
Router(config-if)# encapsulation ppp
3
配置主认证方用户名和密码
Router(config)# username user_name password 0 pass_word
4
启用CHAP
认证
Router(config-if)# ppp authentication chap
5
配置认证方用的用户名
Router(config-if)# ppp chap hostname user_name
6
配置被认证方用户名和密码
Router(config)# username user_name password 0 pass_word
7
启用CHAP
认证
Router(config-if)# ppp authentication chap
8
配置认证用的用户名
Router(config-if)# ppp chap hostname user_name
9
配置认证用的密码
Router(config-if)# ppp chap password 0 pass_word
以上为配置CHAP
认证
三.配置IP
地址协商
1
服务器端
Router(config-if)# peer default ip address ip_address
2
客户端
Router(config-if)# ip address negotiated
四.
配置PPP
压缩
1
启用PPP
压缩
Router(config-if)# compress { predictor | stac }
2
启用TCP/IP
头压缩
Router(config-if)# ip tcp header-compression
因为压缩要占大部分的CPU
和内存,一般不建议做。