Switch Frame Processing

October 16, 2012

There are three methods, by which a switch will use to process incoming frames

  1. store-and-forward (default)
  2. cut through
  3. fragment free

 

Store and forward:

The entire frame is stored and then forwarded, the switch will read the FCS before forwarding to check for errors, this is the best method for error detection

 

Cut through:

only the mac addresse are read, then begins forwarding before checking the FCS, this method is the fastest but there is no error detection whilst using this method

 

Fragment free:

Reads the first 64bytes for errors, if none are found it begins forwarding the frame.

 


Did You Know ?

October 14, 2012

All ports below 1024 are RESERVED


Common Ports For CCENT/CCNA Exam

October 14, 2012

The following is not an exhaustive list but from all the texts that i have read these are the most common that you will need to know when taking the Cisco Exams

 

Protocol TCP/UDP Number
FTP Data TCP 20
FTP Control TCP 21
SSH TCP 22
Telnet TCP 23
SMTP TCP 25
HTTP TCP 80
POP3 TCP 110
SSL TCP 443
DHCP UDP 67,68
TFTP UDP 69
SNMP UDP 161
DNS TCP/UDP 53

VOIP Range: UDP Ports 16384 – 32767 are used for voice

 

I have also attached a few copies of the information provided PDF and Microsoft Word DOC

Common Ports PDF

Common Ports DOC


Answer 2

October 14, 2012

The answer to yesterdays question is…

TRUE

and if you didn’t get the bonus points the Routing protocol used would of been RIP (Routing Information Protocol)


Question 2

October 13, 2012

True or False

A network that is 15 hops away is considered unreachable ?

and for bonus points answer what routing protocol would be using hop counts as it’s metric ?


Answer 1

October 13, 2012

Yesterdays questions asked:

What is a stub network  .. ?

The Answer is..

A network with only one entry and exit point


TCP/UDP Similarities

October 12, 2012

The Similarities Are..

  • Source Port
  • Destination Port
  • Checksum

and that’s it!


Question 1

October 12, 2012

What is a stub Network … ?

Answer Tommorow


TCP and UDP Summary

October 12, 2012

TCP (Transmission Control Protocol)

  • Connection orientated
  • Provides Windowing (Flow Control)
  • Error detection using sequence and Acknowledgment numbers
  • Error recovery

UDP (User Datagram Protocol)

  • Best effort delivery
  • Zero error “detection”
  • Zero windowing capabilities
  • Connectionless

NB.

TCP uses a three way handshake to establish the connection with the remote host, while UDP does not, this is why TCP is referred to as a connection orientated protocol


What is a socket

October 12, 2012

Put simply it is the IP Address and Port number written together e.g.

10.1.1.2:80

IP ADDRESS: 10.1.1.2

PORT: 80

Simple 😀