spuluka wrote:Glad you have it working now. I'm sure the process was frustrating.
You have two options to add vlans to trunk ports, your method is above is one under members of the interface.
The second option is to have the trunk port configured as simply trunk mode and then add the interface into all the vlans under that heirarchy. For this method you would need to create the default vlan definition under vlans.
Best practice is to create that vlan, the devices ship with a minimum configuration so that all ports are communicating.
You are now sending the vlan-id 1 tagged on the trunk port. When listed in members these are tagged. I believe if you had created the vlan definition for default the original configuration would have worked.
default { vlan-id 1; } }https://kb.juniper.net/InfoCenter/index?page=content&id=KB17419
I tried your recomendation and it did not work. Here is the updated configuration based on your recommendation. The statements in bold is what was changed:
## Last changed: 2017-08-26 08:48:25 EDT
version 15.1X53-D56;
system {
auto-snapshot;
time-zone US/Eastern;
root-authentication {
encrypted-password "$5$0ljxQZMc$AOvp4IMWtCxg2.bTFp.n0YKwwAp.scb3i625MeKbK.6";
}
services {
ssh {
protocol-version v2;
}
telnet;
netconf {
ssh;
}
web-management {
http;
}
}
syslog {
user * {
any emergency;
}
file messages {
any notice;
authorization info;
}
file interactive-commands {
interactive-commands any;
}
}
processes {
dhcp-service {
traceoptions {
file dhcp_logfile size 10m;
level all;
flag all;
}
}
}
}
chassis {
aggregated-devices {
ethernet {
device-count 1;
}
}
}
interfaces {
ge-0/0/0 {
native-vlan-id 1;
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members 30;
}
storm-control default;
}
}
}
ge-0/0/1 {
native-vlan-id 1;
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members 30;
}
storm-control default;
}
}
}
ge-0/0/2 {
native-vlan-id 1;
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members 30;
}
storm-control default;
}
}
}
ge-0/0/3 {
native-vlan-id 1;
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members 30;
}
storm-control default;
}
}
}
ge-0/0/4 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
ge-0/0/5 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
ge-0/0/6 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
ge-0/0/7 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
ge-0/0/8 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
ge-0/0/9 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
ge-0/0/10 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
ge-0/0/11 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
ge-0/1/0 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
xe-0/1/0 {
ether-options {
802.3ad ae0;
}
}
ge-0/1/1 {
unit 0 {
family ethernet-switching {
storm-control default;
}
}
}
xe-0/1/1 {
ether-options {
802.3ad ae0;
}
}
ae0 {
description "A LAG Uplink to EX3300 Virtual Chassis Switch";
native-vlan-id 1;
aggregated-ether-options {
minimum-links 1;
lacp {
active;
periodic fast;
}
}
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members 30;
}
}
}
}
irb {
unit 0 {
family inet {
dhcp {
vendor-id Juniper-ex2300-c-12p;
}
}
}
}
me0 {
unit 0 {
family inet {
address 192.168.99.30/24;
}
}
}
}
forwarding-options {
storm-control-profiles default {
all;
}
}
routing-options {
static {
route 0.0.0.0/0 next-hop 192.168.99.1;
}
}
protocols {
lldp {
interface all;
}
lldp-med {
interface all;
}
igmp-snooping {
vlan default;
}
rstp {
interface ge-0/0/0;
interface ge-0/0/1;
interface ge-0/0/2;
interface ge-0/0/3;
interface ge-0/0/4;
interface ge-0/0/5;
interface ge-0/0/6;
interface ge-0/0/7;
interface ge-0/0/8;
interface ge-0/0/9;
interface ge-0/0/10;
interface ge-0/0/11;
interface ae0;
}
}
vlans {
Guest_Network {
description "Guest Network";
vlan-id 30;
}
default {
vlan-id 1;
}
}
poe {
interface all;
}