This is the right forum for the newbie questions. I have vlans, one is untagged and is VLAN 1 and the other 2 are tagged.
How do you setup RouterOS on an RB2011 so that I can use the untagged vlan along with the tagged vlans. The tagged VLANS work fine and if I tag the untagged vlan it works but most of the time vlan 1 is not tagged in our environment.
Below is the config from routerOS:
# aug/18/2015 14:53:28 by RouterOS 6.23
# software id = XVSD-YZD5
#
/interface bridge
add name=b-Data
add name=b-IPTV
add name=b-MGMT
add admin-mac=E4:8D:8C:1E:91:FA auto-mac=no name=bridge-local
/interface ethernet
set [ find default-name=ether1 ] name=1-gateway
set [ find default-name=ether2 ] name=2-backbone
set [ find default-name=ether5 ] name=5-backbone
set [ find default-name=ether6 ] name=eth6
set [ find default-name=ether7 ] master-port=eth6 name=eth7
set [ find default-name=ether8 ] master-port=eth6 name=eth8
set [ find default-name=ether9 ] master-port=eth6 name=eth9
set [ find default-name=ether10 ] name=eth10
/ip neighbor discovery
set "1-gateway" discover=no
/interface vlan
add interface=5-backbone l2mtu=1594 name=v1-MGMT-e5 vlan-id=1
add interface=5-backbone l2mtu=1594 name=v282-DATA-e5 vlan-id=282
add interface=5-backbone l2mtu=1594 name=v788-IPTV-e5 vlan-id=788
/interface ethernet
set [ find default-name=ether3 ] master-port=5-backbone name=3-backbone
set [ find default-name=ether4 ] master-port=5-backbone name=4-backbone
/interface ethernet switch port
set 3 vlan-mode=secure
set 4 vlan-mode=secure
set 5 default-vlan-id=1 vlan-mode=secure
set 6 default-vlan-id=1
set 7 default-vlan-id=1
set 8 default-vlan-id=1
set 9 default-vlan-id=1
set 10 default-vlan-id=1
set 11 default-vlan-id=1 vlan-mode=secure
set 12 default-vlan-id=1
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp ranges=192.168.88.10-192.168.88.254
/port
set 0 name=serial0
/interface bridge port
add bridge=b-MGMT interface=v1-MGMT-e5
add bridge=b-IPTV interface=v788-IPTV-e5
add bridge=b-Data interface=v282-DATA-e5
add bridge=b-MGMT interface=5-backbone
/interface ethernet switch vlan
add independent-learning=no ports=\
3-backbone,4-backbone,5-backbone,switch1-cpu switch=switch1 vlan-id=1
add independent-learning=no ports=\
3-backbone,4-backbone,5-backbone,switch1-cpu switch=switch1 vlan-id=282
add independent-learning=no ports=\
2-backbone,4-backbone,5-backbone,switch1-cpu switch=switch1 vlan-id=788
/ip address
add address=10.232.1.168/24 comment="default configuration" interface=eth10 \
network=10.232.1.0
add address=10.150.0.1/22 interface=v1-MGMT-e5 network=10.150.0.0
add address=10.150.8.1/22 interface=v282-DATA-e5 network=10.150.8.0
add address=10.150.16.1/22 interface=v788-IPTV-e5 network=10.150.16.0
/ip dhcp-client
add comment="default configuration" dhcp-options=hostname,clientid disabled=\
no interface=1-gateway
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=10.232.1.168 name=router
/ip firewall filter
add chain=input comment="default configuration" protocol=icmp
add chain=input comment="default configuration" connection-state=\
established,related
add action=drop chain=input comment="default configuration" in-interface=\
1-gateway
add chain=forward comment="default configuration" connection-state=\
established,related
add action=drop chain=forward comment="default configuration" \
connection-state=invalid
add action=drop chain=forward comment="default configuration" \
connection-nat-state=!dstnat connection-state=new in-interface=1-gateway
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" \
out-interface=1-gateway
/system clock
set time-zone-name=America/New_York
/system identity
set name=KNOXVr01
/system ntp client
set enabled=yes primary-ntp=10.232.1.248 secondary-ntp=10.232.1.249
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=2-backbone
add interface=3-backbone
add interface=4-backbone
add interface=5-backbone
add interface=eth6
add interface=eth7
add interface=eth8
add interface=eth9
add interface=eth10
add interface=sfp1
add interface=bridge-local
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=2-backbone
add interface=3-backbone
add interface=4-backbone
add interface=5-backbone
add interface=eth6
add interface=eth7
add interface=eth8
add interface=eth9
add interface=eth10
add interface=sfp1
add interface=bridge-local
[admin@KNOXVr01] >