Trunking with 750GL

what is the proper way to setup trunking on this router? Having a hard time…just want it to trunk to my cisco switch.

I just completed this on the 750GL. You need to create each VLAN on the interface you want to trunk.

Example: Trunk Ether5

/interface vlan add name=vlan10 vlan-id=10 interface=ether5 disabled=no
/interface vlan add name=vlan20 vlan-id=20 interface=ether5 disabled=no
/interface vlan add name=vlan20 vlan-id=30 interface=ether5 disabled=no

Since this is tied to the interface, if you wanted more than 1 trunk interface, you’d need to create a bridge.

Now if you have any access ports you wish to use on a VLAN, you need to create a bridge and add the Interface and VLAN to it.

/interface bridge add name=br-vlan10 disabled=no
/interface bridge port add interface=“vlan10” bridge=“br-vlan10” disabled=no
/interface bridge port add interface=“ether1” bridge=“br-vlan10” disabled=no


This was a little difficult to wrap my head around at first, coming from a Cisco world. It is all working for me now, but I only needed 1 Trunk port and the rest Access ports.

Interface->bonding if you talk about 802.3ad and similar.

I am talking dot1q…trunking to cisco switch.

Ok. VLAN trunking. Sorry for misunderstanding…