728x90 AdSpace

  • Latest News

    Friday, 3 February 2017

    CCNAv4 Completed Packet Tracer 1.4.1.2

    Greetings, and welcome to Seeseenayy.
    You are visiting one of our many posts about packet tracer activities!


    This post contains the answers to the 
    CCNA4 Packet Tracer '1.4.1.2'


    This post is split into two parts.
    1. The download link of the completed packet tracer, and sometimes completed, or uncompleted PDFs or other files.


    2. Tutorial. A text guide on how the packet tracer was completed, command-by-commandstep-by-step.

    To view this post, and discover the answers to this activity, click on the following link if you have not done so already.




    Downloads / Information

    You may find the download to this packet tracer, or any other related file, directly below:




    Tutorial
    Below are the following commands to solve this packet tracer, as well as a minor explanation as to why we use these commands.


    R1 CONFIGURATION
    ------------------------------------
    Router>en
    Router#conf t
    Router(config)#hostname R1
    R1(config)#banner motd 'Warn'
    R1(config)#enable secret cisco
    R1(config)#int g0/0
    R1(config-if)#ip add 10.10.10.1 255.255.255.192
    R1(config-if)#ipv6 add 2001:DB8:A:10::1/64
    R1(config-if)#ipv6 address fe80::1 link-local
    R1(config-if)#no sh
    R1(config-if)#exit
    R1(config)#int s0/0/1
    R1(config-if)#ip add 10.10.1.1 255.255.255.252
    R1(config-if)#ipv6 add 2001:db8:b:1::1/64
    R1(config-if)#ipv6 add fe80::1 link-local
    R1(config-if)#no sh
    R1(config-if)#exit
    R1(config)#int s0/1/0
    R1(config-if)#ip add 10.10.1.5 255.255.255.252
    R1(config-if)#ipv6 add 2001:db8:b:2::1/64
    R1(config-if)#ipv6 add fe80::1 link-local
    R1(config-if)#no sh
    R1(config-if)#exit
    R1(config)#access-list 1 permit 10.0
    R1(config)#access-list 1 permit 10.10.0.0 0.0.255.255
    R1(config)#ip nat pool R1 64.102.139.4 64.102.139.7 netmask 255.255.255.252
    R1(config)#ip nat inside source list 1 pool R1 overload
    R1(config)#ip nat inside source static tcp 10.10.10.10 80 64.102.139.2 80
    R1(config)#ip nat inside source static tcp 10.10.10.10 443 64.102.139.2 443
    R1(config)#int g0/0
    R1(config-if)#ip nat inside
    R1(config-if)#exit
    R1(config)#int s0/0/0
    R1(config-if)#ip nat outside
    R1(config-if)#exit
    R1(config)#int s0/0/1
    R1(config-if)#ip nat inside
    R1(config-if)#exit
    R1(config)#int s0/1/0
    R1(config-if)#ip nat inside
    R1(config-if)#exit
    R1(config)#ip route 0.0.0.0 0.0.0.0 64.102.139.1
    R1(config)#ipv6 unicast-routing
    R1(config)#ipv6 route ::/0 s0/0/0
    R1(config)#router ospf 1
    R1(config-router)#passive-int g0/0
    R1(config-router)#default-info origin
    R1(config-router)#network 10.10.10.0 0.0.0.63 area 0
    R1(config-router)#network 10.10.1.0 0.0.0.3 area 0
    R1(config-router)#network 10.10.1.4 0.0.0.3 area 0
    R1(config-router)#exit
    R1(config)#ipv6 router ospf 1
    R1(config-rtr)#router-id 1.1.1.1
    R1(config-rtr)#passive-int g0/0
    R1(config-rtr)#default-info origin
    R1(config-rtr)#exit
    R1(config)#int s0/0/1
    R1(config-if)#ipv6 ospf 1 area 0
    R1(config-if)#exit
    R1(config)#int s0/1/0
    R1(config-if)#ipv6 ospf 1 area 0
    R1(config-if)#exit
    R1(config)#int s0/1/0
    R1(config-if)#ipv6 ospf 1 area 0
    R1(config-if)#exit
    R1(config)#int g0/0
    R1(config-if)#ipv6 ospf 1 area 0
    R1(config-if)#exit
    R1(config)#


    R4 CONFIGURATION
    ----------------------------------
    Router(config)#int g0/0
    Router(config-if)#ip add 10.10.4.1 255.255.255.0
    Router(config-if)#ipv6 add 2001:db8:a:4::1/64
    Router(config-if)#ipv6 add fe80::4 link-local
    Router(config-if)#no sh
    Router(config-if)#exit
    Router(config)#int s0/0/1
    Router(config-if)#ip add 64.103.17.2 255.255.255.252
    Router(config-if)#ipv6 add 2001:db8:a:103::2/64
    Router(config-if)#ipv6 add fe80::4 link-local
    Router(config-if)#no sh
    Router(config-if)#exit
    Router(config)#banner motd 'Warn'
    Router(config)#hostname R4
    R4(config)#enable secret cisco
    R4(config)#crypto key generate rsa 
    % You already have RSA keys defined named R4.R4 .
    % Do you really want to replace them? [yes/no]: yes
    How many bits in the modulus [512]: 2048
    R4(config)#line vty 0 15
    R4(config-line)#
    R4(config-line)#transport input ssh
    R4(config-line)#login local
    R4(config-line)#exit
    R4(config)#ip dhcp excluded-address 10.10.4.1
    R4(config)#ip dhcp pool R4
    R4(dhcp-config)#network 10.10.4.0 255.255.255.0
    R4(dhcp-config)#default-router 10.10.4.1
    R4(dhcp-config)#dns-server 209.165.44.2
    R4(dhcp-config)#exit
    R4(dhcp-config)#exit
    R4(config)#access-list 1 permit 10.10.4.0 0.0.0.255 
    R4(config)#ip nat inside source list 1 interface s0/0/1
    R4(config)#int s0/0/1
    R4(config-if)#ip nat outside
    R4(config-if)#exit
    R4(config)#int g0/0
    R4(config-if)#ip nat inside
    R4(config-if)#ip route 0.0.0.0 0.0.0.0 s0/0/1
    R4(config)#ipv6 unicast-routing
    R4(config)#ipv6 route ::/0 s0/0/1

    FURTHER ACTIONS
    ---------------------------------------
    - Configure the PCs (PC5, PC6) address configurations to be DHCP for IPv4 --AND-- Automatic for IPv6.

















    • Blogger Comments
    • Facebook Comments

    0 comments:

    Post a Comment

    Item Reviewed: CCNAv4 Completed Packet Tracer 1.4.1.2 Rating: 5 Reviewed By: Unknown
    Scroll to Top