Redistribute Questions 3

Redistribute Questions 3

Here you will find answers to Redistribute Questions – Part 3

Question 1

Given the accompanying output, which additional command is needed to redistribute IGRP into EIGRP?

Router eigrp 123
Network 10.10.10.0
No auto-summary
!
Router igrp 123
Network 172.16.0.0
Network 172.17.0.0

A. Under the router igrp mode add redistribute eigrp 123
B. Under the router eigrp mode add redistribute igrp 123
C. Under the router eigrp mode add redistribute igrp 123 subnets
D. None, EIGRP and IGRP are automatically redistributed in this instance.

 

Answer: D

Explanation

If IGRP and EIGRP use the same Autonomous System (AS) then redistribution occurs automatically. In this case both IGRP & EIGRP use the same AS 123 so they are automatically redistributed.

If IGRP and EIGRP use different AS numbers then redistribution must be done manually.

Question 2

Study the exhibit carefully. Router R1 is connected to networks 172.16.1.0/26 and 172.16.1.64/27. Based on the partial output in the exhibit, which description is correct?

prefix-list.jpg

A. Router R1 should be reconfigured with an ACL instead of an ip prefix-list command.
B. Router R1 will advertise both routes.
C. Router R1 will deny the 172.16.1.0/27 route while permitting the 172.16.1.0/26 route to be advertised.
D. Router R1 will deny the 172.16.1.0/26 route while permitting the 172.16.1.64/27 route to be advertised.

 

Answer: C

Explanation

Prefix lists are configured with permit or deny keywords to either permit or deny the prefix based on the matching condition. A prefix list consists of an IP address and a bit mask. The IP address can be a classful network, a subnet, or a single host route. The bit mask is entered as a number from 1 to 32.

Prefix lists are configured to match an exact prefix length or a prefix range. The ge and le keywords are used to specify a range of the prefix lengths to match, providing more flexible configuration than can be configured with just the network/length argument. The prefix list is processed using an exact match when neither ge nor le keyword is entered.

Therefore in this case the exact 172.16.1.0/26 network is permitted while other networks are denied.

