Layer | Protocol |
Application | HTTP, POP3, SMTP |
Transport | TCP, UDP |
Internet | IP, IPv6 |
Data-Link | MAC |
Physical | Ethernet, PPP, T/1 |
TCP/IP Model and Associated Protocols
May 19, 2013Port Security
April 28, 2013Switches examine the source MAC address of the received frame, switches can take a few possible options if it discovers that the incoming MAC address on that port is NOT SECURE.
- shutdown (the switch shuts down the port and sends a log message and drops the frame/s , also the interface status will read err-disabled you have to run a no shutdown to open the port again) ON BY DEFAULT
- restrict (drops the frames and transmits a log message but does not shutdown the port)
- protect (only drops the frames)
When configuring Port security and the source MAC address is unknown switchport port-security mac-address sticky can be used and the switch will use the first mac address learned as the Secure MAC address
Spanning Tree Protocol (STP)
April 27, 2013Switching loops form when multiple paths exist, when a frame is sent and the the frame travels between the switches and never ends up reaching it’s final destination.
STP is used to prevent switching loops and is on by default, it determines a loop free path and ports that are not on the path are put into a blocking mode. If the best path is no longer available STP will calculate a new “path” and ports on that path that where blocked are brought out of the blocking mode.
NB. the shortest physical path is not the best, STP looks at the speed of the links
STP Quick Overview
- On by default
- Used to prevent switching loops
DHCP & DORA
April 24, 2013DHCP will supply the following 4 pieces of information
- IP address
- Default Gateway
- DNS Server
- Subnet Information
DHCP Process (DORA)
- Discover
- Offer
- Request
- Acknowledgement
Common Ports For CCENT/CCNA Exam
October 14, 2012The 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
TCP/UDP Similarities
October 12, 2012The Similarities Are..
- Source Port
- Destination Port
- Checksum
and that’s it!
TCP and UDP Summary
October 12, 2012TCP (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