Skip to content

Instantly share code, notes, and snippets.

@gumienny
Last active November 2, 2018 12:01
Show Gist options
  • Save gumienny/b148a11246c0302bcc2a5ccffad70ec5 to your computer and use it in GitHub Desktop.
Save gumienny/b148a11246c0302bcc2a5ccffad70ec5 to your computer and use it in GitHub Desktop.

Networking


instrukcja TRAK


Do obejrzenia


Odcinek 4. Analyzing actual Ethernet encoding

LINK W standardzie 10Base-T dane przesyłane są w parze przewodów tworzących skrętkę, jedna para jest używana jako nadajnik (orange), jedna jako odbiornik (green). Dane są kodowane w kodzie Manchester z taktem zegara 20 MHz, co daje przepustowość 10 Mb/s. Między przewodami skrętki podczas transmisji panuje napięcie +2,5 V lub -2,5 V.

Odcinek 5. The importance of framing

HDLC

Odcinek 6. Frame formats

PPP

            1 byte   1 byte    2 bytes    40-1500   4 bytes
+--------+---------+---------+----------+---- / --+-------+------+
|  flag  | address | control | protocol | payload |  FCS  | flag |
+--------+---------+---------+----------+---- / --+-------+------+
 01111110   0xff      0x03      

Ethernet frame

                  6 bytes       6 bytes   2 bytes 46-1500   4 bytes
+----------------+-------------+-----------------+---------+-------------+
| preamble / SFD | destination | source  | Ether | payload | frame check |
|                |   address   | address | type  |         | sequence    |
+----------------+-------------+-----------------+---------+-------------+
 101010...101011  ff:ff:ff:f...            0800

Odcinek 7. Lower layers of the OSI model

ISO/OSI

Odcinek 8. The Internet Protocol

Odcinek 9. ARP: Mapping between IP and Ethernet

Odcinek 10. Looking at ARP and ping packets

Wireshark

Odcinek 11. Hop-by-hop routing

ICMP

IPv4

Odcinek 12. TCP: Transmission control protocol

Odcinek 13. TCP connection walkthrough


Zrozumieć programowanie

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment