Question

computer networks help please !!!

could someone help with the following tasks!

ANY HELP WILL BE IMMENSELY APPRECIATED! THANKS.

Task 1 In the following scenario, we would like to find out more information about a host that is on out network. Given an IPTask 2 Let us now consider what network services are offered on the above host. We can use the nmap command to scan the serviTask 3 Using tcpdump, display any packets that originate from the router In this example we use tcpdump to select only the fi

Task 1 In the following scenario, we would like to find out more information about a host that is on out network. Given an IP address we would like to search for additional information, we can start with obtaining the IP address off the default route. When running on a Linux VM, this like most likely to be the internal IP of the VirtualBox or VMWare instance. If you are running on Macos. Linux or LinuxSubsystemForWindows, this may be the local router on your subnet. Take care when running on a network you do not manage. You may choose to do this on the Kali Linux machines in the Network Lab in TONS 3.08. Authentication details for Kali lab machines; Usemame: root Password: toor Log onto your Linux VM or Kali lab machine Use route to find the default gateway, an edited example. Note that the gateway has the "flag" G, you may use grep or similar tools to select only this line route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 192.168.17.1 0.0.0.0 UG C 0 eth0 0 eth0 192.168.17.0 0.0.0.0 255.255.255.0 C 0 .Use arp to fine the MAC address of the host arp -an ? (192.168.17.2) at 00:aa:ff:00 : f8:02 [ether1 on eth0 ? (192.168.17.1) at 00:aa:ff:83: 3d: 42 [ether1 on eth0 ? (192.168.17.8) at 00:aa:ff:b5:al:c0 [ether] on eth0 Q) Can you identify the routers IP address and its MAC address? See man pages for route, arp Search for terms, the flag -K allows you to search for specific terms in available man pages man -K keyword
Task 2 Let us now consider what network services are offered on the above host. We can use the nmap command to scan the services offered. Below is an example of a home network router (edited). You can see familiar ports and services. Each available service is listed as open You man need to install nmap as the root user, note nmap needs to run as the root user, when logged into the shell as the root user you will note the shell prompt changes from $ to S sudo su #apt-get install nmapP nmap 192.168.17.1 Starting Nmap 7.40 htt ps://nmap.org) at 2019-06-13 08:04 ACST Nmap scan report for fritz.box 192.168.17.1) Host is up (0.00042s latency) Not shown: 996 closed ports STATE SERVICE РОВТ 53/tep 80/tcp domain орen http https орen 443/tcp open 5060/tcp open sip MAC Address 001aaiff: 83 :3d:42 ( AVM Audiovisuelles Marketing und Computersysteme GmbH) Nmap done: 1 IP address (1 host up) scanned in 28.92 seconds If you are unable to find any open ports on your home routerVM gateway or Kali lab machine default gateway, try scanning ports on the local host of your Linux VM. Here is an exampile #nmap 127.0.0.1 Starting Nmap 7.40 htt ps://nmap.org) at 2019-06-13 08:08 ACST Nmap scan report for localhost (127.0.0.1) Host is up (0.000021s latency) Not shown: 992 closed ports PORT STATE SERVICE 22/tep 25/tcp 80/tep 5000/tcp open 6666/tep open 6667/tep open 6668/tcp open 6669/tep open ssh орen орen smtp http open upnp ire ire irc ire Nmap done: 1 IP address (1 host up) scanned in 1.64 seconds Q) Can you identify each of the services running, including an example of the cient software that would use this service? See man pages for, nmap
Task 3 Using tcpdump, display any packets that originate from the router In this example we use tcpdump to select only the first ten packets with -c, typically we need to select a source IP address. Here we also do not use the extra verbose flags as we want easier access to the port numbers. When using the flag -n we do not look up the port numbers or the IP address to convert to names. Check these flags in the man page. $tcpdump n-c 10-1eth0. Q) Can you display the first 100 packets originating from the router or default gateway, showing the numeric values for the IP and port numbers? Task 4 Put all above meta data collection programs into a single script, display the data with suitable labels and performs the following tasks Search and display the IP for the default router, you may use grep, sed and other tools to select only the IP address Search and display the MAC address for the host Search and display the open" ports of the host Search and display the source and destination port numbers from the output of tcpdump for the first 100 packets (If you your router or default gateway does not have open ports, choose another IP or localhost.) Uses reference, URLS, links, man pages from previous relevant workshops.
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Task 1
*********

kalinew [Running]- Oracle VM Virtual Box File Machine View Input Devices Help 1 Terminal- Sat 04:43 Applications Places root@

kalinew [Running] - Oracle VM VirtualBax File Machine View Input Devices Help 1 Terminal Applications Places Sat 04:45 root@k

Task 2
*********

kalinew [Running]- Oracle VM Virtual Box File Machine View Input Devices Help 1 Terminal Applications Places Sat 04:49 root@kkalinew [Running] - Oracle VM VirtualBax File Machine View Input Devices Help 1 Terminal- Applications Places Sat 04:50 root@

kalinew [Running]- Oracle VM Virtual Box File Machine View Input Devices Help 1 Terminal- Applications Places Sat 04:51 root@

kalinew [Running] - Oracle VM VirtualBax File Machine View Input Devices Help 1 Terminal Applications Places Sat 04:51 root@k

Task 3
*********

kalinew [Running]- Oracle VM Virtual Box File Machine View Input Devices Help 1 Terminal Applications Places Sat 05:13 root@k

kalinew [Running] - Oracle VM VirtualBax File Machine View Input Devices Help Terminal 1 Applications Places Sat 05:13 root@k

