Table of Contents for
Packet Tracer Network Simulator

The answer network

Now let's move on to creating the answer network. Open the Answer Network section and import the file that we previously saved. We will now finish this network setup. This is the finished network you'd want the end users to create. Click on Show Answer Network and you'll be taken to the logical view with the same four devices again. Our finished network will look like the following figure:

The answer network

We'll be using the following IP address settings:

  • PC: The addresses assigned are as follows:
    • IP address: 10.10.0.2
    • Subnet Mask: 255.255.255.0
    • Gateway: 10.10.0.1
  • Router: The settings configured are as follows:
    • GigabitEthernet0/0: 10.10.0.1 (Connected to the switch)
    • GigabitEthernet0/1: 30.10.0.1 (Connected to the server)
  • Server: The addresses assigned are as follows:
    • IP address: 30.10.0.10
    • Subnet Mask: 255.255.255.0
    • Gateway: 30.10.0.1

After assigning IP addresses to the PC and server, do the same to the router.

R1(config)#int g0/0
R1(config-if)#ip add 10.10.0.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#int g0/1
R1(config-if)#ip add 30.10.0.1 255.255.255.0
R1(config-if)#no shut

Now, we'll configure extended ACL on the router so that only ICMP (Internet Control Message Protocol) and HTTP traffic is allowed.

R1(config)#ip access-list extended 100
R1(config-ext-nacl)#permit icmp any host 30.10.0.10
R1(config-ext-nacl)#permit tcp any host 30.10.0.10 eq www
R1(config)#int g0/0
R1(config-if)#ip access-group 100 in

Test if things work correctly by opening the PC and pinging the server. Then try to test the connectivity using the ftp command from the PC to the server IP address.

The answer network

The FTP connection fails as expected (as shown in the previous figure). Now open the Web Browser utility and see if the web server is accessible. To incorporate it into our assessment, we need to test the same with PDUs.

  • Create a simple PDU to test ICMP. This should succeed.
  • Create a complex PDU to test HTTP. This should succeed.
  • Create a complex PDU to test FTP. This should fail.
The answer network

Now that our answer network has been tested (as shown in the previous figure), click on the hat and magic wand icon to get back to the Activity Wizard. Once you are back in the wizard, export this network and save it. We should now select all of the items that will be taken into consideration when evaluating this assessment.

We will evaluate IP addresses of the PC, server, and the router, connections between all devices, and the connectivity between the PC and the server. The following options will be selected under the assessment tree:

  • PC/Server: We select the following items under this checklist:
    • Default Gateway
    • Ports: Select the FastEthernet0 item, and within that enable the following:

      IP address

      Port Status

      Subnet Mask

      Link to switch/router: Under this checklist we enable Type

  • Router: We enable the following items in the checklist:
    • ACL
    • Ports: Check the following items within the Ports option:

      GigabitEthernet0/0: We enable Access group In, IP Address, Subnet Mask, and Type under the Link to switch option

      GigabitEthernet0/1: We enable IP Address, Subnet Mask, and Type under the Link to Server option

After a user has finished configuring all of these items, connectivity has to be checked. Move on to the Connectivity Test tab and you'll see the three user-generated PDUs thatwe created. The Test Condition field for the first two packets (ICMP and HTTP) should show success, and the third one should show failure. This will be a built-in check to see if the ACLs have been properly configured.

Navigate to the Settings tab and set the timer countdown. Setting the countdown will automatically pop up the answer network's window once the time is up. We will set it to 20 minutes.

Click on the Password button and set a password. The end users will be prompted for this password if they try to access the activity wizard during the assessment.