05-02-2020 09:48 AM
what am i doing wrong? i can not get the vlans to go over my fiber port channel.
the no commands are what i want, and i have read should work. the rest is current running.
WS-C3750E-48PD, 15.2(4)E10 (UNIVERSALK9)
!
spanning-tree mode pvst
spanning-tree extend system-id
no spanning-tree vlan 1,101-103,1000
!
!
!
!
vlan internal allocation policy ascending
vlan dot1q tag native
!
interface Port-channel1
description LAN trunk 20gb fiber
switchport mode access
no switchport trunk encapsulation dot1q
no switchport trunk allowed vlan 1-200,1000
no switchport mode trunk
no switchport trunk native vlan 1
interface Port-channel2
description server trunk 2gb cat temp
switchport access vlan 102
no shutdown
!
interface Port-channel3
description WAN trunk 2gb cat temp
switchport access vlan 1000
no shutdown
interface TenGigabitEthernet1/0/1
description 10g fiber trunk 1 of 2
switchport mode access
no switchport trunk encapsulation dot1q
no switchport trunk allowed vlan 1-200,1000
no switchport mode trunk
no switchport trunk native vlan 1
channel-group 1 mode active
!
interface TenGigabitEthernet1/0/2
description 10g fiber trunk 2 of 2
switchport mode access
no switchport trunk encapsulation dot1q
no switchport trunk allowed vlan 1-200,1000
no switchport mode trunk
no switchport trunk native vlan 1
channel-group 1 mode active
!
interface Vlan1
description LAN
ip address
!
interface Vlan101
description LAN
ip address
!
interface Vlan102
description server_link
ip address
!
interface Vlan103
description cameras
ip address
!
interface Vlan1000
description WAN
ip address
!
ip default-gateway .
ip forward-protocol nd
Solved! Go to Solution.
05-02-2020 12:35 PM
Not sure if i understand your question correctly here.
If you looking your VLAN to go across Port-channel you should allow them to span over.
as per your config, it is mode set to access, this act as access port.
change to below to work, make sure you shut the port-channel make the changes and enable back.
interface Port-channel1
description LAN trunk 20gb fiber
no switchport mode access
switchport mode trunk
switchport trunk encapsulation dot1q
switchport trunk native vlan 1
switchport trunk allowed vlan 1-200,1000
if this not what you looking explain more.
05-02-2020 01:35 PM
05-02-2020 12:35 PM
Not sure if i understand your question correctly here.
If you looking your VLAN to go across Port-channel you should allow them to span over.
as per your config, it is mode set to access, this act as access port.
change to below to work, make sure you shut the port-channel make the changes and enable back.
interface Port-channel1
description LAN trunk 20gb fiber
no switchport mode access
switchport mode trunk
switchport trunk encapsulation dot1q
switchport trunk native vlan 1
switchport trunk allowed vlan 1-200,1000
if this not what you looking explain more.
05-02-2020 01:35 PM