VLAN-tagging
I'm trying to trunk a J2300 with a Cisco 2950.
What do I use for encapsulation?
vlan-ccc or extended-vlan-ccc?
When I set encapsulation vlan-ccc and set the family to ccc I can't assign family inet address
fe-0/0/1 {
vlan-tagging;
speed 100m;
link-mode full-duplex;
encapsulation vlan-ccc;
unit 600 {
encapsulation vlan-ccc;
vlan-id 600;
family ccc;
thanks
What do I use for encapsulation?
vlan-ccc or extended-vlan-ccc?
When I set encapsulation vlan-ccc and set the family to ccc I can't assign family inet address
fe-0/0/1 {
vlan-tagging;
speed 100m;
link-mode full-duplex;
encapsulation vlan-ccc;
unit 600 {
encapsulation vlan-ccc;
vlan-id 600;
family ccc;
thanks
Comments
-
rossonieri#1 Member Posts: 799 ■■■□□□□□□□hi opers13,
you might want to check this :
http://www.juniper.net/techpubs/software/junos/junos83/swconfig83-network-interfaces/html/interfaces-ethernet-config17.html#1296260the More I know, that is more and More I dont know. -
opers13 Member Posts: 100rossonieri#1 wrote:hi opers13,
you might want to check this :
http://www.juniper.net/techpubs/software/junos/junos83/swconfig83-network-interfaces/html/interfaces-ethernet-config17.html#1296260
forgot I had posted this question...I actually got it working.
fe-0/0/1 {
vlan-tagging;
speed 100m;
link-mode full-duplex;
unit 30 {
description "Win2003 VLAN";
vlan-id 30;
family inet {
address 192.168.30.254/24;
}
}
unit 90 {
description "DHCP and PC VLAN";
vlan-id 90;
family inet {
address 10.10.90.1/24;
Thanks!