Unix System Administration

Slides:



Advertisements
Similar presentations
OSI Model OSI MODEL.
Advertisements

OSI Model OSI LAYER / MODEL.
Protocols and the TCP/IP Suite Chapter 4 (Stallings Book)
Jacob Boston Josh Pfeifer. Definition of HyperText Transfer Protocol How HTTP works How Websites work GoDaddy.com OSI Model Networking.
Chapter 2 Internet Protocol DoD Model Four layers: – Process/Application layer – Host-to-Host layer – Internet layer – Network Access layer.
Understanding Networks. Objectives Compare client and network operating systems Learn about local area network technologies, including Ethernet, Token.
OSI Reference Model An overview. Standards and the internet International Organization for Standardization ISO 70’s.
Copyright 2003 CCNA 1 Chapter 7 TCP/IP Protocol Suite and IP Addressing By Your Name.
OIS Model TCP/IP Model.
2010 Pago Pago, American Samoa IP Basics Unix/IP Preparation Course June 29, 2010 Pago Pago, American Samoa.
PacNOG 6: Nadi, Fiji IP Basics Steven VanDevender Hervey Allen Network Startup Resource Center.
Chapter 2 Network Models
Networks – Network Architecture Network architecture is specification of design principles (including data formats and procedures) for creating a network.
© McLean HIGHER COMPUTER NETWORKING Lesson 1 – Protocols and OSI What is a network protocol Description of the OSI model.
Unit27-networking BTEC NAT – UNIT 27 NETWORKING OSI MODEL Unit Leader:Dave Bell
Data and Computer Communications Chapter 2 – Protocol Architecture, TCP/IP, and Internet-Based Applications 1.
Layer Architecture Layer architecture simplifies the network design. It is easy to debug network applications in a layered architecture network. The network.
Component 9 – Networking and Health Information Exchange Unit 1-1 ISO Open Systems Interconnection (OSI) This material was developed by Duke University,
Higher National Diploma1 Network Concepts OSI 7 Layer model.
1 Figure 3-2: TCP/IP Standards (Study Figure) Origins  Defense Advanced Research Projects Agency (DARPA) created the ARPANET  An internet connects multiple.
The Inter-network is a big network of networks.. The five-layer networking model for the internet.
Information Flow Across the Internet. What is the Internet? A large group of computers that link together to form the Worldwide Area Network (WAN)
Internet Protocol B Bhupendra Ratha, Lecturer School of Library and Information Science Devi Ahilya University, Indore
Chapter 15 – Part 2 Networks The Internal Operating System The Architecture of Computer Hardware and Systems Software: An Information Technology Approach.
How the computer transport system works IP Basics AFNOG IX Rabat, Morocco May 2008.
How the computer transport system works IP Basics AFNOG IX Rabat, Morocco May 2008.
Network Protocols and Standards (Part 2). The OSI Model In 1984, the International Organization for Standardization (ISO) defined a standard, or set of.
TCP/IP Network Essentials
Open System Interconnection Describe how information from a software application in one computer moves through a network medium to a software application.
2011 Dar es Salaam, Tanzania IP Basics Unix/IP Preparation Course May 29, 2011 Dar es Salaam, Tanzania.
Individual Project 1 Sarah Pritchard. Fran, a customer of your company, would like to visit your company’s website from her home computer… How does your.
Linux Operations and Administration Chapter Eight Network Communications.
Net 221D:Computer Networks Fundamentals
workshop eugene, oregon IP Basics Unix/IP Preparation Course July 19, 2009 Eugene, Oregon, USA
ISDS 4120 Project 1 DWAYNE CARRAL JR 3/27/15. There are seven layers which make up the OSI (Open Systems Interconnection Model) which is the model for.
The OSI Model A Framework for Communications David A. Abarca July 19, 2005.
Voice Over Internet Protocol (VoIP) Copyright © 2006 Heathkit Company, Inc. All Rights Reserved Presentation 5 – VoIP and the OSI Model.
Computer Engineering and Networks, College of Engineering, Majmaah University Protocols OSI reference MODEL TCp /ip model Mohammed Saleem Bhat
● How the computer transport system works IP Basics AFNOG IX Rabat, Morocco May 2008.
How the computer passport system works
NgNOG IP Basics Wale Adedokun and Dewole Ajao.
OSI Model OSI MODEL. Communication Architecture Strategy for connecting host computers and other communicating equipment. Defines necessary elements for.
OSI Model OSI MODEL.
Networking Using the OSI Model.
Protocols and the TCP/IP Suite
OSI LAYERS.
Network Protocols and Standards
Computer Networks.
How the computer transport system works
Internet technologies
Lecturer, Department of Computer Application
Understand the OSI Model Part 2
DEPARTMENT OF COMPUTER SCIENCE
Lecture 6: TCP/IP Networking By: Adal Alashban
Network Architecture Introductory material
The Open System Interconnection (OSI) Model & Network Protocols.
Lec 5 Layers Computer Networks Al-Mustansiryah University
Computer Network.
TASK 4 Guideline.
Data and Computer Communications by William Stallings Eighth Edition
Review of Important Networking Concepts
Computer Network.
OSI Model The Seven Layers
OSI Model OSI MODEL.
Network Architecture Models
Protocol Application TCP/IP Layer Model
OSI Reference Model Unit II
OSI Model 7 Layers 7. Application Layer 6. Presentation Layer
Open System Interconnect (OSI).
Objectives: 1.Identify different internet protocol (IP) 2.Configure sample of IP address 3.Appreciate and relate protocol in our life.
Presentation transcript:

