We are new to RouterOS completely and not so advanced in CISCO either. We are trying to configure a CCR1072 to connect to a CISCO switch (2960) through SFP+ ports as a trunk (carry multiple vlans).
CCR1072 (Configured on Winbox so I dont know the commands):
added vlan 99 to interface sfp-sfpplus1
added ip address 192.168.99.1/24 to interface sfp-sfpplus1
CISCO Switch S1:
vlan 99
interface TenGigabitEthernet1/0/1
switchport mode access
switchport access vlan 99
// For testing I have this port configured
interface GigabitEthernet1/0/13
switchport mode access
switchport access vlan 99
Test laptop connected on port 13 of switch with IP address 192.168.99.10 255.255.255.0
With this configuration, I can ping from the test laptop to the vlan interface on the router (192.168.99.1) and also from the router (winbox) I can ping the laptop (192.168.99.10).
So this seems to work at the very basic level when the SFP+ port is configured as an access port (only carry a single VLAN).
However, when I change the switch settings to the following I cannot get any ping:
default interface TenGigabitEthernet1/0/1
interface TenGigabitEthernet1/0/1
switchport mode trunk
switchport trunk allowed vlan 99
I cannot find any option on WinBox to change the sfp-sfpplus1 interface to a trunk, but I thought it doesnt need it, you just add more vlans to that interface. However, this doesnt seem to work with the CISCO switch when the switch is set to switchport mode access.
Please help.