-
|
Can someone help me out and confirm if this should work? A simple example topology, I have been trying to figure it out on my own for the past few days, without luck. I have tried both Debian and Ubuntu on both a Virtual Machine and within Windows WSL. I have tried
Also tested device type frr without success, though I did not test too thoroughly. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 11 replies
-
I had the same problem. The last time I checked, using debug ip tcp something on Cisco IOL, it reported checksum errors when external tools tried to establish TCP connection with it. I documented it in https://netlab.tools/caveats/#cisco-ios-on-linux-iol-and-iol-layer-2-image and moved on. Never looked into what exactly is causing it, could be TCP offload on some Linux interface.
FRR containers do not run an SSH server. You could use FRR virtual machines, but that consumes way more memory. If you want to test tools like SuzieQ or Graphite with containers, use Arista cEOS.
Thanks a million. |
Beta Was this translation helpful? Give feedback.
-
|
Please note that ssh works. If all those checksum errors are induced by emulated hw offloading, please tell me by what mechanisms you think we can actually have hours long sessions of ssh into iol without any issues , but suzieq has issues. How does one works over those wires and the other one not This needs more analysis - at least find exactly when/why it happens and what is the exact type of packet which triggers it. |
Beta Was this translation helpful? Give feedback.
-
|
I do not disagree with you, I just find it pretty weird. Why does Suqieq works with Arista then ? I doubt veths are differently setup Anyways, maybe doesn't worth learning why. |
Beta Was this translation helpful? Give feedback.
-
|
Ran a few more checks and tried out all the possible options. The only thing that solves the issue is disabling offloads (tx off) on the host side of the veth pair connecting IOL to the management network. Disabling offloads on container interfaces or on the host side of the tool container interface does not help. |
Beta Was this translation helpful? Give feedback.
I had the same problem. The last time I checked, using debug ip tcp something on Cisco IOL, it reported checksum errors when external tools tried to establish TCP connection with it.
I documented it in https://netlab.tools/caveats/#cisco-ios-on-linux-iol-and-iol-layer-2-image and moved on.
Never looked into what exactly is causing it, could be TCP offload on some Linux interface.
FRR containers do not run an SSH server. You could use …