Unix System Administration IP Basics Unix System Administration

Layers Complex problems can be solved using the common divide and conquer principle. In this case the internals of the Internet are divided into separate layers. Makes it easier to understand Developments in one layer need not require changes in another layer Easy formation (and quick testing of conformation to) standards Two main models of layers are used: OSI (Open Systems Interconnection) TCP/IP

OSI Conceptual model composed of seven layers, developed by the International Organization for Standardization (ISO) in 1984. Layer 7 – Application (servers and clients etc web browsers, httpd) Layer 6 – Presentation (file formats e.g pdf, ASCII, jpeg etc) Layer 5 – Session (conversation initialisation, termination, ) Layer 4 – Transport (inter host comm – error correction, QOS) Layer 3 – Network (routing – path determination, IP[x] addresses etc) Layer 2 – Data link (switching – media acces, MAC addresses etc) Layer 1 – Physical (signalling – representation of binary digits) Acronym: All People Seem To Need Data Processing

TCP/IP Generally, TCP/IP (Transmission Control Protocol/Internet Protocol) is described using three to five functional layers. We have chosen the common DoD reference model, which is also known as the Internet reference model. Process/Application Layer consists of applications and processes that use the network. Host-to-host transport layer provides end-to-end data delivery services. Internetwork layer defines the datagram and handles the routing of data. Network access layer consists of routines for accessing physical networks.

TCP/IP diagram

OSI and TCP/IP

IP datagram structure

Numbering Rules Private IP address ranges: 10/8 (10.0.0.0 – 10.255.255.255) 192.168/16 (192.168.0.0 – 192.168.255.255) 172.16/12 (172.16.0.0 – 172.31.255.255) Public Address space available from AfriNIC Choose a small block from whatever range you have, and subnet your networks (to avoid problems with broadcasts)

Forwarding If a computer isn't on your subnet, packet's sent via a “gateway” connected to to networks. defaultrouter option in /etc/rc.conf sets the default gateway for this system. IP forwarding on a FreeBSD box turned on with the gateway_enable option in /etc/rc.conf otherwise the box will not forward packets from one interface to another. paper routing exercise.

Client – Server Arch Client makes requests, Server serves requests – e.g HTTP for transferring “websites”. This is the easiest way to provide services on demand and provides a means of sharing resources more effectively. Example: Mimicking the browser with telnet (client) talking to a web server (server) telnet www.google.com 80 GET / HTTP/1.0 Host: www.google.com <blank line>

Debugging ping traceroute tcpdump