CCNA: Fast Pass phần 3 potx

39 366 0
CCNA: Fast Pass phần 3 potx

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

62 Chapter 2  Implementation & Operation Lab_A(config-if)# ip address 192.168.10.1 255.255.255.0 Lab_A(config-if)# description Lab_A LAN Connection Lab_A(config-if)# no shut Lab_A(config-if)# interface serial 0/0 Lab_A(config-if)# ip address 192.168.20.1 255.255.255.0 Lab_A(config-if)# description WAN Connection to Lab_B Lab_A(config-if)# no shut Lab_A(config-if)# exit Lab_A(config)# line console 0 Lab_A(config-line)# password todd Lab_A(config-line)# login Lab_A(config-line)# line aux 0 Lab_A(config-line)# password todd Lab_A(config-line)# login Lab_A(config-line)# line vty 0 4 Lab_A(config-line)# password todd Lab_A(config-line)# login Lab_A(config-line)# exit Lab_A(config)# banner motd # This is the Lab_A router # Lab_A(config-line)# ^z Lab_A# copy running-config startup-config Destination filename [startup-config]? Enter Lab_A# To view the IP routing tables created on a Cisco router, use the privileged mode command show ip route . The command output follows momentarily. Notice that only the configured, directly connected networks are shown in the routing table. This means the router only knows how to get to networks 192.168.10.0 and 192.168.20.0. Lab_A# sh ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B – BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSternal type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E – EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default, U - per-user static route, o - ODR, P - periodic downloaded static route, T - traffic engineered route 4309c02.fm Page 62 Friday, October 24, 2003 2:55 PM 2.1 Configure Routing Protocols Given User Requirements 63 Gateway of last resort is not set C 192.168.10.0/24 is directly connected, FastEthernet0/0 C 192.168.20.0/24 is directly connected, Serial 0/0 Lab_A# Did you notice the C? When you see it, it means that the network is directly connected. The codes for each type of connection are listed at the top of the show ip route command with their abbreviations. In the interest of brevity, the codes will be cut in the rest of this chapter. Lab_B Configuration It’s now time to configure the next router. To configure Lab_B, you have three interfaces to deal with: FastEthernet 0/0, Serial 0/0 and Serial 0/1. Both serial interfaces are data communication equipment (DCE). What that means to you is that you’ll have to add the clock rate command to each interface. And make sure you don’t forget to add your passwords, interface descriptions, and banner to the router configuration! Router>en Router#config t Router(config)#hostname Lab_B Lab_B(config)#enable secret todd Lab_B(config)#interface fa0/0 Lab_B(config-if)#ip address 192.168.30.1 255.255.255.0 Lab_B(config-if)#description Lab_B LAN Connection Lab_B(config-if)#no shut Lab_B(config-if)#interface serial 0/0 Lab_B(config-if)#ip address 192.168.20.2 255.255.255.0 Lab_B(config-if)#description WAN Connection to Lab_A Lab_B(config-if)#clock rate 64000 Lab_B(config-if)#no shut Lab_B(config-if)#interface serial 0/1 Lab_B(config-if)#ip address 192.168.40.1 255.255.255.0 Lab_B(config-if)#description WAN Connection to Lab_C Lab_B(config-if)#clock rate 64000 Lab_B(config-if)#no shut Lab_B(config-if)#exit Lab_B(config)#line console 0 Lab_B(config-line)#password todd 4309c02.fm Page 63 Friday, October 24, 2003 2:55 PM 64 Chapter 2  Implementation & Operation Lab_B(config-line)#login Lab_B(config-line)#line aux 0 Lab_B(config-line)#password todd Lab_B(config-line)#login Lab_B(config-line)#line vty 0 4 Lab_B(config-line)#password todd Lab_B(config-line)#login Lab_B(config-line)#exit Lab_B(config)#banner motd # This is the Lab_B router # Lab_B(config-line)#^z Lab_B#copy running-config startup-config Destination filename [startup-config]? Enter Lab_B# These commands configured Serial 0/0 into network 192.168.20.0, Serial 0/1 into network 192.168.40.0, and FastEthernet 0/0 into network 192.168.30.0. The show ip route command displays the following: Lab_B#sh ip route [output cut] Gateway of last resort is not set C 192.168.20.0/24 is directly connected, Serial0/0 C 192.168.40.0/24 is directly connected, Serial0/1 C 192.168.30.0 is directly connected FastEthernet 0/0 Lab_B# Notice that router Lab_B knows how to get to networks 192.168.20.0, 192.168.30.0, and 172.16.40.0. Router Lab_A and Router Lab_B can now communicate because they’re connected on the same WAN. Lab_C Configuration The configuration of Lab_C is the same as the other two routers. Make sure you remember to add passwords, interface descriptions, and your banner to the router configuration: Router>en Router#config t Router(config)#hostname Lab_C Lab_C(config)#enable secret todd Lab_C(config)#interface fa0/0 4309c02.fm Page 64 Friday, October 24, 2003 2:55 PM 2.1 Configure Routing Protocols Given User Requirements 65 Lab_C(config-if)#ip address 192.168.50.1 255.255.255.0 Lab_C(config-if)#description Lab_C LAN Connection Lab_C(config-if)#no shut Lab_C(config-if)#interface serial 0/0 Lab_C(config-if)#ip address 192.168.40.2 255.255.255.0 Lab_C(config-if)#description WAN Connection to Lab_B Lab_C(config-if)#no shut Lab_C(config-if)#exit Lab_C(config)#line console 0 Lab_C(config-line)#password todd Lab_C(config-line)#login Lab_C(config-line)#line aux 0 Lab_C(config-line)#password todd Lab_C(config-line)#login Lab_C(config-line)#line vty 0 4 Lab_C(config-line)#password todd Lab_C(config-line)#login Lab_C(config-line)#exit Lab_C(config)#banner motd # This is the Lab_C router # Lab_C(config-line)# ^z Lab_C#copy running-config startup-config Destination filename [startup-config]? Enter Lab_C# The output of the following show ip route command displays the directly connected networks of 192.168.50.0 and 192.168.40.0. Lab_C#sh ip route [output cut] Gateway of last resort is not set C 192.168.50.0/24 is directly connected, FastEthernet0/0 C 192.168.40.0/24 is directly connected, Serial0/0 lab_C# Routers Lab_A and Lab_B can communicate because they’re on the same WAN network. Lab_B and Lab_C can also communicate because they’re connected with a WAN link. But Router Lab_A can’t communicate with the Lab_C router because it does not know about net- work 172.16.40.0 and 192.168.50.0—at least not yet. 4309c02.fm Page 65 Friday, October 24, 2003 2:55 PM 66 Chapter 2  Implementation & Operation Configuring IP Routing in Your Network Okay—cool. Your network is good to go—right? After all, it’s been correctly configured with IP addressing! But wait… how does a router send packets to remote networks? They can only send packets by looking at the routing table to find out how to get to the remote networks. Your configured routers only have information about directly connected networks in each routing table. And what happens when a router receives a packet with a network that isn’t listed in the routing table? It doesn’t send a broadcast looking for the remote network—the router just dis- cards it. Period. So you’re not exactly ready to rock yet after all. But no worries—you still have several ways to configure the routing tables to include all the networks in your little internetwork so that packets will be forwarded. However, what’s best for one network isn’t necessarily what’s best for another. Understanding the different types of routing will really help you come up with the best solution for your specific environment and business requirements. Once again, the different types of routing you’ll configure in this section are as follows:  Static routing  Default routing  Dynamic routing I’m going to start off by describing and implementing static routing on your network because if you can implement static routing, and make it work, it means you have a solid understanding of the internetwork! So let’s get started… Here’s the command you use to add a static route to a routing table: ip route [destination_network] [mask] [next-hop_address or exitinterface] [administrative_distance] [permanent] This list describes each command in the string: ip route The command used to create the static route. destination network The network you’re placing in the routing table. mask The subnet mask being used on the network. next-hop address The address of the next-hop router that will receive the packet and forward it to the remote network. This is a router interface that’s on a directly connected network. You must be able to ping the router interface before you add the route. If you type in the wrong next-hop address, or the interface to that router is down, the static route shows up in the router’s configuration, but not in the routing table. exitinterface You can use this in place of the next-hop address if you want, but it’s got to be on a point-to-point link, like a WAN. This command won’t work on a LAN like Ethernet. administrative_distance By default, static routes have an administrative distance of 1. You can change the default value by adding an administrative weight at the end of the com- mand. This is a subject I’ll talk a lot more about later in the chapter when I get to the section on dynamic routing. 4309c02.fm Page 66 Friday, October 24, 2003 2:55 PM 2.1 Configure Routing Protocols Given User Requirements 67 permanent If the interface is shut down or the router can’t communicate to the next-hop router, the route is automatically discarded from the routing table. Choosing the permanent option keeps the entry in the routing table no matter what happens. To help you understand how static routes work, I’ll demonstrate the configuration on the internetwork shown previously in Figure 2.1. Lab_A Each routing table automatically includes directly connected networks. To be able to route to all networks in the internetwork, the routing table must include information that describes where these other networks are located and how to get there. The Lab_A router is connected to networks 192.168.10.0 and 192.168.20.0. For the Lab_A router to be able to route to all networks, the following networks have to be configured in its routing table:  192.168.30.0  192.168.40.0  192.168.50.0 The following router output shows the configuration of static routes on the Lab_A router and the routing table after the configuration. For the Lab_A router to find the remote networks, you must place an entry in the routing table that describes the network, the mask, and where to send the packets. Notice that each static route sends the packets to 192.168.20.2, which is the Lab_A router’s next hop. Lab_A(config)#ip route 192.168.30.0 255.255.255.0 192.168.20.2 Lab_A(config)#ip route 192.168.40.0 255.255.255.0 192.168.20.2 Lab_A(config)#ip route 192.168.50.0 255.255.255.0 192.168.20.2 After the router is configured, you can type show running-config and show ip route to see the static routes. Remember that if the routes don’t appear in the routing table, it’s because the router cannot communicate with the next-hop address you configured. Remember—you can use the permanent parameter to keep the route in the routing table even if you can’t contact the next-hop device. Lab_A#sh ip route [output cut]S 192.168.50.0 [1/0] via 192.168.20.2 S 192.168.40.0 [1/0] via 192.168.20.2 S 192.168.30.0 [1/0] via 192.168.20.2 C 192.168.20.0 is directly connected, Serial 0/0 C 192.168.10.0 is directly connected, FastEthernet0/0 Lab_A# 4309c02.fm Page 67 Friday, October 24, 2003 2:55 PM 68 Chapter 2  Implementation & Operation The S in the routing table entries means that the network is a static entry. The [1/0] is the administrative distance and metric (which I’ll talk about soon) to the remote network. Here it’s 0 indicating that it’s directly connected. The Lab_A router now has all the information it needs to communicate with the other remote networks. However, if the Lab_B and Lab_C routers are not configured with all the same information, the packets will be discarded at Lab_B and at Lab_C. You need to fix this. Lab_B  The Lab_B router is connected to the networks 192.168.20.0, 192.168.30.0, and 192.168.40.0. You must configure the following static routes on the Lab_B router:  192.168.10.0  192.168.50.0 Here’s the configuration for the Lab_B router. Lab_B(config)#ip route 192.168.10.0 255.255.255.0 192.168.20.1 Lab_B(config)#ip route 192.168.50.0 255.255.255.0 192.168.40.2 Okay—by next looking at the routing table, you can see that the Lab_B router now under- stands how to find each network. Lab_B#sh ip route [output cut] S 192.168.50.0 [1/0] via 192.168.40.2 C 192.168.40.0 is directly connected, Serial0/1 C 192.168.30.0 is directly connected, FastEthernet 0/0 C 192.168.20.0 is directly connected, Serial0/0 S 192.168.10.0 [1/0] via 192.168.20.1 Lab_B# The Lab_B router now has a complete routing table. As soon as the other routers in the inter- network have the same routing table, Lab_B can communicate to all remote networks. Lab_C The Lab_C router is directly connected to networks 192.168.40.0 and 192.168.50.0. You need to add three routes: 192.168.30.0, 192.168.20.0, and 192.168.10.0. Lab_C(config)#ip route 192.168.30.0 255.255.255.0 192.168.40.1 Lab_C(config)#ip route 192.168.20.0 255.255.255.0 172.16.40.1 Lab_C(config)#ip route 192.168.10.0 255.255.255.0 192.168.40.1 4309c02.fm Page 68 Friday, October 24, 2003 2:55 PM 2.1 Configure Routing Protocols Given User Requirements 69 The following output shows the routing table on the Lab_C router. Lab_C#sh ip route [output cut] C 192.168.50.0 is directly connected, FastEthernet0/0 C 192.168.40.0 is directly connected, Serial0/0 S 192.168.30.0 [1/0] via 192.168.40.1 S 192.168.20.0 [1/0[ via 192.168.40.1 S 192.168.10.0 [1/0] via 192.168.40.1 Lab_C# Lab_C now shows all the networks in the internetwork and can communicate with all routers and networks. Now all the routers have the correct routing table, and all the routers and hosts should be able to communicate without a problem. But if you add even one more network or another router to the internetwork, you’ll have to update all routers’ routing tables by hand. As I said, this isn’t a problem at all if you’ve got a small network, but it’s way too time-consuming a task if you’re dealing with a large internetwork. Verifying Your Configuration Once you have configured all the routers’ routing tables, you need to verify them. The best way to do this, besides using the show ip route command, is with the Ping program. By pinging from routers Lab_A and Lab_C, you can test the whole internetwork end-to-end. Really, the best test would be to use the Telnet program from one host to another, but for now, ping is king! Here is the output of a ping to network 192.168.50.0 from the Lab_A router: Lab_A#ping 192.168.50.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.50.1, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 64/66/68 ms Lab_A# Notice that the first response is a period. This is because the first ping times out waiting for the Address Resolution Protocol (ARP) request and response. Once the ARP has found the hardware address of the default gateway, the IP-to-Ethernet mapping will be in the ARP cache and will stay in the router’s cache for four hours. Any other IP connectivity to the next-hop router won’t time out, because no ARP broadcasts have to be performed. 4309c02.fm Page 69 Friday, October 24, 2003 2:55 PM 70 Chapter 2  Implementation & Operation From Router Lab_C, a ping to 192.168.10.0 will test for good IP connectivity. Here is the router output: Lab_C#ping 192.168.10.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.10.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 64/67/72 ms Since you can ping from end-to-end without a problem, your static route configuration was a success! Let’s do it again, this time with 50 routers—not! Default Routing You use default routing to send packets with a remote destination network not in the routing table to the next-hop router. You can only use default routing on stub networks—those with only one exit port out of the network. In the internetworking example used in the previous section, the only routers that are con- sidered to be in a stub network are Lab_A and Lab_C. If you tried to put a default route on router Lab_B, packets wouldn’t be forwarded to the correct networks because they have more than one interface routing to other routers. Even though router Lab_C has two connections, it doesn’t have a router on the 192.168.50.0 network that needs packets sent to it. Lab_C will only send packets to 192.168.40.1, which is the Serial 0/0 interface of Lab_B. Router Lab_A will only send packets to the 192.168.20.2 interface of Lab_A. To configure a default route, you use wildcards in the network address and mask locations of a static route. In fact, you can just think of a default route as a static route that uses wildcards instead of network and mask information. In this section, you’ll create a default route on the Lab_C router. Router Lab_C is directly connected to networks 192.168.40.0 and 192.168.50.0. The routing table needs to know about networks 192.168.10.0, 192.168.20.0, and 192.168.30.0. To configure the router to route to the other three networks, I placed three static routes in the routing table. By using a default route, you can create just one static route entry instead. First, you must delete the existing static routes from the router, and then you should add the default route. Lab_C(config)#no ip route 192.168.10.0 255.255.255.0 192.168.40.1 Lab_C(config)#no ip route 192.168.20.0 255.255.255.0 192.168.40.1 4309c02.fm Page 70 Friday, October 24, 2003 2:55 PM 2.1 Configure Routing Protocols Given User Requirements 71 Lab_C(config)#no ip route 192.168.30.0 255.255.255.0 192.168.40.1 Lab_C(config)#ip route 0.0.0.0 0.0.0.0 192.168.40.1 Okay—if you look at the routing table now, you’ll see only the two directly connected net- works, plus an S*, which indicates that this entry is a candidate for a default route. Lab_C#sh ip route [output cut] Gateway of last resort is 192.168.40.1 to network 0.0.0.0 C 192.168.50.0 is directly connected, FastEthernet0/0 C 192.168.40.0 is directly connected, Serial0/0 S* 0.0.0.0/0 [1/0] via 192.168.40.1 Lab_C# Notice also in the routing table that the gateway of last resort is now set. Even so, there’s one more command you must be aware of when using default routes: the ip classless command. All Cisco routers are classful routers, meaning they expect a default subnet mask on each interface of the router. When a router receives a packet for a destination subnet that’s not in the routing table, it drops the packet by default. If you’re using default routing, you’ve got to use the ip classless command because no remote subnets will be in the routing table. Since I have version 12.x of the Internetwork Operating System (IOS) on my routers, the ip classless command is on by default. If you’re using default routing and this command isn’t in your configuration, you’d need to add it if you had subnetted networks on your routers (which you don’t at this time). The command is shown here: Lab_C(config)#ip classless Notice that it’s a global configuration mode command. The interesting part of the ip classless command is that default routing sometimes works without it, but sometimes it doesn’t. So just to be on the safe side, you should always turn on the ip classless command when you use default routing. Configuring RIP Routing Configuring RIP is actually simpler than configuring static or default routing. To configure RIP routing, just turn on the protocol with the router rip command and tell the RIP routing pro- tocol which networks to advertise. That’s it. Let’s configure your three-router internetwork (shown again in Figure 2.2) with RIP routing and practice that. 4309c02.fm Page 71 Friday, October 24, 2003 2:55 PM [...]... mask How many subnets? 224 is 11100000, so your equation would be 23 – 2 = 6 How many hosts? 25 – 2 = 30 What are the valid subnets? 256 – 224 = 32 , 32 + 32 = 64, 64 + 32 = 96, 96 + 32 = 128, 128 + 32 = 160, 160 + 32 = 192, and 192 + 32 = 224, which is invalid because it is your subnet mask (all subnet bits on) Therefore, your subnets are 32 , 64, 96, 128, 160, and 192 What’s the broadcast address for each... count 172.16.10.1 172.16.10.1 689 0x80000002 0xB404 3 172.16.20.1 172.16.20.1 139 0x8000000A 0x4AB1 5 172.16 .30 .1 172.16 .30 .1 138 0x80000002 0x2B14 3 The show ip ospf database shows the RID in the first line of output The show ip ospf interface also displays this information, but you have to dig for it a little more: Lab_C#show ip ospf interface FastEthernet0/0 is up, line protocol is up Internet Address... cut] C 192.168.50.0 C 192.168.40.0 I 192.168 .30 .0 I 192.168.20.0 I 192.168.10.0 Lab_C# is directly connected, FastEthernet 0/0 is directly connected, Serial0/0 [100/1 437 23] via 192.168.40.1, 00:00:42, Serial0/0 [100/15 236 5] via 192.168.40.1, 00:00;52, Serial0/0 [100/15 835 0] via 192.168.20.1, 00:00 :36 , Serial0/0 Configuring EIGRP Although EIGRP can be configured for IP, IPX, and AppleTalk, as a future Cisco... routing table: Lab_A#sh ip route [output cut] R 192.168.50.0 R 192.168.40.0 R 192.168 .30 .0 C 192.168.20.0 C 192.168.10.0 Lab_A# [120/2] via [120/1] via [120/1] via is directly is directly 192.168.20.2, 00:00: 23, Serial0/0 192.168.20.2, 00:00: 23, Serial0/0 192.168.20.2, 00:00: 23, Serial0/0 connected, Serial0/0 connected, FastEthernet0/0 Looking at this, you can see that the routing table has the same entries... 192.168.50.0 I 192.168.40.0 I 192.168 .30 .0 C 192.168.20.0 C 192.168.10.0 [100/170420] via 192.168.20.2, Serial0/0 [100/160260] via 192.168.20.2, Serial0/0 [100/15 836 0] via 192.168.20.2, Serial0/0 is directly connected Serial0/0 is directly connected, FastEthernet0/0 The I means IGRP-injected routes The 100 in [100/16 036 0] is the administrative distance of IGRP The 16 036 0 is the composite metric The lower... Router ID 172.16 .30 .1, Network Type BROADCAST, Cost: 10 Transmit Delay is 1 sec, State DR, Priority 1 Designated Router (ID) 172.16 .30 .1, Interface address 192.168.50.1 No backup designated router on this network [output cut] The show ip ospf command shows the RID in the first line of output: Lab_C#show ip ospf Routing Process "ospf 64999" with ID 172.16 .30 .1 and Domain ID 0.0.2 53. 231 [output cut] An... C 192.168.40.0 C 192.168 .30 .0 C 192.168.20.0 I 192.168.10.0 Lab_B# [100/8576] via 192.168.40.2, 00:01:11, Serial0/1 is directly connected, Serial0/1 is directly connected, FastEthernet0/0 is directly connected, Serial0/0 [100/15 835 0] via 192.168.20.1, 00:00 :36 , Serial0/0 And here’s Lab_C’s routing table: Lab_C#sh ip route [output cut] C 192.168.50.0 C 192.168.40.0 I 192.168 .30 .0 I 192.168.20.0 I 192.168.10.0... routing tables, even if all three routing protocols are enabled.) Figure 2 .3 shows the network that you’ve been working with—the same one you’re going to use to configure with EIGRP: FIGURE 2 .3 Our Internetwork example F0/27 F0/2 1900 F0 /3 F0/4 F0/5 2950 F0/26 F0/1 F0/0 Lab_A F0/2 F0/4 F0/5 2950 F0/1 F0/0 S0/0 S0/0 DCE Lab_B F0 /3 F0/0 S0/1 DCE S0/0 Lab_C It’s actually really easy to add EIGRP to your... something like this: 192.168.10 .32 /28 What this tells you is what your subnet mask is The slash notation (/) tells you how many bits are turned on (1s) Obviously, the maximum can only be /32 because a byte is 8 bits and there are four bytes in an IP address: (4 × 8 = 32 ) However, keep in mind that the largest subnet mask available (regardless of the class of address) can only be a /30 because you’ve got to... 255.255.240.0 /20 255.255.248.0 /21 255.255.252.0 /22 255.255.254.0 / 23 255.255.255.0 /24 255.255.255.128 /25 255.255.255.192 /26 255.255.255.224 /27 255.255.255.240 /28 Configuring IP Addresses, Subnet Masks, and Gateway Addresses… TABLE 2 .3 93 CIDR Values (continued) Subnet Mask CIDR Value 255.255.255.248 /29 255.255.255.252 /30 No, you cannot configure a Cisco router using this slash format Wouldn’t . 0 Lab_B(config-line)#password todd 430 9c02.fm Page 63 Friday, October 24, 20 03 2:55 PM 64 Chapter 2  Implementation & Operation Lab_B(config-line)#login Lab_B(config-line)#line aux 0 Lab_B(config-line)#password. S0/0 DCE S0/1 DCE 2950 Lab_B F0/3F0/2 F0/1 F0/0 F0/4 F0/5 S0/0 2950 Lab_C F0/3F0/2 F0/1 F0/0 F0/4 F0/5 430 9c02.fm Page 72 Friday, October 24, 20 03 2:55 PM 2.1 Configure Routing Protocols Given User Requirements 73 RIP. directly connected, FastEthernet 0/0 C 192.168.40.0 is directly connected, Serial0/0 I 192.168 .30 .0 [100/1 437 23] via 192.168.40.1, 00:00:42, Serial0/0 I 192.168.20.0 [100/15 236 5] via 192.168.40.1,

Ngày đăng: 14/08/2014, 13:20

Mục lục

  • Chapter 2 Implementation & Operation

    • 2.1 Configure Routing Protocols Given User Requirements

      • Configuring IP Routing in Your Network

      • Configuring IGRP Routing

        • Lab_A

        • Verifying the IGRP Routing Tables

        • 2.2 Configuring IP Addresses, Subnet Masks, and Gateway Addresses on Routers and Hosts

          • Configuring Subnet Masks

          • Subnetting Practice Examples: Class C Addresses

          • Subnetting in Your Head: Class C Addresses

          • Subnetting Class B Addresses

          • Subnetting Practice Examples: Class B Addresses

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan