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

What Why How SDN..???????

What is SDN?   If you follow any number of news feeds or vendor accounts on Twitter, you've no doubt noticed the term "software-defined networking" or SDN popping up more and more lately. Depending on whom you believe, SDN is either the most important industry revolution since Ethernet or merely the latest marketing buzzword (the truth, of course, probably falls somewhere in between). Few people from either camp, however, take the time to explain what SDN actually means. This is chiefly because the term is so new and different parties have been stretching it to encompass varying definitions which serve their own agendas. The phrase "software-defined networking" only became popular over roughly the past eighteen months or so. So what the hell is it? Before we can appreciate the concept of SDN, we must first examine how current networks function. Each of the many processes of a router or switch can be assigned to one of three conceptual planes of operatio...

NETWORKING BASICS

This article is referred from windowsnetworking.com In this article series, I will start with the absolute basics, and work toward building a functional network. In this article I will begin by discussing some of the various networking components and what they do. If you would like to read the other parts in this article series please go to: Networking Basics: Part 2 - Routers Networking Basics: Part 3 - DNS Servers Networking Basics: Part 4 - Workstations and Servers Networking Basics: Part 5 - Domain Controllers Networking Basics: Part 6 - Windows Domain Networking Basics: Part 7 - Introduction to FSMO Roles Networking Basics: Part 8 - FSMO Roles continued Networking Basics: Part 9 – Active Directory Information Networking Basics: Part 10 - Distinguished Names Networking Basics, Part 11: The Active Directory Users and Computers Console Networking Basics: Part 12 - User Account Management Networking Basics: Part 13 - Creating ...

How to install and setup Docker on RHEL 7/CentOS 7

H ow do I install and setup Docker container on an RHEL 7 (Red Hat Enterprise Linux) server? How can I setup Docker on a CentOS 7? How to install and use Docker CE on a CentOS Linux 7 server? Docker is free and open-source software. It automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere. Typically you develop software on your laptop/desktop. You can build a container with your app, and it can test run on your computer. It will scale in cloud, VM, VPS, bare-metal and more. There are two versions of docker. The first one bundled with RHEL/CentOS 7 distro and can be installed with the yum. The second version distributed by the Docker project called docker-ce (community free version) and can be installed by the official Docker project repo. The third version distributed by the Docker project called docker-ee (Enterprise paid version) and can be installed by the official Docker project repo.  This page shows...