我正在使用三个Cisco Catalyst 2960
交换机S1、S2和S3设置一个模拟的 Cisco Packet Tracer 。S1是S2和S3的中继。
我有三个(3)接口F0/6
,F0/11
,F0/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
出了什么问题?
我只是这个的新手,所以请耐心等待。