Skip to content

Commit

Permalink
add oci model layer 1
Browse files Browse the repository at this point in the history
  • Loading branch information
snowme34 committed Feb 23, 2019
1 parent dc624bf commit 9c62570
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cspell_dict_bash.txt
Original file line number Diff line number Diff line change
Expand Up @@ -513,4 +513,6 @@ varchar
mysqldump

ret
mutex
mutex

baseband
84 changes: 84 additions & 0 deletions docs/source/reference/network/osi-model-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# OSI Model Layer 1

## First Layer

The physical layer that is responsible for binary transmission.

Define how transmission is achieved.

## Layer 1 Equipments

Use cables to connect.

Different network uses some medium to communicate.

* Network interface controller (NIC)
* Repeater
* Ethernet hub
* Modem
* Fiber media converter

### Network Interface Controller (NIC)

For layer 1

Some network interface controllers might also support functionalities
of layer 2 and layer 3.

### Ethernet Media

This link might be helpful: https://www.electronics-notes.com/articles/connectivity/ethernet-ieee-802-3/cables-types-pinout-cat-5-5e-6.php

Example:

`10 BASE T`

It means, the speed is 100 M, uses baseband transmission, and twisted-pair cable.

Tx: twisted-air
Fx: fiber
Lx: long

### Twisted-Pair Cable

There are 8 wires, 4 pairs, and an outer jacket for a Twisted-Pair cable.

2 types of twisted-pair cables:

* Unshielded Twisted-Pair Cable (UTP)
* more common
* Shielded Twisted-Pair Cable (STP)
* more expensive
* harder to connect

### RJ-45 Connector

The register jet

Has 8 pins.

### RJ-45 Jack

A slot to plug in connector

### Wiring

* 568A
* 568B

### Straight-Through and Crossover

Straight-Through

* Same wiring on both ends

Crossover

* Different wiring on both ends
* 1326

Use crossover for devices with same type

Use Straight-Through for devices with different order.

So that both sending and receiving can be done in the same time.

0 comments on commit 9c62570

Please sign in to comment.