Top Banner
Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking History Overview DNS Typical Communication Utilities
66

Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking History Overview DNS Typical Communication Utilities.

Dec 28, 2015

Download

Documents

Jacob Whitehead
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Lecture 9 Unix Networking(see chapter 7)

Unix Networking & InternetworkingHistoryOverviewDNSTypical Communication Utilities

Page 2: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Network History

Internet research started in the 1960’s ARPA – Advanced Research Planning Agency Began work on packet switching. ARPANET – late 1970’s

Page 3: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

TCP/IP

Prototype Internet was developed. Transmission Control Protocol/ Internet

Protocol 1st used by academic institutions, research

organizations, & the U.S. military.

Page 4: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Internet Growth

1983 – Internet sites = 562 1986 – Internet sites = 2,308 Doubled every year for the next 10 years. 1996 – 9.5 million

Page 5: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Web Browser

Key to easy network utilization. 1st browser – Mosaic – Developed by NCSA National Center for Supercomputer

Applications. Launched in 1991 Web browsing surpassed FTP File Transfer Protocol

Page 6: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Size Now

Between 50 – 100 million computers 1 million computer networks Unix has a special role in that most of the

network protocols were initially implemented on Unix platforms.

Most servers run on Unix based machines.

Page 7: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Networks & Internetworks

Two or > hardware resources connected. Can be computers, printers, plotters,

scanners, etc. A hardware resource is a host.

Page 8: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

A typical network configuration

Page 9: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Network Types

LAN – Local Area Network MAN – Metropolitan Area Network WAN – Wide Area Network

These distinctions are based on the maximum distance between hosts.

Page 10: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

LAN

Local Area Network Hosts are in a room, building, or close

buildings Distance from a few meters to about 1km

Page 11: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

MAN

Metropolitan Area Networks Hosts between a city or between small cities Distance between hosts is about 1 to 20 km

Page 12: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

WAN

Wide Area Network Hosts distance range from tens of kilometers

to a few thousand kilometers.

Page 13: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Internetwork

Internetwork is a network of networks. Can connect networks within a campus or

networks thousands of kilometers apart. Connected with routers or gateways. Internet is an internetwork of tens of

thousands of networks

Page 14: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Routers & Gateways

Routers – Connect similar networks Gateways – Connect dissimilar networts.

Convert messages to suitable

form for each network.

Page 15: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Reasons for Networks

Sharing resources – Printers, plotters, scanners, software, etc.

Communication between people Costs savings Reliability > 1 computer

Page 16: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

TCP/IP

Kernel handles the communications. The communications hardware (NIC) Network Interface Card The Unix kernel handles the details.

Page 17: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

DNS Name Server Domain name service (DNS) is central to the

Internet When URLs are entered in a Web browser, a

DNS server converts the name to an IP address, allowing the client to send a packet to the Web server as requested

The information in DNS can be thought of as an inverted hierarchical tree, where the top of the tree is called root and is represented by a period

Users typically don’t refer to roots, but to the last part of domain names called top-level domains

Page 18: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

DNS Name Server

Page 19: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

DNS Name Server

Page 20: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Setting Up a DNS Name Server Resolving a domain to an IP address using DNS, also

called querying the DNS server, stores, or caches, the conversion information resulting in speedier DNS queries

Each domain has a master DNS server which contains database files that provide IP addresses to every host in that domain

Each domain should have a slave DNS server which acts as a backup to the master

Page 21: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Setting Up a Basic Name Server

The program that implements a DNS server is called named, the name daemon, which is controlled by a system script in /etc/rc.d/init.d

named is found in the BIND package on most Linux systems; selecting the Red Hat Linux name server component provides bind-conf, bind-utils, and caching-nameserver

Caching name servers have no preconfigured domain information, but simply query other DNS servers and cache the results

Page 22: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Name Server

Resolver functions like: gethostbyname To invoke DNS service Maps a host name to its IP address gethostbyaddr Maps an IP address to its hostname

Page 23: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

View Information

ifconfig command View the IP address & other info about your

hosts interface to the network. Usually in the /sbin directory (Type /sbin/ifconfig)

Page 24: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

View Information

nslookup Display the IP address of a host nslookup ibm.com Returns the address. Modern forms: host or dig

Page 25: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Popular Internet Services

Electronic Mail – SMTP (Simple Mail Transfer Protocol)

File Transfer – FTP (File Transfer Protocol) Remote Login – Telnet (and ssh) Time – Time Web Browsing – HTTP (Hyper Text

Transfer Protocol)

Page 26: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Client-Server Model

Internet services are implemented by service partitioned in two parts.

Part on the computer (host) where the user is logged onto is the client software.

The part that starts running when a server boots is the server software.

Page 27: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Client-Server

The server runs forever – Waiting for a client request A request is handled & then waits for another

request. Client starts running when a user runs the

program for a service the client offers.

Page 28: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Web Site

URL – Universal Resource Locator URL is given to the client process to view a

page. http://machine Displays the home page of machine

Page 29: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

List of users

List of users using hosts on a network. rwho – Remote who Displays users using machines on your

network. rwho –a Users currently idle

Page 30: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Testing a network Connection

ping – If host is alive it echoes a datagram. whereis – Finds the location finger – Display information about a user

Page 31: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Problem Areas

Size of networks continues to grow. Big problem – Too many servers. Usually one server per application – 1 for

data base, 1 for accounting, etc.

Page 32: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Virtualization

Virtualize the many servers employed. One server with the capability of replacing

many specialized servers. Goldman Sachs (brokerage firm) – Had 250

network people & 30 million lines of specialized code.

Large number of servers, regional, intl., etc.

Page 33: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Virtualization

The number of specialist can be greatly reduced.

The network complexity can also be reduced. The one major problem is having one

machine for critical functions.

Page 34: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Typical Communication Utilities in UNIX

Page 35: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

The talk Command

Page 36: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

A Complete talk Session

Page 37: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

A Complete talk Session

Page 38: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

A Complete talk Session

Page 39: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

The write Command

Page 40: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

E-Mail Programs

Some Programs available in Unix/Linux Mail – most basic, low level mail command ELM PINE (PINE Is Not Elm), more user friendly text mail Outlook, GUI driven Eudora Netscape Mailer

Page 41: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Email Address

Page 42: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

The mail command

Page 43: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

The mail command

You can use the mail command in several ways: mail -- by itself, it opens your messages and lets you

read them mail person@address -- lets you compose a message to

someone at a certain address. mail -s (subject) person@address -- lets you send a

message to someone at an address, with a certain subject. mail -s (subject) person@address < text_file -- lets you

send a message to someone with text_file as the body of the email.

Page 44: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Using mail

When you are writing the mail message body, use ^D or <enter> . <enter> to end editing and send the message.

If cc: shows up, this is a list of other addresses you can enter if you wish to send a message to other people.

^C will kill a mail message you are typing.

Page 45: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

The mail Command (Sending Mail)

Page 46: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Header Editing

While editing a message you may use… ~h -- lets you edit the header (to, subject,

cc, bcc) These may also work:

~s -- edit the subject. ~t -- edit the to list. ~c -- edit the cc (carbon copy) list. ~b -- edit the bcc (blind carbon copy) list.

Page 47: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Message Editing Commands

Use these while writing the actual message ~r <file> -- Add a file into the message. ~f <num> -- add another email into the message

(forwarding). ~w <file> -- write the message to a file. ~q -- quit without saving ~p -- print the contents of the message.

Page 48: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Mail Command Example

Page 49: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

The mail Command (Read Mail)

Page 50: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Mail reading commands

These commands are used in mail at the & prompt q -- quit and save x -- quit without making any changes. R or r -- reply to a message (r = senders and

recipients, R = senders only.) f <numbers> -- view the message headers. p or t <numbers> -- show those messages

Page 51: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

More mail commands

d <numbers> -- delete messages. u <numbers> -- undelete messages. s <numbers> <file> -- append the messages

to <file> with headers. w <numbers> <file> -- append messages to

<file> -- message only.

Page 52: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

PINE

A menu-driven client Uses pico as an editor Allows MIME attachments Main Menu

C - Compose to write a message I or L - View messages Q - Quit

Page 53: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Figure 7-10

Local login

Page 54: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Figure 7-11

Remote Login

Page 55: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Remote Login

rlogin host rlogin paris rlogin –l username host exit to leave

telnet from UNIX telnet open host close quit Shortcut: telnet host

Page 56: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Secure Shell

SSH or Open SSH Encrypted connections ssh –l loginID remote.machine.name

Page 57: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Encryption

Client

Corporate earnings are Corporate earnings are up 45% this quarterup 45% this quarter

1

Decrypt

Server

2

Encrypt

fdh37djf246gs’b[da,\ssk

3

Corporate earnings are Corporate earnings are up 45% this quarterup 45% this quarter

ssh installed ssh

installed

Page 58: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

File Transfer Protocol: ftp

ftp open host Shortcut: ftp host login password ftp help: ? ftp command help: ? Command

? binary quit

Page 59: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Getting a file with ftp

Use binary or bin if needed to go to binary mode (default is ASCII)

Use cd to go to the remote directory with your file Use lcd to go a directory on your local machine

(where you want the file to go after you ftp) Use get filename to copy a file from the

remote directory to the local directory

Page 60: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Getting many files with ftp Use binary or bin if needed to go to binary

mode (default is ASCII) Use cd to go to the remote directory with your

file Use lcd to go a directory on your local machine

(where you want the file to go after you ftp) Use mget to copy multiple files at once from the

remote directory to the local directory mget filename1 filename2 filename3 mget with wildcard: mget * Toggle the prompt: prompt

Page 61: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Sending a file with ftp

Use binary or bin if needed to go to binary mode (default is ASCII)

Use cd to go to the remote directory (where you want to put your file)

Use lcd to go a directory on your local machine (where the file is located)

Send the file using put filename

Page 62: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Sending many files with ftp

Use binary or bin if needed to go to binary mode (default is ASCII)

Use cd to go to the remote directory with your file Use lcd to go a directory on your local machine

(where you want the file to go after you ftp) Use mput to copy multiple files at once from the

local directory to the remote directory Use wildcards

Page 63: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

File Archival

Creating an archive file with tar To archive everything in a directory, tar –cf archivename originaldirectory Use ls to confirm that a .tar file was created. Verify contents by viewing the table of contents

for the .tar file:

tar –tf archivename.tar

Page 64: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Restoring tar files

tar –x filename.tar destinationdirectory

Use ls to confirm that the extracted files are in the directory you specified.

Page 65: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

File Compression

Common compression programs: compress, uncompress, PKZIP, PKUNZIP, pack, unpack

Using compress compress filename compress archivename.tar Confirm that compressed file (.z) created with ls

filename.z archivename.tar.z

Page 66: Lecture 9 Unix Networking (see chapter 7) Unix Networking & Internetworking  History  Overview  DNS  Typical Communication Utilities.

Uncompress

uncompress filename.z Use ls to confirm that the uncompressed file

is there (the .z file should be gone)