<> wrote in message
news: ps.com...
> No problem Martin.
>
> Port-channels can be layer 2 or 3 - just like physical ports.
>
> I suggest you change your Port-channel to layer 2 so it can be
> configured as a trunk port. The trunk can then carry two VLANs - The
> "common VLAN" and the SVI VLAN for routed traffic:
>
> interface Port-channel1
> description "Layer 2 Port-channel"
> switchport
> switchport trunk encapsulation dot1q
> switchport mode trunk
>
> Then configure the VLANS / SVIs:
>
> vlan 5
> name "Common VLAN"
>
> interface vlan 10
> description "SVI for routed traffic"
> no switchport
> ip address 172.24.1.1 255.255.255.252
>
> Then turn on the Port-channel for the physical port:
>
> interface GigabitEthernet1/0/28
> switchport
> channel-group 1 mode active
>
> Let me know how you get on,
1 other thing to worry about is what happens when it breaks?
this type of design is common with server replication schemes that work at
layer 2, and the assumption is that when you lose a site, the other copy
carries on and the remaining network survives.
however - WAN faults are as common as major server or site failures.
if you have a L2 subnet across 2 sites like this, then any routers sending
traffic into it from elsewhere treat it as a single logical connected lump
of IP addresses - because that is what a subnet really is.
the hidden design assumption is that things only work if that subnet is
internally connected.
So - it breaks in 2 pieces. At that point you find out that most traffic
patterns on the 2 sections where the traffic comes into the subnet from
outside stop working.
if you have a local router interface, then outgoing works fine if you still
have a default gateway.
but the return traffic just gets delivered to either section depending on
router best path - and that may be the wrong half......
>
> Paul
--
Regards
- replace xyz with ntl