(Reference: http://www.cisco.com/en/US/docs/ios/12_3t/ip_route/command/reference/ip2_i2gt.html)

Question 3

Refer to the exhibit. The partial configuration for an OSPF ASBR and an Area 0 ABR is shown. Assume the OSPF configurations throughout the network are operable. Which statement about these configurations is true?

Redistribute_OSPF_ASBR_ABR.jpg

A. The ASBR route-maps are basically useless, because there are no deny prefix-lists.
B. LSA Type 5s will not be received by the ABR from the ASBR.
C. The OSPF backbone will not learn any RFC 1918 addresses.
D. The matched prefix-list addresses will be given a metric of 255, which is essentially unreachable.

 

Answer: C

Explanation

The ASBR accepts RFC 1918 addresses and set these networks to “tag 255” but when advertising into Area 0, the ABR Area 0 filters out these networks because they match “tag 255” so the OSPF backbone will not learn any RFC 1918 addresses.

Note that if you use an ACL in a route-map deny clause, routes that are permitted by the ACL are not redistributed.

All the networks with “tag 255” are blocked by the clause 10 while all other networks are permitted by the clause 20 of the route-map (if a match command is not present, all routes match the clause).

Note:

RFC 1918 addresses include:

+ Class A: 10.0.0.0 – 10.255.255.255 (10/8 prefix)
+ Class B: 172.16.0.0 – 172.31.255.255 (172.16/12 prefix)
+ Class C: 192.168.0.0 – 192.168.255.255 (192.168/16 prefix)

Question 4

A network administrator is troubleshooting a redistribution of RIP routes into OSPF. Given the exhibited configuration commands, which statement is true?

rooter rip
network 10.0.0.0
!
router ospf 5
network 172.10.0.0 0.0.255.255 area 0
redistribute rip

A. Redistributed routes will be tagged as external type 1 (E1) with a metric of 30.
B. Redistributed routes will be tagged as external type 2 (E2) with a metric of 20.
C. Redistributed routes will maintain their original RIP routing metric.
D. Redistributed routes will have a default metric of 0 and will be treated as unreachable and not advertised.
E. Redistributed routes will have a default metric of 0 but will not be treated as reachable and will be advertised.

 

Answer: B

Explanation

By default, all routes redistributed into OSPF will be tagged as external type 2 (E2) with a metric of 20, except for BGP routes (with a metric of 1).

Note: The cost of a type 2 route is always the external cost, irrespective of the interior cost to reach that route. A type 1 cost is the addition of the external cost and the internal cost used to reach that route.

Question 5

Refer to the exhibit. On the basis of the partial configuration, which two statements are correct? (Choose two)


!
router rip
distribute-list 2 out ethernet 0
distribute-list 1 out
!
access-list 1 permit 10.0.0.0 0.255.255.255
access-list 2 permit 10.0.1.0 0.0.0.255
!

A. Only routes matching 10.0.1.0/24 will be advertised out Ethernet 0.
B. Only routes 10.0.1.0/24 will be sent out all interfaces.
C. Only routes 10.0.1.0/24 will be allowed in the routing table.
D. Only routes matching 10.0.0.0/8 will be advertised out Ethernet 0.
E. Only routes matching 10.0.0.0/8 will be advertised out interfaces other than Ethernet 0.
F. All routes will be advertised out interfaces other than Ethernet 0.

 

Answer: A E

Explanation

In this case, the following algorithm is used when multiple distribute-lists are used:

1. First check which interface is being sent out. If it is Ethernet 0, distribute-list 2 is applied first. If the network is denied then no further checking is done for this network. But if distribute-list 2 permits that network then distribute-list 1 is also checked. If both distribute-lists allow that network then it will be sent out.

2. If the interface is not Ethernet 0 then only distribute-list 1 is applied.

Now let’s take some examples.
+ If the advertised network is 10.0.1.0/24, it will be sent out all interfaces, including Ethernet 0.
+ If the advertised network is 10.0.2.0/24, it will be sent out all interfaces, excepting Ethernet 0.
+ If the advertised network is 11.0.0.0/8, it will be dropped.

Note: It is possible to define one interface-specific distribute-list per interface and one protocol-specific distribute-list for each process/autonomous-system.

(For more information, please read: http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080208748.shtml)

Question 6

Refer to the exhibit. Examine the partial configuration and the routing table excerpt. Which routes would be redistributed into OSPF area 1?

redistribute_ospf_subnets.jpg

A. 10.10.10.16/28 only
B. 10.10.10.16/28 and 10.10.10.64/26
C. 10.10.10.16/28, 10.10.10.64/26, and 172.16.10.0/24
D. 10.10.10.64/26 only

 

Answer: B (but in the exam you should choose D)

Explanation

The network 172.16.10.0/24 belongs to OSPF (we know from the “network 172.16.0.0 0.0.255.255 area 1” command) so it will not be redistributed.

When using the “subnets” keyword, all the connected networks will be redistributed so 10.10.10.16/28 & 10.10.10.64/26 will be redistributed, too. You can read my GNS3 lab about this topic here: http://www.digitaltut.com/redistribute-eigrp-and-ospf-gns3-lab.

Therefore the correct answer should be B but in the exam you should choose D. Maybe it is a mistake of Cisco.

Question 7

Refer to the exhibit. A partial routing configuration is shown. Complete the configuration so that only the default-network is redistributed from EIGRP 190 into EIGRP 212. Which ACL statement completes the configuration correctly?

router eigrp 190
redistribute eigrp 212
network 192.0.0.0 0.0.0.3
!
router eigrp 212
redistribute eigrp 190 route-map default_route
network 212.50.185.96 0.0.0.31
!
route-map defau1t_route permit 10
match ip address 100

A. access-list 100 permit ip 0.0.0.0 0.0.0.0 0.0.0.0 0.0.0.0
B. access-list 100 permit ip host 0.0.0.0 any
C. access-list 100 permit ip any host 0.0.0.0
D. A default-network cannot be redistributed between routing processes.

 

Answer: C

Explanation

The command “access-list 100 permit ip any host 0.0.0.0” means permit any source address with the destination of 0.0.0.0/0, which is the default route

Note:

any equals 0.0.0.0 255.255.255.255

host 0.0.0.0 equals 0.0.0.0 0.0.0.0

Question 8

Refer to the exhibit. Router B and router C are performing mutual redistribution between OSPF and EIGRP, and their default metrics are configured the same. Router D has equal cost paths to networks where both paths are not really equal cost. For example, network 172.16.54.0 shows equal cost through both router B and router C, though in reality the cost is greater using router C. Other routers, though not shown, are connected to the 172.16.54.0 and 172.16.55.0 networks, and the same issues exist to those routers and the networks connected to them.
What can be done so that data will be routed along the most optimal path in the network?

mutual_redistribute_EIGRP_OSPF.jpg

A. Redistribute connected interfaces on router B and router C.
B. Set the maximum number of equal cost paths to 1 in all routers.
C. When redistributing EIGRP into OSPF, set the external metric type to type E1.
D. Adjust the default metrics in router B and router C so that the values are different in each router.
E. None of these solutions will fix the problem. Migrate to a single dynamic routing protocol.

 

Answer: E

Explanation

Let’s discuss about answers C & D first.

From the output, we learn that all the External OSPF routes have metrics of 100 (the second parameters in [110/100]). This is not the default metric of OSPF Type 2 External route (the default value is 20) so the metrics of redistributed routes have been modified. Maybe when redistributing into OSPF, the “metric” in the “redistribute” command or the “default-metric” command was used on router B & C to assign the metric of these routes. Something like this:

router ospf 1
redistribute eigrp 1 metric 100 subnets

or

router ospf 1
…..
default-metric 100

Therefore even if we use the metric type E1 the problem still exists because the link B-D & C-D seems to have the same metric -> the total metrics remains the same -> C is not correct.

We can use route-map and set different metrics for each networks but some unshown networks will have the same issues -> D is not a good choice

So the best answer should be E.

Question 9

Refer to the exhibit. A new TAC engineer comes to you for advice. The engineer wants to configure RIPv2-OSPF two-way redistribution while avoiding routing loops. Which two additions to the router B1 configuration should the engineer make? (Choose two)

RIPv2_OSPF_Redistribute.jpg

A. access-list 40 deny 172.16.1.0 0.0.0.255
access-list 40 permit any
router rip
redistribute ospf 100 metric 5
distribute-list 40 out ospf 100

B. ip prefix-list rip_routes permit 172.16.1.16/25 ge 26 le 28
route-map redis-ospf deny 10
match ip address prefix-list rip_routes
router rip
redistribute ospf 10 route-map redis-ospf subnets

C. ip prefix-list rip-to-ospf permit 10.1.1.8/25 ge 26 le 28
route-map redis-rip deny 20
match ip address prefix-list rip-to-ospf
router ospf 100
redistribute rip route-map redis-rip subnets

D. access-list 15 deny 10.1.1.0 0.0.0.63
access-list 15 permit any
route-map redis-rip deny 10
match ip address 15
route-map redis-rip permit 20
router ospf 100
redistribute rip route-map redis-rip subnets

 

Answer: A D

Explanation

B1 is not the only router that redistributes between RIP & OSPF. The “small” router below B1 can be configured for this task too so B1 can try to redistribute networks advertised by that “small” router again. Therefore it is necessary to filter out networks that have been advertised by the “small” router. For example, we need to prevent network 172.16.1.0/24 from advertised back into RIPv2 or network 10.1.1.0/26 from advertised back into OSPF. Notice that all networks in OSPF domain (including 10.1.1.8/30, 10.1.1.12/30, 10.1.1.48/28, 10.1.1.32/28) can be summarized as 10.1.1.0/26 and all networks in RIP domain (including 172.16.1.24/30, 172.16.1.20/30, 172.16.1.32/28, 172.16.1.48/28) can be summarized as 172.16.1.0/24 -> answers A & D are correct.

In answer B, the command “ip prefix-list rip_routes permit 172.16.1.16/25 ge 26 le 28” means:

+ First check the first 25 bits of the address -> this will allow addresses from 172.16.1.0 to 172.16.1.127

ip_prefix_list.jpg

+ If those match then check the subnet mask, which in this case can be GREATER THAN or EQUAL to 26 bits & LESS THAN or EQUAL to 28 bits -> meaning that /26, /27, /28 subnet masks would match.

For example, networks 172.16.1.0/26; 172.16.1.16/28 would match (but notice networks 172.16.1.0/25; 172.16.1.128/26 wouldn’t).

In the “ip prefix-list rip_routes permit 172.16.1.16/25 ge 26 le 28”, the prefix-list “rip_routes” only covers networks 172.16.1.32/28 & 172.16.1.48/28 but can’t cover networks 172.16.1.24/30 & 172.16.1.20/30. Also, the OSPF process in the “redistribute” command should be 100, not 10 -> B is not correct.

Same problem as answer B, the prefix-list in answer C can’t cover networks 10.1.1.8/30 & 10.1.1.12/30 -> C is not correct.

Question 10

Refer to the exhibit. The network administrator is trying to configure mutual redistribution between EIGRP and OSPF. Autosummarization in EIGRP 100 AS is disabled. After adding OSPF configuration to router E31, the network administrator checked the routing table of router B2, but none of the EIGRP routes appeared there.
To redistribute the EIGRP AS 100 routes into OSPF, which command should be added, or edited, on router B1 under router ospf 10?

Redistribute_OSPF_EIGRP_subnets.jpg

A. redistribute eigrp 100 metric-type 1
B. redistribute eigrp 100 subnets
C. no auto-summary 10.0.0.0 255.0.0.0
D. area 0 range 10.10.0.0 255.255.0.0

 

Answer: B

Explanation

When redistributing into OSPF without keyword “subnets”, only classful networks will be redistributed. Classful networks here mean networks with the default major subnet masks (for example 10.0.0.0/8; 180.1.0.0/16; 200.200.200.0/24…).

In fact, the routing table on the exhibit above is not totally correct. The network 192.168.110.0/24 will be redistributed and shown in the routing table of B2 even if the keyword “subnets” is not used because it belongs to class C with the default subnet mask of class C.

To make all the networks, including subnets appear in the routing table of B2 we must use keyword “subnets” when redistributing into OSPF. This is also an important thing to remember when redistributing into OSPF.

Please read my Redistribute EIGRP and OSPF – GNS3 Lab if you are still not sure about this.

Question 11

Refer to the exhibit. Routers R1 and R2 are running EIGRP and have converged. On the basis of the information that is presented, which statement is true?

Redistribute_distribute-list-passive-interface.jpg

A. All outgoing routing updates from router R1 to router R2 will be suppressed, but the inbound updates will continue to be received.
B. All incoming routing updates from R2 will be suppressed, but the outgoing updates will continue to be sent.
C. Both outgoing and incoming routing updates on R1 will be stopped because of the passive-interface Serial0/0 configuration statement.
D. Both outgoing and incoming routing updates on R1 will be permitted because the distribute-list 20 out Serial0/0 command cannot be used with association with the outgoing interface.

 

Answer: C

Explanation

In EIGRP (and OSPF) the passive-interface command stops sending outgoing hello packets, hence the router can not form any neighbor relationship via the passive interface. This behavior stops both outgoing and incoming routing updates -> the distribute-list has no use here.

CCNA 4 Final Exam Answer v5 -v5.02 2015

CCNA 4 Final Exam Answer v5 -v5.02 2015

this article only for review and showing how will be the exams

this article taken from here

CCNA 4 Final Exam Answer v5 & v5.02 2015 (100%)

 

  1. Which two statements about DSL are true? (Choose two.)

    • users are on a shared medium
    • uses RF signal transmission
    • local loop can be up to 3.5 miles (5.5km)
    • physical and data link layers are defined by DOCSIS
    • user connections are aggregated at a DSLAM located at the CO

  2. Which two statements are true regarding a PPP connection between two Cisco routers? (Choose two.)

    • LCP tests the quality of the link.
    • LCP manages compression on the link.
    • Only a single NCP is allowed between the two routers.
    • NCP terminates the link when data exchange is complete.
    • With CHAP authentication, the routers exchange plain text passwords.

  3. A network administrator is asked to design a system to allow simultaneous access to the Internet for 250 users. The ISP can only supply five public IP addresses for this network. What technology can the administrator use to accomplish this task?

    • classful subnetting
    • variable length subnet masks
    • classless interdomain routing
    • port-based Network Address Translation

  4. Refer to the exhibit. An administrator is configuring NAT to provide Internet access to the inside network. After the configuration is completed, users are unable to access the Internet. What is the cause of the problem?CCNA4_Final_Exam_01

    • The NAT pool is using an invalid address range.
    • The inside and outside interfaces are backwards.
    • The ACL is referencing the wrong network address.
    • The NAT inside source command is referring to the wrong ACL.

  5. What is the expected behavior of an ADSL service?

    • The download rate is faster than the upload rate.
    • The upload rate is faster than the download rate.
    • The download and upload rates are the same.
    • The user can select the upload and download rates based on need.

  6. A network administrator is troubleshooting the dynamic NAT that is configured on router R2. Which command can the administrator use to see the total number of active NAT translations and the number of addresses that are allocated from the NAT pool?

    • R2# show ip nat statistics
    • R2# show ip nat translations
    • R2# show running-config
    • R2# clear ip nat translation

  7. Which type of traffic would most likely have problems when passing through a NAT device?

    • Telnet
    • IPsec
    • HTTP
    • ICMP
    • DNS

  8. Refer to the exhibit. The inside local IP address of PC-A is 192.168.0.200. What will be the inside global address of packets from PC-A after they are translated by R1?CCNA4_Final_Exam_02

    • 10.0.0.1
    • 172.16.0.1
    • 192.168.0.1
    • 192.168.0.200
    • 209.165.200.225

  9. Refer to the exhibit. What kind of NAT is being configured on R1?CCNA4_Final_Exam_03

    • PAT
    • dynamic NAT
    • NAT overload
    • port forwarding

  10. What benefit does NAT64 provide?

    • It allows sites to use private IPv6 addresses and translates them to global IPv6 addresses.
    • It allows sites to connect multiple IPv4 hosts to the Internet via the use of a single public IPv4 address.
    • It allows sites to connect IPv6 hosts to an IPv4 network by translating the IPv6 addresses to IPv4 addresses.
    • It allows sites to use private IPv4 addresses, and thus hides the internal addressing structure from hosts on public IPv4 networks.

  11. What are three benefits of using Frame Relay for WAN connectivity? (Choose three.)

    • QoS support using the IP precedence field
    • one physical interface that can be used for several circuits
    • integrated encryption
    • mature technology
    • reasonable cost
    • seamless direct connectivity to an Ethernet LAN

  12. The DLCI number assigned to a Frame Relay circuit is to be manually added on a point-to-point link. Which three subinterface commands could be used to complete the configuration? (Choose three.)

    • bandwidth kilobits
    • encapsulation frame-relay
    • frame-relay interface-dlci dlci
    • frame-relay map ip ip-address dlci
    • frame-relay map ip ip-address dlci broadcast
    • ip address ip-address mask
    • no shutdown

  13. Which command can be used to check the information about congestion on a Frame Relay link?

    • show frame-relay pvc
    • show frame-relay lmi
    • show interfaces
    • show frame-relay map

  14. A network administrator is configuring a PPP link with the commands:

    R1(config-if)# encapsulation ppp
    R1(config-if)# ppp quality 70

    What is the effect of these commands?

    • The PPP link will be closed down if the link quality drops below 70 percent.
    • The NCP will send a message to the sending device if the link usage reaches 70 percent.
    • The LCP establishment phase will not start until the bandwidth reaches 70 percent or more.
    • The PPP link will not be established if more than 30 percent of options cannot be accepted.

  15. Refer to the exhibit. A network administrator has implemented the configuration in the displayed output. What is missing from the configuration that would be preventing OSPF routing updates from passing to the Frame Relay service provider?CCNA4_Final_Exam_04

    • The passive-interface command has not been issued on interface serial 0/1/0.
    • The broadcast keyword has not been issued.
    • The directly connected neighbor should have been identified by using static mapping.
    • The command to disable split horizon has not been issued.

  16. What is a characteristic of Frame Relay that allows customer data transmissions to dynamically “burst” over their CIR for short periods of time?

    • The combination of LMI status messages and Inverse ARP messages enables the CIR to be exceeded.
    • The physical circuits of the Frame Relay network are shared between subscribers and there may be times when unused bandwidth is available.
    • Bursting is enabled by the configuration of multiple subinterfaces on one physical interface.
    • BECN and FECN messages notify the router that the CIR can be exceeded.

  17. Which broadband technology would be best for a small office that requires fast upstream connections?

    • DSL
    • fiber-to-the-home
    • cable
    • WiMax

  18. What is the protocol that provides ISPs the ability to send PPP frames over DSL networks?

    • PPPoE
    • CHAP
    • ADSL
    • LTE

  19. Which technology requires the use of PPPoE to provide PPP connections to customers?

    • dialup analog modem
    • dialup ISDN modem
    • DSL
    • T1

  20. Why is it useful to categorize networks by size when discussing network design?

    • Knowing the number of connected devices will define how many multilayer switches will be necessary at the core layer​.
    • Knowing the number of connected devices will define how many additional layers will be added to the three-tier hierarchical network design​.
    • A high-level redundancy at the access layer may be better implemented if the number of connected devices is known.​
    • The complexity of networking infrastructure will vary according to the number of connected devices.

  21. Why is it useful to categorize networks by size when discussing network design?

    • Knowing the number of connected devices will define how many multilayer switches will be necessary at the core layer​.
    • Knowing the number of connected devices will define how many additional layers will be added to the three-tier hierarchical network design​.
    • A high-level redundancy at the access layer may be better implemented if the number of connected devices is known.​
    • The complexity of networking infrastructure will vary according to the number of connected devices.

  22. A company connects to one ISP via multiple connections. What is the name given to this type of connection?

    • single-homed
    • multihomed
    • dual-multihomed
    • dual-homed

  23. What is one advantage to designing networks in building block fashion for large companies?

    • failure isolation
    • increased network access time
    • coarse security control
    • fewer required physical resources

  24. Which network module maintains the resources that employees, partners, and customers rely on to effectively create, collaborate, and interact with information?

    • access-distribution
    • services
    • data center
    • enterprise edge

  25. A group of Windows PCs in a new subnet has been added to an Ethernet network. When testing the connectivity, a technician finds that these PCs can access local network resources but not the Internet resources. To troubleshoot the problem, the technician wants to initially confirm the IP address and DNS configurations on the PCs, and also verify connectivity to the local router. Which three Windows CLI commands and utilities will provide the necessary information? (Choose three.)

    • arp -a
    • ipconfig
    • nslookup
    • ping
    • telnet
    • tracert
    • netsh interface ipv6 show neighbor

  26. A team of engineers has identified a solution to a significant network problem. The proposed solution is likely to affect critical network infrastructure components. What should the team follow while implementing the solution to avoid interfering with other processes and infrastructure?

    • change-control procedures
    • one of the layered troubleshooting approaches
    • knowledge base guidelines
    • syslog messages and reports

  27. Which troubleshooting tool would a network administrator use to check the Layer 2 header of frames that are leaving a particular host?

    • protocol analyzer
    • baselining tool
    • knowledge base
    • CiscoView

  28. Which two specialized troubleshooting tools can monitor the amount of traffic that passes through a switch? (Choose two.)

    • TDR
    • digital multimeter
    • NAM
    • portable network analyzer
    • DTX cable analyzer

  29. Refer to the exhibit. Which two statements describe the results of entering these commands? (Choose two.)CCNA4_Final_Exam_05

    • R1 will send system messages of levels 0 (emergencies) to level 4 (warnings) to a server.
    • R1 will not send critical system messages to the server until the command debug all is entered.
    • R1 will reset all the warnings to clear the log.
    • R1 will output the system messages to the local RAM.
    • The syslog server has the IPv4 address 192.168.10.10.

  30. Refer to the exhibit. On the basis of the output, which two statements about network connectivity are correct? (Choose two.)CCNA4_Final_Exam_06

    • There is connectivity between this device and the device at 192.168.100.1.
    • The connectivity between these two hosts allows for videoconferencing calls.
    • There are 4 hops between this device and the device at 192.168.100.1.
    • The average transmission time between the two hosts is 2 miliseconds.
    • This host does not have a default gateway configured.

  31. Which statement is a characteristic of SNMP MIBs?

    • The MIB organizes variables in a flat manner.
    • The SNMP agent uses the SNMP manager to access information within the MIB.​
    • The NMS must have access to the MIB in order for SNMP to operate properly.
    • The MIB structure for a given device includes only variables that are specific to that device or vendor.​

  32. Refer to the exhibit. Router R1 was configured by a network administrator to use SNMP version 2. The following commands were issued:

    R1(config)# snmp-server community batonaug ro SNMP_ACL
    R1(config)# snmp-server contact Wayne World
    R1(config)# snmp-server host 192.168.1.3 version 2c batonaug
    R1(config)# ip access-list standard SNMP_ACL
    R1(config-std-nacl)# permit 192.168.10.3

    Why is the administrator not able to get any information from R1?CCNA4_Final_Exam_07

    • The snmp-server enable traps command is missing.​
    • The snmp-server community command needs to include the rw keyword.​
    • There is a problem with the ACL configuration.
    • The snmp-server location command is missing.​

  33. What is used as the default event logging destination for Cisco routers and switches?

    • terminal line
    • syslog server
    • console line
    • workstation

  34. In the data gathering process, which type of device will listen for traffic, but only gather traffic statistics?

    • NMS
    • syslog server
    • NetFlow collector
    • SNMP agent

  35. Which SNMP message type informs the network management system (NMS) immediately of certain specified events?

    • GET request
    • SET request
    • GET response
    • Trap

  36. Which three flows associated with consumer applications are supported by NetFlow collectors? (Choose three.)

    • bandwidth regulation
    • accounting
    • billing
    • quality of service
    • error correction
    • network monitoring

  37. Which algorithm is considered insecure for use in IPsec encryption?

    • 3DES
    • AES
    • RSA
    • SHA-1

  38. Which statement describes a characteristic of dense wavelength division multiplexing (DWDM)?​

    • It supports the SONET standard, but not the SDH standard​.
    • It enables bidirectional communications over one pair of copper cables.
    • It can be used in long-range communications, like connections between ISPs.
    • It assigns incoming electrical signals to specific frequencies.

  39. Two corporations have just completed a merger. The network engineer has been asked to connect the two corporate networks without the expense of leased lines. Which solution would be the most cost effective method of providing a proper and secure connection between the two corporate networks?

    • Cisco AnyConnect Secure Mobility Client with SSL
    • Cisco Secure Mobility Clientless SSL VPN
    • Frame Relay
    • remote access VPN using IPsec
    • site-to-site VPN

  40. Refer to the exhibit. Which IP address is configured on the physical interface of the CORP router?CCNA4_Final_Exam_08

    • 10.1.1.1
    • 10.1.1.2
    • 209.165.202.133
    • 209.165.202.134

  41. What are three characteristics of the generic routing encapsulation (GRE) protocol? (Choose three.)

    • GRE tunnels support multicast traffic.
    • By default, GRE does not include any flow control mechanisms.
    • Developed by the IETF, GRE is a secure tunneling protocol that was designed for Cisco routers.
    • GRE uses AES for encryption unless otherwise specified.
    • GRE creates additional overhead for packets that are traveling through the VPN.
    • GRE provides encapsulation for a single protocol type that is traveling through the VPN.

  42. Which WAN technology can serve as the underlying network to carry multiple types of network traffic such as IP, ATM, Ethernet, and DSL?

    • ISDN
    • MPLS
    • Frame Relay
    • Ethernet WAN

  43. Which two statements describe remote access VPNs? (Choose two.)

    • Remote access VPNs are used to connect entire networks, such as a branch office to headquarters.
    • End users are not aware that VPNs exists.
    • A leased line is required to implement remote access VPNs.
    • Client software is usually required to be able to access the network.
    • Remote access VPNs support the needs of telecommuters and mobile users.

  44. Which circumstance would result in an enterprise deciding to implement a corporate WAN?

    • when its employees become distributed across many branch locations
    • when the network will span multiple buildings
    • when the number of employees exceeds the capacity of the LAN
    • when the enterprise decides to secure its corporate LAN

  45. An intercity bus company wants to offer constant Internet connectivity to the users traveling on the buses. Which two types of WAN infrastructure would meet the requirements? (Choose two.)

    • private infrastructure
    • public infrastructure
    • dedicated
    • circuit-switched
    • cellular

  46. Under which two categories of WAN connections does Frame Relay fit? (Choose two.)

    • public infrastructure
    • private infrastructure
    • dedicated
    • Internet
    • packet-switched

  47. What term is used to identify the point where the customer network ends and the service provider network begins?

    • CSU/DSU
    • the central office
    • the local loop
    • the demarcation point

  48. Which two characteristics describe time-division multiplexing? (Choose two.)

    • Traffic is allocated bandwidth across a single wire based on preassigned time slots.
    • Bandwidth is allocated to channels based on whether a station has data to transmit.
    • Encoding technology provides high data throughput in a minimum RF spectrum by supporting parallel data transmission.
    • Depending on the configured Layer 2 protocol, data is transmitted across two or more channels via the use of time slots.
    • Data capacity across a single link increases as bits from multiple sources are transmitted using interleaved slices of time.

  49. A branch office uses a leased line to connect to the corporate network. The lead network engineer confirms connectivity between users in the branch office, but none of the users can access corporate headquarters. System logs indicate that nothing has changed in the branch office network. What should the engineer consider next to resolve this network outage?

    • The network technician for the branch office should troubleshoot the switched infrastructure.
    • The system administrator in the branch office should reconfigure the default gateway on the user PCs.
    • The server administrator in the branch office should reconfigure the DHCP server.
    • The service provider for the branch office should troubleshoot the issue starting from the point of demarcation.

  50. Refer to the exhibit. Which three steps are required to configure Multilink PPP on the HQ router? (Choose three.)CCNA4_Final_Exam_09

    • Assign the serial interfaces to the multilink bundle.
    • Assign the Fast Ethernet interface to the multilink bundle.
    • Enable PPP encapsulation on the multilink interface.
    • Enable PPP encapsulation on the serial interfaces.
    • Bind the multilink bundle to the Fast Ethernet interface.
    • Create and configure the multilink interface.

  51. Refer to the exhibit. A network administrator discovers that host A is having trouble with Internet connectivity, but the server farm has full connectivity. In addition, host A has full connectivity to the server farm. What is a possible cause of this problem?CCNA4_Final_Exam_10

    • The router has an incorrect gateway.
    • Host A has an overlapping network address.
    • Host A has an incorrect default gateway configured.
    • Host A has an incorrect subnet mask.
    • NAT is required for the host A network.

  52. Refer to the exhibit. H1 can only ping H2, H3, and the Fa0/0 interface of router R1. H2 and H3 can ping H4 and H5. Why might H1 not be able to successfully ping H4 and H5?CCNA4_Final_Exam_11

    • Router R1 does not have a route to the destination network.
    • Switch S1 does not have an IP address configured.
    • The link between router R1 and switch S2 has failed.
    • Host H1 does not have a default gateway configured.
    • Hosts H4 and H5 are members of a different VLAN than host H1.

  53. What is required for a host to use an SSL VPN to connect to a remote network device?

    • VPN client software must be installed.
    • A site-to-site VPN must be preconfigured.
    • A web browser must be installed on the host.
    • The host must be connected to a wired network.

  54. What type of information is collected by Cisco NetFlow?

    • interface errors
    • CPU usage
    • memory usage
    • traffic statistics

  55. Match the characteristic to the appropriate authentication protocol. (Not all options are used.)

CCNA4_Final_Exam_001

CCNA 4 Final Exam Answer v5 -v5.02 2015

برنامج Packet Tracer

What is Cisco Packet Tracer ?

Cisco Packet Tracer is a powerful network simulator that can be utilized in training for CCNATM and CCNP TM certification exam by allowing students to create networks with an almost unlimited number of devices and to experience troubleshooting without having to buy real CiscoTM routers or switches.

برنامج Packet Tracer v6.1.1

 

يتيح لك البرنامج إمكانية عمل شبكات داخليه قبل الشروع بالمشروع وتطبيق ما تم التخطيط له لتفعيله في ارض الواقع

 

برنامج Packet Tracer النسخة رقم 6.1.1 لنظام التشغيل Windows الخاصة للطلاب بإمكانك تحميل النسخة عبر الروابط التالية ادناه

إضغط هنا

 

أو

مع الدروس الإضافية

إضغط هنا

Packet Tracer

An innovative network configuration simulation tool free for Networking Academy students.

 

 

 

برنامج p

acket tracer cisco برامج الشبكات

 

 

نبذة لدخول عالم ومجال سيسكو Cisco

السلام عليكم ورحمة الله و بركاته
الكثير منا لم يكن يعرف ماهي الشبكات ؟ اذا اول سؤال يجب ان نسأله لنفسنا ماهي الشبكات
قبل ذلك اريد ان اذكر بشئ بسيط :
اخي المبتدأ ارغب ان اشرح لك معنى تقنية المعلومات IT بصوره مختصره فالشبكات جزء منها
تقنيتة المعلومات تنقسم الى قسمين
الاول / SOFTWARE , C , C++ , JAVA etc………
الثاني :
Hardware , MCSE ,MCITP,CCNA,CCNP …..etc
بمعنى اخر او بتقسيم اخر
LAN : SYSTEM ADMINISTRATOR الشبكه المحليه
الشبكه الواسعه WAN : NETWORK/ SECURITY ADMINISTRATOR
اذا اردنا العمل مع الشبكه المحليه هذا يعني اننا سنحتاج للاتي
1-اكثر من كمبيوتر واحد
2- O/S نظام تشغيل و سوف اشرح انظمة التشغيل بصوره سريعه
مايكروسوفت انتج ما يسمى بي :
ا- نظام التشغيل الخاص بالمستخدم CLIENT
و هي من الاقدم الى الاحدث
WIN 3.11
WIN 95
WIN 98
WIN 2000 PRO
WIN XP SP1,SP2,SP3
WIN VISTA
WIN 7
ب-نظام التشغيل المتحكم بالمستخدم SERVERS
و هي من الاقدم الى الاحدث
WIN SERVER NT 4.0
WIN SERVER 2000 بإصدارات ثلاثه هي
interprise, web, data center
WIN SERVER 2003 OR MCSE
WIN SERVER 2008 OR MCITP
LINUX ,SUN ايضا لا ننسى انظمة التشغيل هذه و هي ذات حمايه عاليه جدا و اغلب شركات الاتصالات تعمل بهذه الانواع من انظمة التشغيل اذا كانت الشركه معنمده على اجهزه من شركة IBM و هي شركه مصنعه للسيرفرات و غيرها .
3- و نعود مرة اخرى و نذكر ثالث احتياجاتنا لعمل شبكه محليه NIC او ما يطلق عليه كرت الشبكه فمن غيره لايوجد شبكه و البورت الذي به او المدخل يسمى ETHERNET , FAST ETHERNET , GIGA ETHERNET
4-الكيبل CABLE و سأتحدث عنها في نقاط سريعه و التفصيل انت ستبحث عنه انا اعطيك الطريقه فقط كيف و بماذا تبدأ و لماذا ؟
النوع الاول: COXIAL
النوع الثاني : TWISTED و ينقسم الى نوعين و الفرق بينهما ان الاول صلب و ينكسر بسرعه لذلك غير مستخدم
لثاني مرن و يسهل التعامل معه
الاول STP shielded twisted pair و هذا هو النوع الصلب الغير مستخدم
الثاني UTP unshielded twisted pair و ههذا النوع المرن و يتكون من 8 اسلاك , و منها نوعان احدها للهاتف cat 1 RJ 11 2mbps
cat2 4mbps
cat3 10mbps
cat 4 16mbps
cat5 و هذا يستخدم للنت و يركب بكلبس يسمى RJ45 100MBPS
cat 6 1000 mbps
النوع الثالث / الفايبر اوبتيك يعني لازم تتعرف على جميع الكيبل
اريد من الجميع التركيز هنا
5- protocols و هذا ما سنحتاج الى معرفته لان الشبكه كلها تعمل ببرتكولات
6- الاجهزه الموصله other divices : switch , hub ,
يعني لازم تتعرف على كل انواع الاجهزه المستخدمه
بعد اعداد كل هذا سنصل سنكون قد انجزنا شبكه محليه و لكن ايضا هناك شئ صغير يجب ان نعرفه
اذا كانت الشبكه مرتبطه من غير متحكم تسمى WORKGROUP
اذا كانت مرتبطه بمتحكم اي سيرفير 2008 او 2003 او غيره تسمى دومين DOMAIN و هذا النوع تعمل به الشركات حتى تتحكم في مسار عمل الشركه و الموظفين و تسهيل نقل البيانات من مكان لاخر.
نأتي هنا و للاهم المهم و الذهب و الالماس عالم سيسكو :
بكل بساطه في الاعلى ذكرت ان الشركات تعمل بدومين هذا يعني ان الشركه اصبحت تتعامل بالكمبيوتر مربوطه ببعضها البعض اي هناك شبكه و في موقع محدد مثلا الرياض
قام صاحب الشركه بإنشاء فرع اخر في احدى المدن او الدول بالتأكيد سوف يقوم بتجهيز الفرع الجديد بكمبيوترات , او فالنقل سيقوم بعمل شبكه محليه للفرع لتسهيل العمل كما في الرياض
صاحب الشركه يريد ان يربط شبكة الفرع الجديد بالشركة الرئيسيه في الرياض ماذا سيحدث او ماذا سنفعل هنا ؟
سيأتي دور سيسكو اي اننا سنتعامل مع الراوترز و السويتش من الطبقه الثانيه و سوتيش من الطبقه الثالثه و هي تعمل عمل الراوتر ايضا حديثه جدا
فأجهزة سيسكو هي التي تعمل على ربط تلك المددينتين او الدولتين ببعضهما البعض و تسمى هذه الشبكه بالشبكه الواسعه WAN
سأكتفي بهذا الان وسأكمل بقية القصه و سأدلك اخي الى طريقك نحو كيفية دراسة و تطبيق الشبكه الواسعه و اعتقد ان المنتدى به الكثير من الدرر النفيسه مثل الاستاذ عدنان و غيره من الاخوان الافاضل و هذا الطرح هو طرح مبدأي لك اخي المبتدأ حتى تعرف ماهي الشبكه الواسعه و علاقتها بالشبكه المحليه و لكي تحدد ان كنت تريد ان تصبح mcitp or cisco certified
المصدر المصدر

نبذة لدخول عالم ومجال سيسكو Cisco

السلام عليكم ورحمة الله و بركاته

الكثير منا لم يكن يعرف ماهي الشبكات ؟ اذا اول سؤال يجب ان نسأله لنفسنا ماهي الشبكات

قبل ذلك اريد ان اذكر بشئ بسيط :
اخي المبتدأ ارغب ان اشرح لك معنى تقنية المعلومات IT بصوره مختصره فالشبكات جزء منها

تقنيتة المعلومات تنقسم الى قسمين

الاول / SOFTWARE , C , C++ , JAVA etc………

الثاني :

Hardware , MCSE ,MCITP,CCNA,CCNP …..etc

بمعنى اخر او بتقسيم اخر

LAN : SYSTEM ADMINISTRATOR الشبكه المحليه
الشبكه الواسعه WAN : NETWORK/ SECURITY ADMINISTRATOR

اذا اردنا العمل مع الشبكه المحليه هذا يعني اننا سنحتاج للاتي

1-اكثر من كمبيوتر واحد
2- O/S نظام تشغيل و سوف اشرح انظمة التشغيل بصوره سريعه

مايكروسوفت انتج ما يسمى بي :

ا- نظام التشغيل الخاص بالمستخدم CLIENT

و هي من الاقدم الى الاحدث

WIN 3.11
WIN 95
WIN 98
WIN 2000 PRO
WIN XP SP1,SP2,SP3
WIN VISTA
WIN 7
ب-نظام التشغيل المتحكم بالمستخدم SERVERS

و هي من الاقدم الى الاحدث

WIN SERVER NT 4.0
WIN SERVER 2000 بإصدارات ثلاثه هي
interprise, web, data center
WIN SERVER 2003 OR MCSE
WIN SERVER 2008 OR MCITP

LINUX ,SUN ايضا لا ننسى انظمة التشغيل هذه و هي ذات حمايه عاليه جدا و اغلب شركات الاتصالات تعمل بهذه الانواع من انظمة التشغيل اذا كانت الشركه معنمده على اجهزه من شركة IBM و هي شركه مصنعه للسيرفرات و غيرها .

3- و نعود مرة اخرى و نذكر ثالث احتياجاتنا لعمل شبكه محليه NIC او ما يطلق عليه كرت الشبكه فمن غيره لايوجد شبكه و البورت الذي به او المدخل يسمى ETHERNET , FAST ETHERNET , GIGA ETHERNET

4-الكيبل CABLE و سأتحدث عنها في نقاط سريعه و التفصيل انت ستبحث عنه انا اعطيك الطريقه فقط كيف و بماذا تبدأ و لماذا ؟

النوع الاول: COXIAL
النوع الثاني : TWISTED و ينقسم الى نوعين و الفرق بينهما ان الاول صلب و ينكسر بسرعه لذلك غير مستخدم
لثاني مرن و يسهل التعامل معه

الاول STP shielded twisted pair و هذا هو النوع الصلب الغير مستخدم

الثاني UTP unshielded twisted pair و ههذا النوع المرن و يتكون من 8 اسلاك , و منها نوعان احدها للهاتف cat 1 RJ 11 2mbps
cat2 4mbps
cat3 10mbps
cat 4 16mbps
cat5 و هذا يستخدم للنت و يركب بكلبس يسمى RJ45 100MBPS
cat 6 1000 mbps

النوع الثالث / الفايبر اوبتيك يعني لازم تتعرف على جميع الكيبل

اريد من الجميع التركيز هنا
5- protocols و هذا ما سنحتاج الى معرفته لان الشبكه كلها تعمل ببرتكولات

6- الاجهزه الموصله other divices : switch , hub ,

يعني لازم تتعرف على كل انواع الاجهزه المستخدمه

بعد اعداد كل هذا سنصل سنكون قد انجزنا شبكه محليه و لكن ايضا هناك شئ صغير يجب ان نعرفه

اذا كانت الشبكه مرتبطه من غير متحكم تسمى WORKGROUP

اذا كانت مرتبطه بمتحكم اي سيرفير 2008 او 2003 او غيره تسمى دومين DOMAIN و هذا النوع تعمل به الشركات حتى تتحكم في مسار عمل الشركه و الموظفين و تسهيل نقل البيانات من مكان لاخر.

نأتي هنا و للاهم المهم و الذهب و الالماس عالم سيسكو :

بكل بساطه في الاعلى ذكرت ان الشركات تعمل بدومين هذا يعني ان الشركه اصبحت تتعامل بالكمبيوتر مربوطه ببعضها البعض اي هناك شبكه و في موقع محدد مثلا الرياض

قام صاحب الشركه بإنشاء فرع اخر في احدى المدن او الدول بالتأكيد سوف يقوم بتجهيز الفرع الجديد بكمبيوترات , او فالنقل سيقوم بعمل شبكه محليه للفرع لتسهيل العمل كما في الرياض

صاحب الشركه يريد ان يربط شبكة الفرع الجديد بالشركة الرئيسيه في الرياض ماذا سيحدث او ماذا سنفعل هنا ؟

سيأتي دور سيسكو اي اننا سنتعامل مع الراوترز و السويتش من الطبقه الثانيه و سوتيش من الطبقه الثالثه و هي تعمل عمل الراوتر ايضا حديثه جدا

فأجهزة سيسكو هي التي تعمل على ربط تلك المددينتين او الدولتين ببعضهما البعض و تسمى هذه الشبكه بالشبكه الواسعه WAN

سأكتفي بهذا الان وسأكمل بقية القصه و سأدلك اخي الى طريقك نحو كيفية دراسة و تطبيق الشبكه الواسعه و اعتقد ان المنتدى به الكثير من الدرر النفيسه مثل الاستاذ عدنان و غيره من الاخوان الافاضل و هذا الطرح هو طرح مبدأي لك اخي المبتدأ حتى تعرف ماهي الشبكه الواسعه و علاقتها بالشبكه المحليه و لكي تحدد ان كنت تريد ان تصبح mcitp or cisco certified

 

المصدر