0% found this document useful (0 votes)
142 views16 pages

MikroTik - RouterOSv7 First Look - L3 ASIC Performance Testing

The document discusses performance testing of Layer 3 routing capabilities on MikroTik CRS3xx series switches running RouterOS version 7. Testing showed near line-rate 10Gbps throughput using hardware offloading. While promising, some optimizations are still needed to reduce TCP retransmissions and maintain performance across varying packet sizes.

Uploaded by

bigdrsmith
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
142 views16 pages

MikroTik - RouterOSv7 First Look - L3 ASIC Performance Testing

The document discusses performance testing of Layer 3 routing capabilities on MikroTik CRS3xx series switches running RouterOS version 7. Testing showed near line-rate 10Gbps throughput using hardware offloading. While promising, some optimizations are still needed to reduce TCP retransmissions and maintain performance across varying packet sizes.

Uploaded by

bigdrsmith
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 16

29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.

net

MikroTik – RouterOSv7 first look – L3 ASIC


performance testing
 October 12, 2020 (https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-
performance-testing/)  Kevin Myers (https://stubarea51.net/author/kevin-myersiparchitechs-com/)
 MikroTIk (https://stubarea51.net/category/mikrotik/), routing
(https://stubarea51.net/category/routing/), Switching (https://stubarea51.net/category/switching/)

When MikroTik announced the CRS3xx series switches a few years ago, one of the most exciting
aspects of that news release was the prospect of L3 forwarding in hardware on very inexpensive
devices.

A quick review of the Marvell Prestera ASIC family showed a number of advanced routing,
switching, MPLS and VxLAN capabilites.

Fast forward to 2020, where MikroTik has started to enable some of those features in RouterOS
v7 beta.

Now we can finally take some of the CRS3xx switches and test their capabilities with L3
forwarding performance in hardware

CRS 3xx series capabilities overview


Before getting into the testing, it’s probably helpful to review some of the basic specs and
capabilities of the CRS3xx switch line.

Here is a chart from MikroTik that outlines ACL rule count, Unicast FDB entries and MTU size.

CRS 3xx model comparison 

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 1/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

MIkroTik has been working on the development of the features listed below to offload into
hardware.

For the tests in this article, we’ll be using IPv4 Unicast and Inter-VLAN routing.

Supported feature list

Currently, the following switches are supported.

For the testing in this article, we are using the CRS317-1G-16S+

Switches supported by 7.1beta2 

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 2/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

(https://iparchitechs.com/contact-us/)

Performance testing – overview


The physical setup for testing is fairly straightforward.

HP DL380 gen7 with ProxMox PVE 6.2-4


2 x 10G Multimode OM4 fiber jumpers
4 x 10G Multimode SFPs
CRS 317-1G-16S+ running RouterOS 7.1beta2

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 3/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

The logical setup is also very straightforward

ProxMox/KVM hypervisor using PVE 6.2-4


Two RFC1918 subnets and VLANs to test intervlan routing performance
Two Ubuntu 20.04 LTS VMs
iperf3 on both Ubuntu VMs

MikroTik Configuration

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 4/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

/interface bridge
add mtu=9216 name=bridge1 vlan-filtering=yes
add name=lo0
/interface ethernet
set [ find default-name=sfp-sfpplus15 ] comment="Proxmox - ens2f0" l2mtu=10218 mtu=92
16
set [ find default-name=sfp-sfpplus16 ] comment="Proxmox - ens2f1" l2mtu=10218 mtu=92
16
/interface vlan
add interface=bridge1 mtu=9216 name=vlan103 vlan-id=103
add interface=bridge1 mtu=9216 name=vlan104 vlan-id=104
/interface ethernet switch
set 0 l3hw=yes
/ip pool
add name=dhcp_pool0 ranges=10.255.34.11-10.255.34.254
add name=dhcp_pool1 ranges=10.255.35.2-10.255.35.254
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=vlan103 name=dhcp1
add address-pool=dhcp_pool1 disabled=no interface=vlan104 name=dhcp2
/ip vrf
add list=all name=main
/interface bridge port
add bridge=bridge1 interface=sfp-sfpplus15 pvid=103
add bridge=bridge1 interface=sfp-sfpplus16 pvid=104
/interface bridge vlan
add bridge=bridge1 tagged=bridge1 untagged=sfp-sfpplus15 vlan-ids=103
add bridge=bridge1 tagged=bridge1 untagged=sfp-sfpplus16 vlan-ids=104
/ip address
add address=10.255.34.1/24 interface=vlan103 network=10.255.34.0
add address=10.255.35.1/24 interface=vlan104 network=10.255.35.0
/ip dhcp-server network
add address=10.255.34.0/24 dns-server=9.9.9.9 gateway=10.255.34.1
add address=10.255.35.0/24 dns-server=9.9.9.9 gateway=10.255.35.1

Test #1 – iperf3 testing at 96 byte MTU


CPU – 0% to 3%

CRS 317 – interface sfp-sfpplus15

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 5/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

iperf3 results

Test #2 – iperf3 testing at 512 byte MTU


CPU – 0% to 3%

CRS 317 – interface sfp-sfpplus15

iperf3 results 

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 6/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

Test #3 – iperf3 testing at 1500 byte MTU


CPU – 0% to 3%

CRS 317 – interface sfp-sfpplus15

iperf3 results

Conclusions
The initial results are very promising. Getting close to 10G sustained L3 throughput using an ASIC
on a device that lists for $399 USD is unheard of.

The most noteworthy items for improvement are the number of TCP retransmits in the iperf

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 7/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

testing and the speed reduction as the MTU is reduced.

Normally, most ASIC based platforms will push 96 bytes through as fast as 1500 bytes. The
retransmits suggest that more work is needed in the way RouterOS interfaces with the switching
buffers for L3 HW offload

This is also on a beta version of RouterOS that will still go through many revisions before going
into prod so I would expect to see the performance to improve as the code matures.

All things considered though, things are looking great to take the CRS3xx series and be able to
deploy them as a true L3 switch in prod sometime in 2021.

MikroTik (https://stubarea51.net/tag/mikrotik/) RouterOSv7 (https://stubarea51.net/tag/routerosv7/)

7 thoughts to “MikroTik – RouterOSv7 first look – L3 ASIC


performance testing”

PUBUDEUX
December 13, 2020 at 6:46 pm (https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-
performance-testing/#comment-123760)

Hey! Thanks for posting this, this is really helpful.

I tried using your exact config on a CRS317 with 7.1beta3 and for some strange
reason Level 3 hw offloading does not seem to be working. Inter-vlan routing goes
through the CPU no matter what I try.

Do you know if there’s something that I might need to do outside of the config?

I installed routerOS + firmware and started from a clean reset.

Another thing I noticed is there is no option for l3hw=fw as it says there should be in
the docs. Maybe support was removed in beta3?
S://STUBAREA51.NET/2020/10/12/MIKROTIK-ROUTEROSV7-FIRST-LOOK-L3-ASIC-PERFORMANCE-TESTING/?REPLYTOCOM=123760#RESPOND)

SHAKTI PLASMOSIS
February 19, 2021 at 8:23 am (https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-
performance-testing/#comment-128837)

L3 offload is broken in 7.1beta3; Beta 4 has been released, fixing this and offering a
more versatile implementation of L3 offload which now allows enabling the feature 
per-port.
/STUBAREA51.NET/2020/10/12/MIKROTIK-ROUTEROSV7-FIRST-LOOK-L3-ASIC-PERFORMANCE-TESTING/?REPLYTOCOM=128837#RESPOND)
https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 8/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

RONALD HALEY (HTTP://HALEYCENTRAL.COM)


June 4, 2021 at 11:29 pm (https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-
performance-testing/#comment-131514)

Tried it on a CRS305 with 7.1b6. Got a little over 200Mb/s. Yep, bits. Here is the
/export
/interface bridge
add mtu=9216 name=bridge1 vlan-filtering=yes
add name=lo0
/interface ethernet
set [ find default-name=sfp-sfpplus3 ] comment=”Proxmox – ens2f0″ l2mtu=10218 \
mtu=9216
set [ find default-name=sfp-sfpplus4 ] comment=”Proxmox – ens2f1″ l2mtu=10218 \
mtu=9216
/interface vlan
add interface=bridge1 mtu=9216 name=vlan103 vlan-id=103
add interface=bridge1 mtu=9216 name=vlan104 vlan-id=104
/interface ethernet switch
set 0 l3-hw-offloading=yes
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp_pool0 ranges=10.255.34.11-10.255.34.254
add name=dhcp_pool1 ranges=10.255.35.2-10.255.35.254
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=vlan103 name=dhcp1
add address-pool=dhcp_pool1 disabled=no interface=vlan104 name=dhcp2
/interface bridge port
add bridge=bridge1 interface=sfp-sfpplus3 pvid=103
add bridge=bridge1 interface=sfp-sfpplus4 pvid=104
/interface bridge vlan
add bridge=bridge1 tagged=bridge1 untagged=sfp-sfpplus3 vlan-ids=103
add bridge=bridge1 tagged=bridge1 untagged=sfp-sfpplus4 vlan-ids=104
/ip address
add address=10.255.34.1/24 interface=vlan103 network=10.255.34.0
add address=10.255.35.1/24 interface=vlan104 network=10.255.35.0
/ip dhcp-server network
add address=10.255.34.0/24 dns-server=9.9.9.9 gateway=10.255.34.1
add address=10.255.35.0/24 dns-server=9.9.9.9 gateway=10.255.35.1
/system routerboard settings 
set boot-os=router-os

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 9/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

Any ideas very welcome. We would love to use the CRS series, but lack of wire speed
an issue.
Thanks
S://STUBAREA51.NET/2020/10/12/MIKROTIK-ROUTEROSV7-FIRST-LOOK-L3-ASIC-PERFORMANCE-TESTING/?REPLYTOCOM=131514#RESPOND)

KEVIN MYERS (HTTP://WWW.IPARCHITECHS.COM)


June 6, 2021 at 11:10 am (https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-
performance-testing/#comment-131565)

MikroTik just enabled L3 forwarding for all 3xx series switches (vs. just a few) with
the latest release so it’s possible there may be some bugs. Your config looks correct.
If it’s not working, I would post in the v7 beta forum at forum.mikrotik.com
/STUBAREA51.NET/2020/10/12/MIKROTIK-ROUTEROSV7-FIRST-LOOK-L3-ASIC-PERFORMANCE-TESTING/?REPLYTOCOM=131565#RESPOND)

RONALD HALEY (HTTP://HALEYCENTRAL.COM)


June 7, 2021 at 11:33 am (https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-
performance-testing/#comment-131604)

Thank you. Will try testing on crs309 and crs317.


TUBAREA51.NET/2020/10/12/MIKROTIK-ROUTEROSV7-FIRST-LOOK-L3-ASIC-PERFORMANCE-TESTING/?REPLYTOCOM=131604#RESPOND)

RONALD HALEY
June 10, 2021 at 3:47 pm (https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-
performance-testing/#comment-131672)

Kevin,
Took your advice and posted on MT forum. Apparently L3 forwarding doesn’t support
large MTU’s yet, although it appeared to work for you. Perhaps they changed the coed
when they expanded it to all CRS.
Like your work btw:)
S://STUBAREA51.NET/2020/10/12/MIKROTIK-ROUTEROSV7-FIRST-LOOK-L3-ASIC-PERFORMANCE-TESTING/?REPLYTOCOM=131672#RESPOND)

KEVIN MYERS (HTTP://WWW.IPARCHITECHS.COM)


June 11, 2021 at 6:53 am (https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-
performance-testing/#comment-131688)

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 10/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

Gotcha, that makes sense. There are definitely a lot of things changing weekly in
ROSv7 so this isn’t surprising. The routing filters are being re-written because they
were too complex.
Thanks for the feedback on my posts – always great to hear that people find it
useful
/STUBAREA51.NET/2020/10/12/MIKROTIK-ROUTEROSV7-FIRST-LOOK-L3-ASIC-PERFORMANCE-TESTING/?REPLYTOCOM=131688#RESPOND)

LEAVE A REPLY

Your email address will not be published. Required fields are marked *

Comment *

Name *

Email *

Website

Notify me of follow-up comments by email.

Notify me of new posts by email.

POST COMMENT

 Conference Preview: WISP Virtual Summit 2020 (https://stubarea51.net/2020/07/27/conference-preview-wisp-


virtual-summit-2020/)

MikroTik – RouterOSv7 first look – Dynamic routing with IPv6 and OSPFv3/BGP 

(https://stubarea51.net/2020/12/30/mikrotik-routerosv7-first-look-dynamic-routing-with-ipv6-and-ospfv3-bgp/)

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 11/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

FOLLOW US

ABOUT US

About Kevin Myers (https://stubarea51.net/about-me/)

About Vince Schuele (https://stubarea51.net/about-vince-schuele/)

About Nate Gotz (https://stubarea51.net/about-nate-gotz/)

About StubArea51.NET (https://stubarea51.net/about-stubarea51-net/)

Links (https://stubarea51.net/links/)

RECENT COMMENTS

 Mark (http://zealnetworks.ca) on IP Infusion: EVPN-MPLS first look on GA 6.0


(https://stubarea51.net/2022/08/28/ip-infusion-evpn-mpls-first-look-on-ga-6-0/#comment-
148601)

 jay on Starting a WISP: guide to selecting a routing architecture


(https://stubarea51.net/2020/03/03/starting-a-wisp-guide-to-selecting-a-routing-
architecture/#comment-148153)

 Alhassan Dumbuya on Links (https://stubarea51.net/links/#comment-145715)

 BGP communities part 3: Customer BGP Traffic Engineering communities – StubArea51.net


(https://stubarea51.net/2022/06/12/bgp-communities-part-3-customer-bgp-traffic-engineering-
communities/) on Utilizing BGP Communities for traffic steering – part 1: Firewalls
(https://stubarea51.net/2021/11/08/utilizing-bgp-communities-for-traffic-steering-part-1-
firewalls/#comment-145608)

 jose on MikroTik – ROSv7 – VPLS over IPv6 MPLS with LDPv6


(https://stubarea51.net/2022/05/16/mikrotik-rosv7-vpls-over-ipv6-mpls-with-ldpv6/#comment-
145142)

RECENT POSTS

IP Infusion: EVPN-MPLS first look on GA 6.0 (https://stubarea51.net/2022/08/28/ip-infusion-


evpn-mpls-first-look-on-ga-6-0/)

Situational Awareness for Network Migrations (https://stubarea51.net/2022/08/14/situational-


awareness-for-network-migrations/) 

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 12/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

BGP Communities part 4: Active/Active datacenter (https://stubarea51.net/2022/07/24/bgp-


communities-part-4-active-active-datacenter/)

BGP communities part 3: Customer BGP Traffic Engineering communities


(https://stubarea51.net/2022/06/12/bgp-communities-part-3-customer-bgp-traffic-engineering-
communities/)

MikroTik – ROSv7 – VPLS over IPv6 MPLS with LDPv6


(https://stubarea51.net/2022/05/16/mikrotik-rosv7-vpls-over-ipv6-mpls-with-ldpv6/)

Search… 

ARCHIVES

 August 2022 (https://stubarea51.net/2022/08/)

 July 2022 (https://stubarea51.net/2022/07/)

 June 2022 (https://stubarea51.net/2022/06/)

 May 2022 (https://stubarea51.net/2022/05/)

 April 2022 (https://stubarea51.net/2022/04/)

 March 2022 (https://stubarea51.net/2022/03/)

 February 2022 (https://stubarea51.net/2022/02/)

 December 2021 (https://stubarea51.net/2021/12/)

 November 2021 (https://stubarea51.net/2021/11/)

 August 2021 (https://stubarea51.net/2021/08/)

 July 2021 (https://stubarea51.net/2021/07/)

 June 2021 (https://stubarea51.net/2021/06/)

 April 2021 (https://stubarea51.net/2021/04/)

 February 2021 (https://stubarea51.net/2021/02/)

 January 2021 (https://stubarea51.net/2021/01/)

 December 2020 (https://stubarea51.net/2020/12/)



 October 2020 (https://stubarea51.net/2020/10/)

 July 2020 (https://stubarea51.net/2020/07/)


https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 13/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

 March 2020 (https://stubarea51.net/2020/03/)

 February 2020 (https://stubarea51.net/2020/02/)

 January 2020 (https://stubarea51.net/2020/01/)

 September 2019 (https://stubarea51.net/2019/09/)

 February 2019 (https://stubarea51.net/2019/02/)

 September 2018 (https://stubarea51.net/2018/09/)

 August 2018 (https://stubarea51.net/2018/08/)

 July 2018 (https://stubarea51.net/2018/07/)

 June 2018 (https://stubarea51.net/2018/06/)

 May 2018 (https://stubarea51.net/2018/05/)

 April 2018 (https://stubarea51.net/2018/04/)

 January 2018 (https://stubarea51.net/2018/01/)

 August 2017 (https://stubarea51.net/2017/08/)

 July 2017 (https://stubarea51.net/2017/07/)

 May 2017 (https://stubarea51.net/2017/05/)

 February 2017 (https://stubarea51.net/2017/02/)

 January 2017 (https://stubarea51.net/2017/01/)

 November 2016 (https://stubarea51.net/2016/11/)

 October 2016 (https://stubarea51.net/2016/10/)

 May 2016 (https://stubarea51.net/2016/05/)

 April 2016 (https://stubarea51.net/2016/04/)

 March 2016 (https://stubarea51.net/2016/03/)

 January 2016 (https://stubarea51.net/2016/01/)

 November 2015 (https://stubarea51.net/2015/11/)

 October 2015 (https://stubarea51.net/2015/10/)



 September 2015 (https://stubarea51.net/2015/09/)

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 14/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

 August 2015 (https://stubarea51.net/2015/08/)

 July 2015 (https://stubarea51.net/2015/07/)

CATEGORIES

 BGP (https://stubarea51.net/category/bgp/)

 BRAS (https://stubarea51.net/category/bras/)

 Cisco (https://stubarea51.net/category/cisco/)

 FISP (https://stubarea51.net/category/fisp/)

 HA Access Concentrator (https://stubarea51.net/category/ha-access-concentrator/)

 IPv6 (https://stubarea51.net/category/ipv6/)

 Juniper (https://stubarea51.net/category/juniper/)

 Mesh VPN (https://stubarea51.net/category/mesh-vpn/)

 MikroTIk (https://stubarea51.net/category/mikrotik/)

 MPLS (https://stubarea51.net/category/mpls/)

 Network Design (https://stubarea51.net/category/network-design/)

 Network Engineering (https://stubarea51.net/category/network-engineering/)

 Network Field Day (https://stubarea51.net/category/network-field-day/)

 Network Modeling (https://stubarea51.net/category/network-modeling/)

 Networking Field Day (https://stubarea51.net/category/networking-field-day/)

 NFV (https://stubarea51.net/category/nfv/)

 OSPF (https://stubarea51.net/category/ospf/)

 PPPoE (https://stubarea51.net/category/pppoe/)

 RouterOS v7 (https://stubarea51.net/category/routeros-v7/)

 routing (https://stubarea51.net/category/routing/)

 Security (https://stubarea51.net/category/security/)

 Switching (https://stubarea51.net/category/switching/)

 Uncategorized (https://stubarea51.net/category/uncategorized/)
https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 15/16
29/09/2022 10:58 MikroTik – RouterOSv7 first look – L3 ASIC performance testing – StubArea51.net

 Virtualization (https://stubarea51.net/category/virtualization/)

 Whitebox (https://stubarea51.net/category/whitebox/)

 WISP (https://stubarea51.net/category/wisp/)

META

Log in (https://stubarea51.net/wp-login.php)

Entries feed (https://stubarea51.net/feed/)

Comments feed (https://stubarea51.net/comments/feed/)

WordPress.org (https://wordpress.org/)

OFFICIAL BLOG OF:

(http://www.iparchitechs.com)

StubArea51.com (https://stubarea51.net/) All rights reserved. Theme by Colorlib (https://colorlib.com/) Powered by


WordPress (https://wordpress.org/)

https://stubarea51.net/2020/10/12/mikrotik-routerosv7-first-look-l3-asic-performance-testing/ 16/16

You might also like