如何将三台 Cisco 2960 交换机连接在一起?

网络工程 思科
2022-02-11 10:11:22

当前网络设置

我有三台 Cisco 2960 交换机。每个交换机都连接到一个由 12 台 Windows 10 计算机组成的实验室。所有三个开关都在同一个机柜中。

第 1 个交换机使用光纤模块 SFP 连接到第 2 个交换机 第 2 个交换机使用光纤模块 SFP 连接到第 3 个交换机

我还有一个 Windows 2016 服务器,它有一个共享文件夹,但只连接到第一个交换机。

当前开关配置

    Switch#show running-config
Building configuration...

Current configuration : 1266 bytes
!
version 12.2
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Switch
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
system mtu routing 1500
ip subnet-zero
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
!
!
interface FastEthernet0/1
!
interface FastEthernet0/2
!
interface FastEthernet0/3
!
interface FastEthernet0/4
!
interface FastEthernet0/5
!
interface FastEthernet0/6
!
interface FastEthernet0/7
!
interface FastEthernet0/8
!
interface FastEthernet0/9
!
interface FastEthernet0/10
!
interface FastEthernet0/11
!
interface FastEthernet0/12
!
interface FastEthernet0/13
!
interface FastEthernet0/14
!
interface FastEthernet0/15
!
interface FastEthernet0/16
!
interface FastEthernet0/17
!
interface FastEthernet0/18
!
interface FastEthernet0/19
!
interface FastEthernet0/20
!
interface FastEthernet0/21
!
interface FastEthernet0/22
!
interface FastEthernet0/23
!
interface FastEthernet0/24
!
interface GigabitEthernet0/1
!
interface GigabitEthernet0/2
!
interface Vlan1
 no ip address
 no ip route-cache
!
ip http server
ip http secure-server
!
control-plane
!
!
line con 0
line vty 5 15
!
end

我使用基于 Web 的配置界面仅分配“智能端口”来指示其他两个交换机使用的端口。我不知道是否需要进行更多配置。

当前服务器配置

只有共享文件夹,但当前链接到一个交换机,并且只能通过链接到该交换机的计算机看到。服务器上没有 DHCP 服务,所有计算机都分配了静态 IP 地址

网络中计算机的配置

所有计算机都分配有静态 IP 地址。所有计算机都分配有相同的子网掩码 255.255.255.0 默认网关:空 DNS 服务器:空

没有路由器,没有互联网,只有本地网络。

我需要将所有交换机链接在一起,以便所有三个实验室中的所有计算机都可以互相看到,并且所有计算机都可以看到服务器中的共享文件夹。

到目前为止,我尝试使用两条光缆将第一台交换机连接到两台交换机。我还尝试使用插入交换机光纤端口的光纤电缆将第 1 个交换机连接到第 2 个交换机,然后将第 2 个交换机连接到第 3 个交换机。还尝试使用UTP直通电缆连接交换机。这些方法都不起作用。

1个回答

通过基本的交换机配置,您已经创建了一个完全“扁平”的网络——所有端口都属于同一个默认 VLAN = 第 2 层网段。

为了让连接的主机在第 2 层/以太网上相互“看到” ,您所要做的就是将交换机相互连接起来。只需将它们链接起来 - 如果您形成一个环,RPVST+ 将处于活动状态并通过阻止其中一个连接来阻止桥接循环。光纤或双绞线无关紧要,但当两边都插入电缆时,链路 LED 需要亮起。

如果 LED 保持黑暗,则电缆可能不正确 - 光纤贴片通常交叉:插入插孔左侧的股线需要进入另一个开关的右侧,反之亦然。通常光纤套管上有彩色环。

双绞线铜缆通常直接连接(1:1 引脚)。2960 系列支持 Auto MDI-X,因此使用直线或交叉电缆无关紧要。

所有计算机都分配有静态 IP 地址。所有计算机都分配有相同的子网掩码 255.255.255.0 默认网关:空 DNS 服务器:空

应该这样做。请注意,为了让主机在第 3 层/IP 上相互看到,所有主机需要共享同一个子网,例如 192.168.100.0/24。如果他们不这样做,则需要额外的路由器(2960s 也可用于在不同 VLAN 之间进行路由)。另请注意,要使主机名正常工作,则需要正确的 DNS 或某种广播解析 (mDNS),但此处的主机配置显然是题外话。