04-11-2011 03:03 AM
Hi,
Have an ex8202 with junos 10.3
Have three incoming trunk vlans at same interface, these should be merge and use another vlan-id.
Have tried with pvlan but could not use trunk mode.
Has anyone any ideas how I can solved this issue?
Thanks Niklas
04-12-2011 06:37 AM
If you're using PVLANs, you should not need a trunk at the interface itself, but if you need to trunk the PVLANs to another switch you can use a PVLAN trunk port.
Pretty good explanation of PVLANs:
http://www.juniper.net/techpubs/en_US/junos10.4/to
01-27-2012 09:49 AM - edited 01-27-2012 09:50 AM
I'm struggling with this one too:
interfaces {
ge-0/0/16 {
description dinky3
unit 0 {
family ethernet-switching {
port-mode trunk;
vlan {
members 2000-2099;
}
native-vlan-id 222;
}
}
}
vlan {
unit 3000 {
description "Virtual Machine";
family inet {
address x.x.x.x/30;
}
}
}
}
vlans {
Vlan2001 {
vlan-id 2001;
primary-vlan 3000;
}
Vlan3000 {
vlan-id 3000;
interface {
ge-0/0/16.0 {
pvlan-trunk;
}
}
no-local-switching;
}
}
cor1# commit check
error: Trunk port ge-0/0/16.0 cannot be made member of community vlan <Vlan2001>
error: configuration check-out failed
any ideas?