一个链接的操作模式关闭

网络工程 VLAN cisco催化剂 树干
2021-07-20 17:39:49

我正在使用三个Cisco Catalyst 2960交换机S1S2S3设置一个模拟的 Cisco Packet Tracer S1S2S3的中继

我有三个(3)接口F0/6F0/11F0/18连接到我的开关从三(3)电脑。我可以在同一个 VLAN 上从 PC1 ping PC4,以及 PC3 到 PC6。但是,PC2 到 PC5 无法 ping 通,我发现接口F0/18 操作模式已关闭,但工作模式未关闭。

前两个 F0/11 和 F0/6 连接到 PC1、P3、PC4 和 PC6,它们都在工作,使用show interface <interface id> switchport命令有以下信息

Name: Fa0/18
Switchport: Enabled
Administrative Mode: static access
Operational Mode: static access
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: native
Negotiation of Trunking: Off
Access Mode VLAN: 20 (Students)
Trunking Native Mode VLAN: 1 (Default)

但是前两个再次起作用。但是,F0/18不具备以下信息。

Name: Fa0/11
Switchport: Enabled
Administrative Mode: static access
Operational Mode: down
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: native
Negotiation of Trunking: Off
Access Mode VLAN: 10 (Faculty/Staff)
Trunking Native Mode VLAN: 1 (default)
.....<output omitted>
Appliance trust: none

我看到的唯一区别是工作的有设备信任:没有,但非工作的没有。

这也是 S2 的示例运行配置:

Current configuration : 1248 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname S2
!
!
!
!
!
spanning-tree mode pvst
!
interface FastEthernet0/1
!
interface FastEthernet0/2
!
interface FastEthernet0/3
!
interface FastEthernet0/4
interface FastEthernet0/5
!
interface FastEthernet0/6
 switchport access vlan 30
 switchport mode access
!
interface FastEthernet0/7
!
interface FastEthernet0/8
!
interface FastEthernet0/9
!
interface FastEthernet0/10
!
interface FastEthernet0/11
 switchport access vlan 10
 switchport mode access
!
interface FastEthernet0/12
!
interface FastEthernet0/13
!
interface FastEthernet0/14
!
interface FastEthernet0/15
!
interface FastEthernet0/16
!
interface FastEthernet0/17
!
interface FastEthernet0/18
 switchport access vlan 20
 switchport mode access
!
interface FastEthernet0/19
!
interface FastEthernet0/20
!
interface FastEthernet0/21
!
interface FastEthernet0/22
!
interface FastEthernet0/23
!
interface FastEthernet0/24
!
interface GigabitEthernet0/1
!
interface GigabitEthernet0/2
 switchport trunk native vlan 99
 switchport mode trunk
!
interface Vlan1
no ip address
 shutdown
!
!
!
!
line con 0
!
line vty 0 4
login
line vty 5 15
login
!
!
end

出了什么问题?

我只是这个的新手,所以请耐心等待。

3个回答

如果您正在处理此文件 - 3.2.4.7 Packet Tracer - VLAN 实施故障排除 - 场景 1.pka

PC5 实际上连接到 S3 上的 Fa0/17 而不是 Fa0/18(通过悬停在 S3 上的绿点进行检查)。

- 这是我在此活动文件中看到的缺陷之一,除了 ip 寻址表的错误开关标签、逻辑图上的错误端口标签(即 G1/1 而不是 G0/1 等),并且卡住即使一切都很好,也能完成 60/70%。

使用这些命令使所有端口进入模式并正常工作

configure terminal
interface rang fa1/0 - 15 
 shutdown 
 no shutdown 

并且不要忘记对no shutdown另一边的设备

您需要做的是断开交换机端口和连接的主机之间的链路,然后重新连接链路并将连接的端口重新配置为访问模式并将其附加到适当的VLAN。希望这能解决问题。