Browsed by
Category: protocols

Does your Wave2 AP need NBase-T?

Does your Wave2 AP need NBase-T?

Cisco recently launched the 2800 and 3800 series 802.11ac wave-2 access points. The 3800 Datasheet quotes a theoretical maximum throughput of 5.2Gbps when operating in Dual 5GHz radio mode (2 x 2.6Gbps). If you ran two cables to your AP you could use the second ethernet port to create a 2 x 1Gbps LAG. However there is still some debate about whether 2Gbps of throughput is sufficient for a single-radio Wave2 AP. Some companies may not be willing to invest the time and expense…

Read More Read More

Redistribution of named and tagged static routes

Redistribution of named and tagged static routes

I always name my IOS static routes as a best practise. However I hit a syntax issue last week when I tried to combine the named static with a tag, then redistributing that tagged static route into OSPF. If you have issues redistributing a ‘named and tagged static’ then this may be the post for you. The simplified config snippet below is configured on SW1 (cisco 3750X). This config will match all static routes tagged with ‘200’ and redistribute them into…

Read More Read More

Link Utilisation Varies By Packet Size

Link Utilisation Varies By Packet Size

I said to a colleague recently, “you can’t get 100% link utilisation on an Ethernet link”. When I tried to explain myself I wished I could link to a simple blog post with a nice graph. So here’s a quick blog post with a nice graph. I have talked a little about link speed in a previous post, but I wanted expand on this and add a quick graph to back up the argument.

Is CPU or ASIC responsible for forwarding?

Is CPU or ASIC responsible for forwarding?

I received the question below from reader Ned as a comment on my 24-port ASIC post and thought that the discussion was worth a post of it’s own. …Would you be able to speak a bit about the actual physical path or packet flow a packet takes inside the switch itself and how does the hardware forwarding take place within the switch and asic. When does packet get sent to the Asic. Is it happen on ingress or on egress? When…

Read More Read More

A quiz on OSPF

A quiz on OSPF

Hi All, I’m experimenting with a new quiz engine and thought I’d write an OSPF Quiz.  It’s only 8 questions and covers some of the weird and wonderful OSPF topics I have covered in the past. You’ll find them pretty easy if you’re a regular reader, or just don’t get out that much (like me!). I’d love it if you could have a go and give me some feedback. http://thenetworksherpa.com/ospf-quiz/ Regards, John Harrington.

OSPF – Setting MTU values for Cisco and Juniper

OSPF – Setting MTU values for Cisco and Juniper

MTU mismatches are the primary reason an OSPF adjacency becomes stuck in the EXSTART state.  After hellos are exchanged and the routers become neighbors, each OSPF speaker advertises the IP MTU of it’s local interface in a Data Base Description (DBD) LSA.  If there is a mismatch you’ll probably just adjust the configuration to be identical on both ends of the link and be done. However, when you try to peer two OSPF routers with different network operating systems, things…

Read More Read More

OSPF – Sequence numbers are sooo negative

OSPF – Sequence numbers are sooo negative

OSPF Sequence Numbers When an OSPF router originates an LSA for the first time, it will choose the sequence number 0x80000001. The 0x prefix means it’s a hexadecimal number, where each hex character represents a four bit binary word.  This post discusses why the OSPF sequence number begins with 0x8, and some quirks when counting with signed numbers.

OSPF – Immediate hellos

OSPF – Immediate hellos

Unicast Hello packets I was debugging an issue recently and ran across something unusual. I had thought that all OSPF hellos on BCAST and P2P intefaces were sent as multicasts.  However as you can see from the wireshark capture below, packet 10 is clearly sent as a unicast. # Time Source Dest Proto Info 04 15.503997 192.168.12.2 224.0.0.5 OSPF Hello Packet 09 23.507483 192.168.12.1 224.0.0.5 OSPF Hello Packet 10 23.518430 192.168.12.2 192.168.12.1 OSPF Hello Packet 14 25.400245 192.168.12.2 224.0.0.5 OSPF…

Read More Read More

OSPF – BROADCAST interfaces and Type-2 LSAs

OSPF – BROADCAST interfaces and Type-2 LSAs

A test – What LSAs will broadcast interfaces generate? You have just added a new workgroup switch, switch_1 to your network. You have the following conditions. Router_A and Router_B were already fully adjacent over an OSPF point-to-point link. Network 192.168.12.0/24 is immediately advertised by Router_A to Router_B. There are no other OSPF routers connected to Switch_1. Router_A interface Gi1/0 is up/up, has OSPF network-type BCAST and has assumed the role of DR for that segment. My question to you is,…

Read More Read More

OSPF – Lingering LSAs from unreachable routers

OSPF – Lingering LSAs from unreachable routers

When a single-homed router is isolated by link failure, the LSAs it had previously originated can live for up to 60 minutes in the OSPF LSDB of the surviving routers. This may not be what you were expecting, and can cause a lot of confusion when troubleshooting OSPF. In this post we’ll look at why LSAs from an isolated router linger and how OSPF still knows how to ‘do the right thing’.