思科交换机配置,思科交换机配置ssh远程登录
思科三层交换机的详细配置命令是什么?
三层交换机基本配置
【实验名称】
三层交换机端口配置。
【实验目的】
配置开启三层交换机的三层功能,实现路由作用。
【背景描述】
公司现有1台三层交换机,要求你进行测试,该交换机的三层功能是否工作正常
【技术原理】
三层交换机是在二层交换的基础上实现了三层的路由功能。三层交换机基于“一次路由,多次交换”的特性,在局域网环境中转发性能远远高于路由器。而且三层交换机同时具备二层的功能,能够和二层的交换机进行很好的数据转发。三层交换机的以太网接口要比一般的路由器多很多,更加适合多个局域网段之间的互联。
三层交换机的所有端口在默认情况下都属于二层端口,不具备路由功能。不能给物理端口直接配置IP地址。但可以开启物理端口的三层路由功能。
三层交换机默认开启了路由功能,可利用ip routing命令进行控制。
【实现功能】
开启三层交换机物理端口的路由功能。
【实验设备】
S3550-24或S3550-48(1台),直连线(1条)
【实验步骤】
步骤1. 开启三层交换机的路由功能。
Switchenable
Switch#configure terminal
Switch(config)#hostname S3550-24
S3550-24(config)#ip routing !开启三层交换机的路由功能
步骤2. 配置三层交换机端口的路由功能。
S3550-24(config)#interface fastethernet 0/5
S3550-24(config-if)#no switchport !开启端口的三层路由功能
S3550-24(config-if)#ip address 192.168.5.1 255.255.255.0
! 给端口配置IP地址
S3550-24(config-if)#no shutdown
S3550-24(config-if)#end
步骤3. 验证、测试配置。
S3550#show ip interface !查看接口状态信息
Interface : Fa0/5
Description : FastEthernet100BaseTX 0/5
OperStatus : up !接口状态是UP
ManagementStatus : Enabled
Primary Internet address: 192.168.5.1/24
Broadcast address : 255.255.255.255
PhysAddress : 00d0.f8ff.bd43
S3550#show interfaces f0/5 !查看接口状态信息
Interface : FastEthernet100BaseTX 0/5
Description :
AdminStatus : up !接口状态是UP
OperStatus : up
Medium-type : copper
Hardware : 10/100BaseTX
Mtu : 1500
LastChange : 0d:0h:32m:49s
AdminDuplex : Auto
OperDuplex : Unknown
AdminSpeed : Auto
OperSpeed : Unknown
FlowControlAdminStatus : Off
FlowControlOperStatus : Off
Priority : 0
Broadcast blocked :DISABLE
Unknown multicast blocked :DISABLE
Unknown unicast blocked :DISABLE
ARP Timeout : 3600 sec
Primary Internet address: 192.168.5.1/24
PhysAddress : 00d0.f8ff.bd43
ManagementStatus:Enabled
Broadcast address : 255.255.255.255
主机测试:将PC1的IP地址设为192.168.5.2/24,在PC1上ping 192.168.5.1。
ping 192.168.5.1
Pinging 192.168.5.1 with 32 bytes of data:
Reply from 192.168.5.1: bytes=32 time1ms TTL=64
Reply from 192.168.5.1: bytes=32 time1ms TTL=64
Reply from 192.168.5.1: bytes=32 time1ms TTL=64
Reply from 192.168.5.1: bytes=32 time1ms TTL=64
Ping statistics for 192.168.5.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
【参考配置】
S3550-24#show running-config
System software version : 1.02 Build Oct 17 2005 Release
Building configuration...
Current configuration : 145 bytes
version 1.0
hostname Switch
vlan 1
interface FastEthernet 0/5
no switchport
ip address 192.168.5.1 255.255.255.0
!
end
怎么给思科交换机配置IP
给
交换机
配置
IP地址
并不像
路由器
那样配置在
物理接口
上,而是配置在虚
接口
上。这样,无论从任何一个物理接口连接交换机都可以访问虚接口的IP地址,从而实现对交换机的管理,命令么:int
vlan
1ip
add
地址no
shutdown
思科三层交换机配置实现不同vlan间的通信
PC1
的网关应该设置成PC1所在VLAN对应的三层交换机的IP地址,比如说PC1被划分到vlan
10下,你在三层交换机上的配置是: int
vlan
10ip
add
192.168.10.1
那么你的PC1的网关就应该设置成192.168.10.1
了
思科交换机怎么配置镜像口
要进命令行配置的。需要在CISCO 2950上配置端口镜像,CISCO 2950端口镜像配置语法:
monitor session session_number {destination {interface interface-id [, | -] [encapsulation {dot1q}] [ingress vlan vlan id] | remote vlan vlan-id reflector-port interface-id} | {source {interface interface-id [, | -] [both | rx | tx] | remote vlan vlan-id}}
本例中,WFilter监控主机接在22端口(目的端口),路由器接在23端口(源端口)。配置命令如下:
把23设置为源端口
monitor session 1 source interface Fa0/23
把22端口设置为镜像的目的端口
monitor session 1 destination interface Fa0/22 ingress vlan 1(如交换机不支持ingress参数,则不需要ingress vlan 1)