Networking and Routing Protocols Quiz
Test your knowledge of networking protocols including RIP, OSPF, BGP, routing policies, firewall filters, and JUNOS software configuration. Also includes Windows PowerShell scripting questions.
Questions
Which protocol family is required prior to assigning an IP address to an interface?
- family ip
- family ip6
- family inet
- Family inet4
Why would you make a non-backbone area a stub or not-so-stubby area?
- to aggregate routes learned from the ABR
- to lower the cost of routes advertised by the ABR
- to connect a non-contiguous area to the backbone
- to decrease the size of the link-state database in that area
When configuring an IBGP peering session between loopback interfaces, why is the local-address option required?
- for VLSM support
- for loop prevention
- for TCP reachability
- for MD5 authentication
When is the default routing policy applied?
- only if no policies have been applied
- prior to evaluating any applied policy
- after all policies have been evaluated
- during the evaluation of every applied policy
What is the default route preference for directly connected routes?
- 0
- 1
- 5
- 17
When is the default routing policy applied?
- only if no polices have been applied
- prior to evaluating any applied policy
- after all polices have been evaluated
- during the evaluation of every applied policy
On what destination port in the layer 4 header does BGP listen?
- UDP port 169
- TCP port 169
- UDP port 179
- TCP port 179
What are three characteristics of RIPv2? (Choose three)
- Supports VLSM
- Supports Kerberos authentication
- Is backward compatible with RIPv1
- Multicasts messages to RIP neighbors
- Uses Hello Protocol for neighbor discovery
Which two statements are true concerning the JUNOS software? (Choose two)
- Processes are tightly integrated with each other
- Processes are fully independent from each other
- Processes run in a protected memory environment
- Processes may fail and cause a failure of the entire system
Assume that a comparable configuration is applied to your peer in AS 11 and that bi-directional TCP reachability has been achieved. Which EBGP configuration will allow the BGP session to become established?
- routing-options {autonomous-system 64;} protocols { bgp { group external-peer11{ type external; neighbor 10.0.3.6 { peer as } }
- routing-options {autonomous-system 34;} protocols { bgp { group external-peer11{ type external; neighbor 10.0.3.6 { peer as } }
- routing-options {autonomous-system 11;} protocols { bgp { group external-peer64{ type external; neighbor 10.0.3.6 { peer as } }
- routing-options {autonomous-system 44;} protocols { bgp { group external-peer11{ type external; neighbor 10.0.3.5 { peer as } }
Which two steps are required for RIP to redistribute IS-IS routes? (Choose two)
- apply the redistribution policy to RIP as import
- apply the redistribution policy to RIP as export
- apply the redistribution policy to IS-IS as import
- apply the redistribution policy to IS-IS as export
- create a redistribution policy accepting the RIP routes
- create a redistribution policy accepting the IS-IS routes
Firewall filters can be used to accept, discard or reject packets based on _____. (Choose three.)
- protocol type
- MAC address
- TCP or UDP port
- source and destination IP address
For which two functions is the Routing Engine responsible? Choose two
- packet forwarding
- queuing functions
- routing protocol control
- JUNOS software operation
Which two steps are required for RIP to redistribute OSPF routes? (choose two)
- apply the redistribution policy to RIP as import
- apply the redistribution policy to RIP as export
- apply the redistribution policy to OSPF as import
- apply the redistribution policy to OSPF as export
- create a redistribution policy accepting the RIP routes
- create a redistribution policy accepting the OSPF routes
Which of the below statement(s) is/are not correct for “Pipeline” in PowerShell?
- Pipelines are used for a series of CmdLets to connect commands together.
- Pipelines are used to pass the output of each command as input to the next command
- Windows PowerShell scripts cannot be written without using pipelines
- All of the above
Which execution policy is required to be set in PowerShell in order to execute unsigned PowerShell script (.ps1) files?
- Restricted
- Remotesigned
- AllSigned
- Unrestricted
Which command is used to set the current location in Windows PowerShell?
- Get-Location
- Push-Location
- Pop-Location
- Set-Location
What are the different ways by default available in Windows PowerShell to hold values in objects that can be used inside the script for reference?
- Variables
- Arrays
- Hash Table
- All of the above