Task 4
********

script.sh
***********

ip route show default | awk '/default/ {print $3}'
ifconfig -a | grep ether | awk '{print $2}'
netstat -l

tcpdump -# -nn -t -c 100 -i eth0 > dump.pcap
kalinew [Running] - Oracle VM VirtualBax File Machine View Input Devices Help Terminal 1 Applications Places Sat 05:38 root@k

if you have any doubt then please ask me without any hesitation in the comment section below , if you like my answer then please thumbs up for the answer , before giving thumbs down please discuss the question it may possible that we may understand the question different way and we can edit and change the answers if you argue, thanks :)

Add a comment
Know the answer?
Add Answer to:
computer networks help please !!! could someone help with the following tasks! ANY HELP WILL BE...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Task 1 In the following scenario, we would like to find out more information about a...

    Task 1 In the following scenario, we would like to find out more information about a host that is on out network. Given an IP address we would like to search for additional information, we can start with obtaining the IP address off the default route. When running on a Linux VM, this like most likely to be the intermal IP of the VirtualBox or VMWare instance. If you are running on MacOS. Linux or LinuxSubsystemForWindows, this may be the...

  • 1a) Which of the following statements is true? Running SSH on the Telnet port will now...

    1a) Which of the following statements is true? Running SSH on the Telnet port will now be sent across an unencrypted port. Despite the results of the scan, the service running on port 23 is actually Telnet and not SSH, and creates an additional vulnerability Running SSH on port 23 provides little additional security from running it on the standard port. Remote SSH connections will automatically default to the standard SSH port. The use of OpenSSH on its default secure...

  • - Network security QUESTION 17 We assume that a LAN network includes 7 hosts (A, B,...

    - Network security QUESTION 17 We assume that a LAN network includes 7 hosts (A, B, C, D, E. Fand G) which are connected by a switch. The contents of the switch's CAM table is as follows: (Port 1. Host A) - (Port 2. Host B) - (Port 3. Host - Port 4, Host D) - Port S. Hosta-Port 6, Host F) - (Port 7. HostG), Also, we assume that there is/are one or many host(s) that has/have sent fake...

  • Miller Harrison was still working his way down his attack protocol. Nmap started out as it...

    Miller Harrison was still working his way down his attack protocol. Nmap started out as it usually did: giving the program identification and version number. Then it started reporting back on the first host in the SLS network. It reported all of the open ports on this server. Then the program moved on to a second host and began reporting back the open ports on that system, too. Once it reached the third host, however, it suddenly stopped. Miller restarted...

  • How to solve Exercises 1? Project Goal The project will give you some hands-on experience with...

    How to solve Exercises 1? Project Goal The project will give you some hands-on experience with Nmap. Nmap is a network tool that allows you to scan live hosts and services (open ports), thus, creating a "map" of the network. You will be using Zenmap, a graphical user interface (GUID of Nmap, to investigate several basic types of networl scanning techniques. You can work in teams of two students or alone. Setup: Installing&Using Zenmap Visit nmap.org/download.html to download and install...

  • Question: Your Answer: What is the IP Address of the computer? If this computer could reach...

    Question: Your Answer: What is the IP Address of the computer? If this computer could reach the Internet but could not resolve names on the Internet, assuming that these settings are correct, which computer would you check to make sure it is running? What is the fully qualified domain name for this computer? What is the MAC address of this Network Adapter? What is the IP address of the device that provided the computer IP Address? What is the CIDR...

  • Description: In this assignment, you will be launching a denial of service attack on a web...

    Description: In this assignment, you will be launching a denial of service attack on a web server. We will be using hping3, a command-line oriented network security tool inside Kali Linux (an advanced penetration testing Linux distribution). Setting up the victim machine Download the Windows XP virtual machine with WebGoat server installed, using the following link. We will use this machine as the victim machine and launch a DoS attack on the WebGoat server.https://drive.google.com/open?id=0BwCbaZv8DevUejBPWlNHREFVc2s Open the victim machine and launch...

  • 166 Chapter 8: TCP/IP Applications Getting Down to Business The way network communication all those ls...

    166 Chapter 8: TCP/IP Applications Getting Down to Business The way network communication all those ls and Os) goes in and out of a machine physically is through the NIC (network interface card). The way network communication goes in and out of a machine logically though, is through a program or service. A service is a program that runs in the background, independent of a logon, that provides functionalities to a system. Windows client machines, for instance, have a Workstation...

  • Six Which of the following options can be used to configure TCP/IP? (Choose all that apply.)...

    Six Which of the following options can be used to configure TCP/IP? (Choose all that apply.) APIPA DHCP DNS Static IP addressing You need to install a new Windows 10 machine into Site A with a subnet mask of 255.255.255.224. Which TCP/IP address can you assign to the new Windows 10 machine as a valid host address? 192.168.2.63 Which subnet mask would you utilize if you had a class C network and you wanted to connect 23 branch offices back...

  • can you please help me with this homework. DCOM 101 – Introduction to Data Communications Final Project Instructions: In this Final Project, you will test the skills and knowledge gained throughout th...

    can you please help me with this homework. DCOM 101 – Introduction to Data Communications Final Project Instructions: In this Final Project, you will test the skills and knowledge gained throughout this course. The steps listed below are loosely based on the Assignments you have completed thus far, so don’t hesitate to look back and use those resources. Follow the steps in each section, and paste screenshots when prompted. This assignment is worth 10% of your final grade. Basic Network...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT