Skip to main content

Crossover Cable Network

What Is Crossover Cable Network?
A crossover cable network is a computer network with two computers connected with a crossover cable. If you have two computers at home, and want to share files, programs, and printers, the crossover cable network is the easiest and cheapest solution for you.
Requirements:
  • Two computers with network supported.
  • A crossover network cable.
Most of today's home computers is coming with network card installed. No need to purchase network cards separately. But you need to purchase a crossover network cable separately. You can find it in most of the computer stores.
A crossover network cable is different than the normal straight network cable. It has two pair of lines crossed over from one end to the other end. The following two diagrams show you the differences.
A normal straight network cable has 8 positions at both ends. There are 8 lines connecting to both ends to exactly the same positions:
   End A                        End B        Note
   Position 1 <---------------> Position 1
   Position 2 <---------------> Position 2
   Position 3 <---------------> Position 3
   Position 4 <---------------> Position 4   Not used
   Position 5 <---------------> Position 5   Not used
   Position 6 <---------------> Position 6
   Position 7 <---------------> Position 7   Not used
   Position 8 <---------------> Position 8   Not used
A crossover network cable has 8 positions at both ends, same as the normal straight cable. But there are 2 pairs of lines crossed over. The first crossed pair of lines connects position 1 from one end to position 3 on the other end. The second crossed pair of lines connects position 2 from one end to position 5 on the other end:
   End A                        End B        Note
   Position 1 <------   ------> Position 1
                     \ /   
   Position 2 <--     X     --> Position 2
                 \   / \   /
   Position 3 <---\--   --/---> Position 3
                   \     /
   Position 4 <-----\---/-----> Position 4   Not used
                     \ /   
   Position 5 <-------X-------> Position 5   Not used
                     / \
   Position 6 <------   ------> Position 6

   Position 7 <---------------> Position 7   Not used

   Position 8 <---------------> Position 8   Not used


Comments

Popular posts from this blog

Sexy C#

Download samples   Table of Contents   1.   Introduction  2.   Background    3.   Sexy Features 3.1.   Extension Methods   3.2.   Anonymous Type   3.3.   Delegate   3.4.   Lambda Expression 3.5.   Async-Await Pair   3.6.   Generics   4.   Conclusion   1. Introduction     C#  is a very popular programming language. It is mostly popular in the .NET arena. The main reason behind that is the C# language contains so many useful features. It is actually a multi-paradigm programming language. Q.   Why do we call C# a muti-paradigm programming language? A.  Well, C# has the following characteristics:  Strongly typed   Object Oriented  Functional  Declarative Programming  Imperative Programming   Component based Programming Dynamic Programming ...

10 Core Concepts for network administration

The 10 core concepts that every Windows network admin must know. These are the things that you not only need to know in your day to day job as a Windows Network Admin but for anyone who is interviewing as a network admin. Introduction Recently a relative of mine went for a job interview as a security analyst. She was asked a number of technical questions in the interview but the ones that she struggles with the most were the networking questions (as she had not used or studies networking in some time). I thought that this article might be helpful for Windows Network Admins out there who need some "brush-up tips" as well as those who are interviewing for network admins jobs to come up with a list of 10 networking concepts that every network admin should know. So, here is my list of 10 core networking concepts that every Windows Network Admin (or those interviewing for a job as one) must know: 1.     DNS Lookup The domain naming system (DNS) is a cornersto...

How To Configure a Linux Service to Start Automatically After a Crash or Reboot

Part 1: Practical Examples Tutorial Series Introduction This tutorial shows you how to configure system services to automatically restart after a crash or a server reboot. The example uses MySQL, but you can apply these principles to other services running on your server, like Nginx, Apache, or your own application. We cover the three most common init systems in this tutorial, so be sure to follow the one for your distribution. (Many distributions offer multiple options, or allow an alternate init system to be installed.) System V  is the older init system: Debian 6 and earlier Ubuntu 9.04 and earlier CentOS 5 and earlier Upstart : Ubuntu 9.10 to Ubuntu 14.10, including Ubuntu 14.04 CentOS 6 systemd  is the init system for the most recent distributions featured here: Debian 7 and Debian 8 Ubuntu 15.04 and newer CentOS 7 Background Your running Linux or Unix system will have a number of background processes executing at any time. These proc...