You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example use-case:
Support for unfragmented ≥ 1500-byte packets across MPLS LSP.
To accomplish this in, say, Mikrotik RouterOS-land:
Set interface "L2" MTU as high as hardware allows (if it's not already)
Set MPLS interface MTU to 1530 (1508 is default, but 1530 is enough for VLAN + VPLS + MPLS headers).
IP "L3" MTU of interface remains 1500
This has the advantage of not having to fiddle with OSPF MTU's across the LSP or having to use MTU-ignore (which is a bad thing). Therefore, less chance of MTU problems.
So, what I'm looking for is an equivalent in FRR-land. There doesn't seem to be any MTU knobs for LDP or MPLS itself; only IP (which is a kernel setting, not something in FRR itself anyway).
I think there should be a way to tell OSPF to override the MTU with an arbitrary value.
I hope I made myself clear in this. Let me know if you need more details. Thanks!
The text was updated successfully, but these errors were encountered:
This makes sense to me. We have a single MTU setting in the Linux kernel which is the L3 MTU (1500 by default). When using MPLS we usually need to increase this MTU to account for MPLS labels, but this has the side effect of affecting routing daemons that use the MTU value for other things (e.g. checks for MTU mismatches in ospfd).
What we could do is to add two new commands in zebra: "mtu" and "mpls mtu". Then the biggest of these two values would be installed in the kernel, but both MTUs would be sent separately to the client daemons. This way ospfd would be able to obtain the L3 MTU and ignore the MPLS MTU. The new MTU commands would be optional and zebra would use the value from the kernel when static MTUs are not configured. We would also need to provide hooks for setting the different MTUs on external dataplanes.
Example use-case:
Support for unfragmented ≥ 1500-byte packets across MPLS LSP.
To accomplish this in, say, Mikrotik RouterOS-land:
This has the advantage of not having to fiddle with OSPF MTU's across the LSP or having to use MTU-ignore (which is a bad thing). Therefore, less chance of MTU problems.
So, what I'm looking for is an equivalent in FRR-land. There doesn't seem to be any MTU knobs for LDP or MPLS itself; only IP (which is a kernel setting, not something in FRR itself anyway).
I think there should be a way to tell OSPF to override the MTU with an arbitrary value.
I hope I made myself clear in this. Let me know if you need more details. Thanks!
The text was updated successfully, but these errors were encountered: