Linux Ubuntu 12.04 Network Commands 3 A.S.

Slides:



Advertisements
Similar presentations
SYSTEM ADMINISTRATION Chapter 19
Advertisements

Nassau Community College
Web Server Administration
Chapter 13: Troubleshooting network connectivity Unit objectives Identify TCP/IP troubleshooting tools Discuss the Telnet utility and its functions Discuss.
1 Linux Networking and Security Chapter 2. 2 Configuring Basic Networking Describe how networking devices differ from other Linux devices Configure Linux.
Essential NetTools Pranay Kumar. Essential NetTools  This tool is a set of network tools useful in diagnosing networks and monitoring your computer's.
1 DNS. 2 BIND DNS –Resolve names to IP address –Resolve IP address to names (reverse DNS) BIND –Berkeley Internet Name Domain system Version 4 is still.
TA : Eng.Hala O. Abu Radi.. Nslookup Command SYNOPSIS nslookup [-option... ] [host-to-find | -[server ] ] DESCRIPTION Nslookup is a program to query Internet.
Common network diagnostic and configuration utilities A ‘toolkit’ for network users and managers when ‘troubleshooting’ is needed on your network.
MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration Chapter 5 Introduction to DNS in Windows Server 2008.
TCP/IP Tools Lesson 5. Objectives Skills/ConceptsObjective Domain Description Objective Domain Number Using basic TCP/IP commands Understanding TCP/IP3.6.
Click to edit Master subtitle style Chapter 17: Troubleshooting Tools Instructor:
Windows Server 2008 Chapter 8 Last Update
Hands-On Microsoft Windows Server 2008 Chapter 8 Managing Windows Server 2008 Network Services.
Linux Networking Commands
Chapter 12: Configuring Networks The Complete Guide to Linux System Administration.
CHAPTER Protocols and IEEE Standards. Chapter Objectives Discuss different protocols pertaining to communications and networking.
Connecting Networks © 2004 Cisco Systems, Inc. All rights reserved. Exploring How IP Address Protocols Work INTRO v2.0—4-1.
Chapter 10 Intro to Routing & Switching.  Upon completion of this chapter, you should be able to:  Explain how the functions of the application layer,
Troubleshooting. Why Troubleshoot? What Can Go Wrong? –Misconfigured zone –Misconfigured server –Misconfigured host –Misconfigured network.
Network Tools TCP/IP interface configuration query - MAC (HW) address and IP address – Linux - /sbin/ifconfig – MS Windows – ipconfig/all 1.
 Ping - Transmits four 32 byte packets to target computer ◦ Measures response time ◦ Returns IP address of target computer ◦ Example: ping uottawa.ca.
DNS Related Commands Sayed Ahmed Computer Engineering, BUET, Bangladesh (Graduated on 2001 ) MSc, Computer Science, U of Manitoba, Canada
Chapter 13 Microsoft DNS Server n DNS server: A Microsoft service that resolves computer names to IP addresses, such as resolving the computer name Brown.
Deploying a Web Application Presented By: Muhammad Naveed Date:
Day 14 Introduction to Networking. Unix Networking Unix is very frequently used as a server. –Server is a machine which “serves” some function Web Server.
Hour 7 The Application Layer 1. What Is the Application Layer? The Application layer is the top layer in TCP/IP's protocol suite Some of the components.
Module 7: Managing Message Transport. Overview Introduction to Message Transport Implementing Message Transport.
DNS DNS overview DNS operation DNS zones. DNS Overview Name to IP address lookup service based on Domain Names Some DNS servers hold name and address.
Installing a Network Printer. Network printers work much like any other printer except the data flow is through a network. This means the printer must.
Linux Operations and Administration
Web Server Administration Chapter 4 Name Resolution.
COMP2322 Lab 3 DNS Steven Lee Feb. 19, Content Understand the Domain Name System (DNS). Analyze the DNS protocol with Wireshark. 2.
Command Line Interface Introduction Configuration Example Alcatel-Lucent Security Products Configuration Example Series.
Chapter 4: server services. The Complete Guide to Linux System Administration2 Objectives Configure network interfaces using command- line and graphical.
Troubleshooting. Why Troubleshoot? What Can Go Wrong? –Misconfigured zone –Misconfigured server –Misconfigured host –Misconfigured network.
KAPLAN SCHOOL OF INFORMATION SYSTEMS AND TECHNOLOGY IT375 Window Enterprise Administration Course Name – IT Introduction to Network Security Instructor.
Some Network Commands n Some useful network commands –ping –finger –nslookup –tracert –ipconfig.
DNS and Inbound Load Balancing
Ip addressing: dhcp & dns
Application Layer Functionality and Protocols Abdul Hadi Alaidi
Click to edit Master subtitle style
Troubleshooting ip Chapter 5e.
Module 3: Enabling Access to Internet Resources
Instructor Materials Chapter 10: Application Layer
CompTIA Network+ N Authorized Cert Guide
TCP/IP Utilities Richard Goldman May 29, 2003.
Network Commands 2 Linux Ubuntu A.S.
Network Tools and Utilities
Linux Networking Tools
IMPLEMENTING NAME RESOLUTION USING DNS
Benefits of Using Domain Name System (DNS)
Troubleshooting Network Communications
SUBMITTED BY: NAIMISHYA ATRI(7TH SEM) IT BRANCH
Introduction to Networking
NETWORK TROUBLESHOOTING COMMANDS
INSTALLING AND SETTING UP APACHE2 IN A LINUX ENVIRONMENT
IIS.
FootPrinting CS391.
TCP/IP Networking An Example
OPS235: Configuring a Network Using Virtual Machines – Part 2
The OSI 7 Layer Model Ben, Stuart, Charles.
DNS and DHCP Configuration
DNS: Domain Name System
16, May, 2010 Baseer Ahmad Baheer
Windows Server Administration Fundamentals
Ip addressing: dhcp & dns
Troubleshooting ip Chapter 5e.
Module 12 Network Configuration
Managing Routing Module 9 In this module we will look at the techniques required to ensure that messages are delivered to their intended destinations.
Presentation transcript:

Linux Ubuntu 12.04 Network Commands 3 A.S

Network Configuration nslookup, which stands for "name server lookup", is a useful tool for finding out information about a named domain. By default, nslookup will translate a domain name to an IP address (or vice versa)

Network Configuration NSLOOKUP Command nslookup command also use to find out DNS related query. The following examples shows A Record (IP Address) of tecmint.com. nslookup uobabylon.edu.iq nslookup is a command-line administrative tool for testing and troubleshooting DNS servers (Domain Name Server). It is used to query specific DNS resource records (RR) as well. Most operating systems comes with built-in nslookup feature.

Network Configuration

Network Configuration

Network Configuration Querying The NS Record Of A Domain The NS Record of a domain is a map of all name servers that are authoritative for that domain. You can query a domain's NS Record using the option -type=ns, like this: nslookup -type=ns microsoft.com

Network Configuration

Network Configuration

Network Configuration Querying The MX Record The MX Record is a map of mail exchange servers for a domain. When you send email to a domain, for example "@microsoft.com", mail is routed to Microsoft's MX servers. You can query a domain for its MX Record using the -type=mx option. For example: nslookup -type=mx microsoft.com

Network Configuration

Network Configuration ARP Command ARP (Address Resolution Protocol) is useful to view / add the contents of the kernel’s ARP tables. To see default table use the command as. arp -e ARP stands for Address Resolution Protocol, which is used to find the media access control address of a network neighbour for a given IPv4 Address.

Network Configuration Arp-scan Arp-scan is a commandline utility for linux that can be used to scan the network of a certain interface for alive hosts. It shows the ip address and mac addresses of all the hosts/nodes found. sudo apt-get install arp-scan In place of the localnet option arp-scan can also take a range of ip addresses to scan. For example : $ sudo arp-scan --interface=eth0 192.168.1.1/24

Network Configuration IWCONFIG Command iwconfig command in Linux is use to configure a wireless network interface. You can see and set the basic Wi-Fi details like SSID channel and encryption. You can refer man page of iwconfig to know more. iwconfig [interface]

Network Configuration telnet Connects destination host via telnet protocol, if telnet connection establish on any port means connectivity between two hosts is working fine. telnet hostname port   will telnet hostname with the port specified. Normally it is used to see whether host is alive and network connection is fine or not. telnet server_name telnet 125.64.124.77 telnet 125.64.124.77 80