Thursday, January 19, 2012

Ethernet Taps - Don't Get Me Started

Photo by sparktography - Found on flickr
I got to pull some Ethernet taps out of the closet to diagnose a problem last week, and was inspired to bang some thoughts about taps into my keyboard. So here they are: More than you probably want to know about Ethernet taps.

Ethernet taps are in-line devices used for capturing data between two systems. They're not the weapon-of-choice when troubleshooting application layer problems because mirror functions on switches (SPAN) and capture mechanisms on servers (tcpdump / wireshark) are much more convenient here.

Where taps really shine is for the sorts of problems which might cause you to mistrust one or both of the systems on the ends of a link.

Say we've got a performance-related packet delivery problem. It's possible that the switch mirror function will claim that a frame was sent when in reality the frame was dropped due to a buffering problem downstream of the mirror function.

On the other hand,  there are times when packet captures performed at the server claim packets went undelivered or were delivered late when in reality the packets were delivered just fine.

You also might want to save your (limited) mirror sessions for tactical work, rather than burning up this resource for a long-term traffic monitoring solution.

So, what do you do when mirror (SPAN) and capture (tcpdump) disagree about what packets were delivered, or you want to deploy a long-term strategic monitor? You put a tap in the link.

Optical Taps
The simplest form of Ethernet tap is a fiber optic splitter. Light enters the splitter via the blue fiber on the left, and is split into the blue and red fibers on the right:

The following photo illustrates the function. Light from my flashlight is appearing in both the red and blue fibers.

One of those fibers will be connected to the analysis station, and the other one to the destination system (the other end of the link).

Optical taps are generally packaged in pairs: one for "Northbound" traffic and one for "Southbound" traffic on the link. Here's a typical assembled tap:


