Config Flashcards
Enable EIGRP for IPv6 on AS 100, make sure it works correctly. Assign both the Ethernet0/0 and Loopback0 interfaces to AS 100. R1
By default, IPv6 traffic forwarding is disabled, so:
R1(config)#ipv6 unicast-routing
R1(config)#ipv6 router eigrp 100
R1(config)#interface ethernet0/0
R1(config-if)#ipv6 eigrp 100
R1(config-if)#exit
R1(config)#interface loopback0
R1(config-if)#ipv6 eigrp 100
Initialize the OSPF process number 10 and set R2’s OSPF router ID to 0.0.0.2
Include the interfaces with IP addresses in the 10.0.0.0/16 address range in Area 0 and in Area 1
R2(config)# router ospf 10
R2(config-router)# router-id 0.0.0.2
Commands to verify PPPoE
show ip interface brief
show pppoe session
Change R1 HSRP priority to 101, of HSRP group 1
R1(config)#interface ‘interface from show command’
R1(config-if)#standby 1 priority 101
Create EtherChannel and configure trunk on SW1 and SW2. Add VLAN 1, 2, and 20 on Ethernet trunk port.
Configure OSPFv3 process 10 on the Serial 0/1 interface on RouterA to operate in Area 0
RouterA(config)#interface serial 0/1
RouterA(config-if)#ipv6 ospf 10 area 0
Commands to verify GRE tunnels
-Determine whether the tunnel interface is up or down.
Router# show ip interface brief Tunnel tunnel-id
-Verify the state of the GRE tunnel.
Router# show interface tunnel tunnel-id
-Verify that the tunnel network is seen as directly connected in the routing table.
Router# show ip route
Configure extended IPv6 ACL named Example6 and apply to Ethernet1/1 interface in the inbound direction
The ACL should have the following four statements:
The first should deny all UDP traffic.
The second should permit TCP from PC2 to any destination as long as the destination port is 23 (Telnet).
The third should deny all other TCP traffic from PC2.
The last should explicitly permit all IPv6 traffic.
R1(config)# ipv6 access-list Example6
R1(config-ipv6-acl)# deny udp any any
R1(config-ipv6-acl)# permit tcp host ‘IPv6 address found from ‘show ipv6 interface brief’ command’ any eq 23
R1(config-ipv6-acl)# deny tcp host ‘IPv6 address found from ‘show ipv6 interface brief’ command’ any
R1(config-ipv6-acl)# permit ipv6 any any
Then,
R1(config)# interface Ethernet1/1
R1(config-if)# ipv6 traffic-filter Example6 in
Configure an extended IPv4 ACL(access control list). It should be named Example
IT should have these 4 statements:
- Should deny all UDP traffic.
- Should permit TCP from PC1 to any destination as long as the destination port is 23 (Telnet).
- Should deny all other TCP traffic from PC1.
- Should explicitly permit all IP traffic.
Then apply to interface Ethernet1/1 in the inbound direction
R1(config)#ip access-list extended Example
R1(config-ext-nacl)#deny udp any any
R1(config-ext-nacl)#permit tcp host ‘PC1 IP address’ any eq 23
R1(config-ext-nacl)#deny tcp host ‘PC1 IP address’ any
R1(config-ext-nacl)#permit ip any any
R1(config)#interface Ethernet1/1
R1(config-if)#ip access-group Example in
What configures the backup root for specified VLAN
“spanning-tree vlan ‘vlan-number’ root secondary”
- ) Verify IP SLA configuration on a device
- ) Verify IP SLA statistics
- ) Router#show ip sla configuration
- ) Router#show ip sla statistics
Place router in OSPFv2 in configuration mode. Also, OSPFv3 in configuration mode.
router ospf ‘process-id’
ipv6 router ospf ‘process-id’
Configure Multilink PPP (MLP) on R1 with these criteria:
Group number: 1
IP address: 10.1.1.1/24
Enable the MLP feature.
Restrict physical links with the multilink group 1 only to join this bundle.
R1(config)#interface Serial 0/0/0
R1(config-if)#encapsulation ppp
R1(config-if)#exit
R1(config)#interface Serial 0/1/0
R1(config-if)#encapsulation ppp
R1(config)#interface multilink 1
R1(config-if)#ip address 10.1.1.1 255.255.255.0
R1(config)#interface Serial 0/0/0
R1(config-if)#ppp multilink group 1
R1(config)#interface Serial 0/1/0
R1(config-if)#ppp multilink group 1
What forces the switch to be the root bridge for the specified VLAN
“spanning-tree vlan ‘vlan-number’ root primary”
Enable EIGRP AS number 1 and include the network 10.0.0.0/8 on R1.
R1(config)#router eigrp 1
R1(config-router)#network 10.0.0.0
Define the OSPv3 process ID 10 on R1, and assign to it the router ID 1.1.1.1
Enable OSPFv3 on the R1 Ethernet0/0, Ethernet0/1, and Loopback0 interfaces. All interfaces should be assigned to Area 0
Enable IPv6 Routing:
R1(config)# ipv6 unicast-routing
R1(config)# ipv6 router ospf 10
R1(config-rtr)# router-id 1.1.1.1
R1(config-rtr)# interface Loopback0
R1(config-if)# ipv6 ospf 10 area 0
R1(config-if)# interface Ethernet0/0
R1(config-if)# ipv6 ospf 10 area 0
R1(config-if)# interface Ethernet0/1
R1(config-if)# ipv6 ospf 10 area 0
R1. Configure the OSPF process ID 1. Include all the networks that are associated with each of the three active interfaces(10.0.1.0 /24, 10.1.1.0 /24, 10.10.11.0 /24) for R1 in area 0. Also, configure the router ID to 1.1.1.1.
R1(config)# router ospf 1
R1(config-router)# router-id 1.1.1.1
R1(config-router)# network 10.0.1.0 0.0.0.255 area 0
R1(config-router)# network 10.1.1.0 0.0.0.255 area 0
R1(config-router)# network 10.10.11.0 0.0.0.255 area 0
R1(config-router)# end
Verify single-area OSPF
Router# show ip protocols
Router# show ip ospf interface brief
Router# show ip ospf interface ‘interface’
Router# show ip ospf neighbor
Router# show ip route
Configure OSPF process 10 to advertise the 192.168.10.0/24 network in Area 0
(3 ways)
router ospf 10
RouterA(config-router)#network 192.168.10.0 0.0.0.255 area 0
RouterA(config-if)#ip ospf 10 area 0.0.0.0
RouterA(config-if)#ip ospf 10 area 0
Steps to configure CHAP authentication for PPP on R1, interface Serial1/1.
R1(config)#username “R2” password “cisco or anything”
R1(config)#interface serial1/1
R1(config-if)#ppp authentication chap
Commands to verify and troubleshoot EIGRP
show ip eigrp neighbors
show ip route
show ip eigrp topology
Configure the client (R1) to use an IP address provided by the PPPoE server.
Set the encapsulation type to PPP.
Specify the dialing pool that the dialer interface uses to connect to a specific destination subnetwork to “1.”
Assign the interface Ethernet0/1 to a newly created PPPoE dial group 1. Also, make sure that no IP address is manually assigned to the Ethernet0/1 interface.
R1(config)# interface Dialer1
R1(config-if)# ip address negotiated
R1(config-if)# encapsulation ppp
R1(config-if)# dialer pool “1”
R1(config)# interface Ethernet0/1
R1(config-if)# no ip address
R1(config-if)# pppoe-client dial-pool-number “1”