Optical taps don't require any power, and they're generally safe for long-term deployment on critical infrastructure links. They can be used for 10Mb/s, 100Mb/s, 1Gb/s or 10Gb/s links (it's just glass afterall), so long as the fiber is the correct type in terms of modality and core diameter.

Taps like this generally express the amount of light delivered through the link vs. delivered to the analysis station in terms of db loss. You'll want to consider your cable lengths and light power budget when installing one of these taps. When tapping in-room links, I've never had any problem using splitters that divide the light power evenly.

Passive Copper Taps
Passive copper taps for 10Mb/s and 100Mb/s links work pretty much the same way as optical taps, but with electrons, not photons.

You can build a totally passive tap for just a few dollars worth of parts from a hardware store. The result is a totally passive tap that requires no power and looks like this:

These taps are effective, but I'd think twice about using them in a production environment. Playing games with the signal in this way can lead to unpredictable results, maybe even broken equipment.

Update 1/26/2012 - duaneo shared this picture of his passive tap panel:
duaneo's tap panel
Apparently it's been doing tap duty at a financial services provider for years without issue. He's got it fed into a linux system "crammed full of NICs bonded together." Nifty, thanks for sharing!

Commercial passive taps generally work the same way, but instead of connecting the tap ports directly to the forked traces on the circuit board, they run the tapped traces into some high-impedance ethernet repeater equipment. The signal is then repeated at full strength by powered transmit magnetics. This minimizes degradation of the link under test, and ensures that a wiring mistake on the tap ports can't knock out the link.

These sorts of taps only require power to produce the signal for the analyzer. Power loss at the tap will not impact data flow on the link under test. Accordingly, they're safe to use for long-term deployment on critical infrastructure links.

Gigabit Copper Taps
It is not (AFAIK) possible to passively tap gigabit copper links. The problem here is that with 1000BASE-T links, all copper pairs (there are four of them) are simultaneously transmitting and receiving. The stations on each end of the cable are able to distinguish incoming voltages from outgoing because they know what they've sent. They subtract the voltage they've put onto the wire pairs from the voltage they observe there. The result of this subtraction is the voltage contributed by the other end, which is the incoming signal.

An intermediary on the wire (the tap) cannot make that distinction, so the voltages observed by a 3rd party are just undecipherable noise.

Tap manufacturers don't like to admit this, but 1000BASE-T taps are never passive devices. They're more like a small switch with mirror functions enabled. The Ethernet link on both ends is terminated by the tap hardware, and frames traversing the link under test are repeated by the tap.

1000Base-T tap manufacturers mitigate the risk of installing their wares by providing redundant power supplies, internal batteries, and banks of relays which will re-wire the internals (reconnecting the link under test) if power to the tap fails.

Manufacturers use terms like "link lock", "zero delay", "zero impact", "fail safe", "totally passive" and "permanent network link" to describe their taps, but I don't believe that it's possible to implement a truly safe 1000BASE-T tap. If I'm wrong about this, please enlighten me in the comments!

Consider some confusing language (new version of the manual here) used by the manufacturers:
The major features of the CA full-duplex Copper TAPs are:
  • Passive access at 10/100 or 1000 Mbps without packet tampering or introducing a single point of failure
Then, later in the same document:
With a 10/100/1000 Mb Copper TAP, the TAP must be an active participant in the negotiated connections between the network devices attached to it. This is true if the TAP is operating at 10, 100, or 1000 Mb. Power failure to the TAP results in the following: ...
  • If you are not using a redundant power supply or UPS or power to both power supplies is lost, then:
...
  • The TAP continues to pass data between the network devices connected to it (firewall/router/switch to server/switch). In this sense the TAP is passive.
  • The network devices connected to the TAP on the Link ports must renegotiate a connection with each other because the TAP has dropped out. This may take a few seconds.
Using the term "passive" to describe a system where the tap actively terminates the Ethernet link with both end stations, and where the frames are passed through moving parts (relays) makes my head spin.

Here's a shot of the relays in that "passive" tap:

Interestingly, this tap uses a bel MagJack, which packages the RJ45 jack and the Ethernet magnetics into a single unit. I gotta confess that I'm a little puzzled about how the relays do their job here, because the MagJack doesn't provide direct access to the Ethernet leads, only to the magnetics. I guess running the integrated magnetics back-to-back (through the relays), without a contiguous Cat5 cable is acceptable?

If anybody from Network Instruments (Hi Pete!) wants to chime in, I'd love to hear how/why this works. Sorry about bashing your marketing there, but the other guys are about to get their turn...

Update (1/25/2012): I pinged Rich Seifert with the question about back-to-back MagJacks. Rich said:
Yes, it is possible to "pass through" an Ethernet connection (10, 100, or 1000BASE-T) using a pair of back-to-back transformers. There will be some loss, so it will reduce the maximum allowable link length from the 100m specification, but in most environments this is not an issue.

Another interesting thing about this tap is how the board is setup to build many different products. On the left are a pair of SFP connectors (you can see one of them in the image) that are unused on my model. Around back are solder pads for a SO-DIMM memory holder, presumably this is the packet buffer for the aggregation tap models. Nifty.

Here's another example of misleading marketing:
With the Gig Zero Delay Tap, power glitches and failures no longer mean dropped packets and lengthy renegotiation sequences. Your network operates more smoothly and your critical business applications remain responsive with the Gig Zero Delay Tap in your monitoring infrastructure.
Sounds great, right? They fail to mention how that really works:
Warning! ... This product contains a NiMH battery. Consult your shipping carrier regarding regulations on safe shipping of NiMH batteries.
So, no dropped packets on power failure (until the batteries run out). I don't know why these sort of claims tend to be so over-inflated, but the problem is nearly universal:


  • Operates transparently.
  • ...
  • Can be left in place permanently.
  • ...
  • Provides continuous network data flow if the power fails.
  • Just like the first one, this tap will go "click!" as the relays re-route traffic during a power failure. Sure, it's milliseconds-fast, but does that matter? An MS Windows based server will destroy all of its TCP sessions in the face of momentary link loss. Spanning tree might have to reconverge. Routing information learned over the link will be lost. That "click!" can be devastating.

    I believe that this tap is actually exactly the same thing as the first tap I mentioned, but with a different paint and stickers. I prefer to buy my gear from the real manufacturers.

    I want to take this opportunity to give a shout-out to the folks at Network Critical. I just perused some of their product materials and I didn't find anything misleading in this regard. Way to go, guys!

    I've used taps from all of the companies I linked above. They were all good products. I just wish the marketing departments were more forthcoming about what's really going on inside the boxes. Having to figure out that "zero delay" means "onboard battery with limited lifetime" is ridiculous.

    Active taps scare me. They're a point of failure that doesn't have to be there.


    Aggregator Taps
    All of the taps I've described so far are "full duplex" taps. This means that you need two sniffer/analyzer ports in order to see bidirectional data. One tap port will deliver "Northbound" frames to the sniffer, and the other will deliver "Southbound" frames.

    Aggregator taps on the other hand, combine northbound and southbound data into a single analyzer interface. This is convenient, because aggregating the data can be a hassle, but aggregation inside the tap introduces some downsides:
    1. Aggregator taps are more expensive because they include processor, buffering and arbitration logic not required by full duplex taps.
    2. Aggregator taps will delay and possibly drop frames because the analyzer port is oversubscribed 2:1.
    It's interesting to note that some of the "zero delay" taps tout their large packet buffers on the analyzer ports. If data isn't being delayed, what's this huge packet buffer for? In this case, it's "zero delay" refers only to the link under test, and it doesn't really mean anything about delay... It's the marketing term for relays and batteries. The fact is, tap output data may be delayed up to 160ms (2MB buffer draining at 100Mb/s) with this device. Does it matter to you? Maybe. Does it sound anything like zero delay? I'd wager not.

    Aggregator taps make good sense when dealing with sub-rate services (100Mb/s service on a gigabit link), or when monitoring heavily uni-directional applications like financial pricing feeds or IPTV services. If it's likely that the combined bidirectional traffic will exceed the speed of the analyzer port, then I prefer to use full-duplex taps with a dedicated tap aggregation appliance

    Unlike full duplex taps, an aggregator tap is always a powered device that generates a fresh (repeated) copy of each frame for the analyzer. This does not mean that an aggregator tap can't be passive. It can be, just like the 10/100 copper tap I diagrammed above. So long as the path of the link under test only crosses passive components, the tap is passive, regardless of whether the copied frames are fed into an aggregation engine.

    Some aggregator taps are configurable: they can operate in either full-duplex mode or they can provide aggregated traffic to two different analyzers.

    Tap Chassis
    Lots of manufacturers are offering chassis of various sizes that can do tapping, aggregation and (sometimes) analysis all in one box. While each of these functions are useful, I shy away from these appliances.

    Critical network links don't tend to be all in one spot. Deploying one of these appliances requires that each interesting / critical network link needs to be patched back to the same point in the data center. A mechanical problem (fire, rack falling through the floor, etc...) could hurt every one of these critical links if you run them through the same physical spot in your facility.

    Rather than bringing each link over to the One True Chassis, I prefer to bring small inexpensive taps to each link. Tap the links in situ, and send your copy of the data back to the analysis gear, instead of the other way around.

    Build Fiber Gig Links
    Because you can't passively tap a gigabit copper link, I think it's irresponsible to build 1000BASE-T links in critical parts of the infrastructure where you're likely going to want to do analysis. This means you should always specify optical modules for security edge and and distribution tier devices. Sure, the "firewall sandwich" at the internet edge all lives in a couple of racks, and copper links would work fine. Doesn't matter. The SecOps guys will show up with some nonsense security appliance/sniffer/DLP/IDS/EUEM device that they want to put inline. If your links are copper, tapping them will add points of failure. There's no reason to take this risk.

    Layer 1 Switches
    These are neat products that basically boil down to electronic patch panels. They're great for tactical work.

    Imagine a remote office building with 50 switches in various wiring closets that all patch back to a central distribution tier. You can enable a mirror function on all 50 switches, and patch the mirror port back the the L1 switch.

    Also plugged into the L1 switch, you'll have an analyzer port.

    When there's a network problem in closet 23, you log into the L1 switch and configure it to patch port 23 to the analyzer station. The switch makes some clicking noises, and now your analyzer is plugged into closet 23's mirror port, without you having to visit the site and build that patch. Pretty nifty.

    Tap Aggregators
    There are several companies selling tap aggregators. These products allow you to distribute data from several data sources (taps, mirror ports) into several analyzer tools. Most of them allow you to filter traffic coming from sources or flowing to tools, snap payloads off of packets, etc...

    Use cases include:
    • Feed HTTP traffic from all sources to the web server customer experience monitor.
    • Feed voice bearer traffic (without payloads for compliance purposes) to an IP telephony quality scoring system.
    • Monitor SMTP traffic from all ports only to the confidential data loss analyzer system.
    In addition to those strategic uses, you might have a couple of tactical diagnostic tools plugged into the aggregator. When problems arise, you configure the aggregator to feed the interesting traffic to the analysis tool.

    Change Control
    I've successfully made the case that everything on the "copy" side of Ethernet taps should fall outside the scope of change control policies in a couple of organizations. This has allowed me to perform code upgrades on really smart taps, reconfigure L1 and aggregation switches etc... during business hours.

    It's critical that these tools be available for tactical use during business hours, but most large enterprises won't take the perceived risk of allowing this type of work unless you plan ahead. Start planting the seeds for mid-day tactical work during network planning stages. Get exceptions to change control coded into "run books", "ops manuals", "architectural documents" or whatever documentation makes your organization tick.

    20 comments:

    1. The "passive tap panel" reminded me of an incident early in my networking career when troubleshooting a connectivity issue for a user workstation. It's been about 15 years, but as I recall, 10Mbps mostly worked, while 100Mbps was, to use a technical term, "flaky". After eliminating the usual suspects of drivers and patch cables, I pulled the dual-jack wall plate apart. There, I discovered that jack 2 had been created by double-punching to jack 1. I believe I snaked in a new cable to resolve.

      ReplyDelete
    2. Hi, at work I use a Simena 1000Base-T "passive" tap. This replaced a 1Base-T Network Critical tap. I'm told the Simena one introduces virtually no delay, but the NC one stored-and-forwarded packets. How is this done? Is the tap basically a cut-through switch? Thanks for your insights.
      Actually for my testing purposes, delay is not important, so long as it is always a constant from the first bit of the packet, as I am taking latency measurements on pairs of packets in/out.
      Latency = (time out + C) - (time in + C) = time out - time in
      The trouble with packet forwarding, is that the packets could be different sizes, so the delay is not constant.

      ReplyDelete
    3. Hi Rupert,

      Cut through bridging requires a bridge to buffer at least the Ethernet preamble (7 bytes), SFD (1 byte) and destination address (6 bytes) before it can begin sending a frame to the destination port. At 1Gb/s, that's about .1ms

      A cut-through style tap (really just a signal repeater) doesn't have this buffering requirement because every frame arriving at port "A" is always destined for port "B". Send it immediately.

      Is the Simena tap faster than your old NC tap? Maybe. I have no idea whether the NC tap operates like a store-and-forward device, but I kind of doubt it because:
      1) store and forward style operation seems harder to do than repeater operation
      2) store and forward operation breaks down if you're committed to replicating non-frame errors faithfully.
      3) this is a competitive market - why bother building an inferior device?

      Have you measured the taps to see if there really is a difference?

      For a nice discussion about your "constant delay" concerns, please see sections 2.5 and 2.6: ftp://ftp.iol.unh.edu/pub/mplsServices/other/QoS_Testing_Methodology.pdf

      Jitter is in the eye of the beholder, apparently :)

      ReplyDelete
    4. Great post, thank you for writing this.

      ReplyDelete
    5. Hello,

      but how do you capture the data on the sensor side with the optical tap? You get 2 TX Ports so i guess i need a dual port card but normal dual port cards does not initiate the session without the coressponding RX port present?

      Regards
      Michael

      ReplyDelete
    6. Hi Chris,

      In chapter "Passive Copper Taps" you are talking about high-impedance ethernet repeaters and corresponding magnetics. Do you have any more specific information about these devices? (Vendor, Part Name, ...)

      ReplyDelete
    7. Here comes a comment from someone who really doesn't know much at all about this topic except what I just read in your very information post. So call me on this if I'm all wet.

      Couldn't you introduce a fairly long loop of cable at the "tap," long enough so that the signal profile will be A-weighted on the A-side and B-weighted on the B-side and so that a comparison of those profiles will allow a calculated separation of signal sources?

      Maybe I should keep my thoughts to myself! :-)

      ReplyDelete
    8. The main dificullty in making a Tap that doesn't recover and resend data at gigabit speeds is that the signal is complex and sufficiently high frequency that even with excellent ethernet cables cross talk is a huge problem which has to be countered by using test signals to measure the whole systems properties right now, and then compensate using digital signal processing. Much like 56k modems. don't remember how often it's measured, but that's the problem. you may not buffer it except on the enet chips, but you have to reduce it to data and resend it 2 places to tap it, and of course you have to be able to do that in either direction. POE pass through and protection from it is nice as well.

      ReplyDelete
    9. Hey Chris, I was looking to use a switch to "tap" my uplink to cable provider along w a span or just Mac learning turned off because it's GB and the old hack won't work. Have you ever done something like this? Pretty sure provider (optimum) will shut the port of more than one Mac detected so it might get complicated. I have end users at home complaining about zoom issues on chrome books and iPads/phones. Thanks!

      ReplyDelete
      Replies
      1. Managed switches are noisy: CDP/DTP/STP/LLDP/etc...

        Yeah, this seems like trouble on a subscriber-facing link.

        Jeremy stretch wrote about making switches invisible in this regard:
        https://packetlife.net/blog/2010/apr/15/invisible-catalyst-switch/

        Delete
    10. Scatter symbols, wild symbols, bonus video games, and progressive jackpots all add a scrumptious style to these video games. The Caesars cellular app presents gamblers complete access 카지노 to the on line casino. You can do everything out of your cellphone that you are able to to} do} out of your pc – and its way more transportable. The Caesars desktop-based on line casino presents gamblers a clear iCasino experience. It may be accessed via any pc, like a Mac or PC, using any browser. We encourage all our gamers to enjoy BacanaPlay on line casino responsibly.

      ReplyDelete
    11. It's an awesome blog. Linking is an extremely useful thing. You have truly helped thousands of people who come to your the blog and give them valuable details.
      AllstarBrandedApparel Apparel is here to help. With over two decades of delivering stunning custom apparel printing services, we have established ourselves as the market leaders. Whether you want a dozen tshirts or a hundreds of them, prints on each of them will stand out every time.

      ReplyDelete
    12. Explore the captivating world of suspense and intrigue with our curated list of the "Best Mystery Series." Immerse yourself in thrilling plot twists, compelling characters, and mind-bending mysteries that will keep you on the edge of your seat. Whether you're a seasoned detective series enthusiast or a newcomer to the genre, our handpicked selection guarantees a riveting experience. From classic whodunits to modern crime dramas, discover the top mystery series that will satisfy your craving for suspense. Dive into a world of secrets, uncover hidden clues, and embark on a binge-worthy journey with our carefully chosen collection of the finest mystery series available. Elevate your entertainment experience with the best in the genre and unravel the enigma of each storyline. Unmissable, suspenseful, and endlessly intriguing – these mystery series are bound to leave you craving for more. Start your detective journey today and unravel the mysteries that await in the "Best mystery series" of all time.

      ReplyDelete
    13. Discover the leading destination for flawless Cheek Filler In Arlington! Elevate your beauty with our expertly administered cheek filler services, designed to enhance your natural features and provide a radiant, youthful glow. Our skilled practitioners in Arlington specialize in precision and artistry, ensuring optimal results tailored to your unique facial contours. Uncover the secret to a rejuvenated appearance and sculpted cheeks that turn heads. Trust our dedicated team to deliver top-tier cheek filler solutions in Arlington – because beauty is an art, and we've mastered it. Book your consultation now for a transformative experience that leaves you looking and feeling your best!






      ReplyDelete
    14. Discover the heartwarming impact of our Christian Children's Charity as we strive to make a difference in the lives of vulnerable children. At our organization, we are dedicated to providing love, support, and essential resources to children in need, guided by Christian values and compassion. Join us in spreading hope and joy through your generous contributions. Learn more about our mission and how you can be a part of transforming the lives of these precious children. Make a lasting impact with our Christian Children's Charity today.

      ReplyDelete
    15. Discover the artistry of Crafting Silicon Jewelry Molds with our exquisite collection available at AllForCrafting. Elevate your crafting experience with premium silicone materials that bring your creative vision to life. Explore a myriad of vibrant colors, shapes, and sizes, ensuring endless possibilities for unique designs. Whether you're a seasoned crafter or a beginner, our curated selection of silicone jewelry supplies provides the perfect blend of quality and affordability. Buy with confidence from AllForCrafting and embark on a journey of crafting excellence with our top-notch silicone jewelry materials. Unleash your creativity and adorn yourself or your loved ones with one-of-a-kind, handmade silicone jewelry masterpieces. Shop now and make your crafting dreams a reality!

      ReplyDelete
    16. Ensure the safety of your premises with professional Legionella Risk Assessment in London . Our expert team employs comprehensive evaluations to identify and mitigate potential Legionella hazards, safeguarding your environment. Compliant with industry standards, our assessments provide a thorough analysis, offering peace of mind and regulatory adherence. Trust us to prioritize your safety – Legionella Risk Assessment in London, done right. Contact us for a meticulous evaluation today.






      ReplyDelete
    17. Discover top-quality Pup Crew dog apparel crafted by Sleepingdogattire. Our stylish and comfortable dog clothing line ensures your furry friend stays cozy and fashionable in every adventure. Explore a wide range of trendy designs tailored to suit your pup's personality. Shop now for the perfect blend of style and comfort for your beloved canine companion.
      Shop It Now: Dog Attire And Apparel

      ReplyDelete
    18. Discover essential self-care advice for holistic well-being. Explore actionable tips, expert guidance, and practical strategies to nurture your mental, emotional, and physical health. Elevate your self-care routine with insightful insights tailored to enhance your lifestyle and promote inner balance. Start prioritizing self-care today for a happier, healthier you.
      Examine It Right Now: Self Care Advice

      ReplyDelete