实验目的

1. 了解静态路由的原理

2. 掌握静态路由的配置

实验任务

1. 任务1

2. 任务2

任务1:实验拓扑

任务1:实验需求

1. 根据实验拓扑图,完成设备的基本配置;

2. 在路由器R1、R2、R3上配置静态路由,保证全网路由可达;

任务1:实验步骤

步骤1:设备的基本配置

配置PC1:VPCS> set pcname PC1   //设置主机名PC1> ip 192.168.1.1/24 192.168.1.254    //设置IP地址与网关
配置PC2:VPCS> set pcname PC2PC2> ip 192.168.2.1/24 192.168.2.254
配置R1:
Router>enableRouter#configure terminalRouter(config)#hostname R1R1(config)#no ip domain-lookupR1(config)#line console 0R1(config-line)#exec-timeout 0 0R1(config-line)#logging synchronousR1(config-line)#exitR1(config)#interface ethernet0/0R1(config-if)#ip address 192.168.1.254 255.255.255.0R1(config-if)#no shutdownR1(config-if)#exitR1(config)#interface serial1/0R1(config-if)#ip address 192.168.12.1 255.255.255.0R1(config-if)#no shutdownR1(config-if)#endR1#
配置R2:
Router>enableRouter#configure terminalRouter(config)#hostname R2R2(config)#no ip domain-lookupR2(config)#line console 0R2(config-line)#exec-timeout 0 0R2(config-line)#logging synchronousR2(config-line)#exitR2(config)#interface serial1/0R2(config-if)#ip address 192.168.12.2 255.255.255.0R2(config-if)#no shutdownR2(config-if)#exitR2(config)#interface serial1/1R2(config-if)#ip address 192.168.23.2 255.255.255.0R2(config-if)#no shutdownR2(config-if)#endR2#
配置R3:
Router>enableRouter#configure terminalRouter(config)#hostname R3R3(config)#no ip domain-lookupR3(config)#line console 0R3(config-line)#exec-timeout 0 0R3(config-line)#logging synchronousR3(config-line)#exitR3(config)#interface ethernet0/0R3(config-if)#ip address 192.168.2.254 255.255.255.0R3(config-if)#no shutdownR3(config-if)#exitR3(config)#interface serial1/0R3(config-if)#ip address 192.168.23.3 255.255.255.0R3(config-if)#no shutdownR3(config-if)#endR3#

步骤2:检查设备接口状态

检查PC1

PC1> show ipNAME        : PC1[1]IP/MASK     : 192.168.1.1/24GATEWAY     : 192.168.1.254DNS         :MAC         : 00:50:79:66:68:04LPORT       : 20000RHOST:PORT  : 127.0.0.1:30000MTU         : 1500

检查R1:

R1#show ip interface briefInterface                  IP-Address      OK? Method Status                ProtocolEthernet0/0                192.168.1.254   YES manual up                    up      Ethernet0/1                unassigned      YES unset  administratively down down    Ethernet0/2                unassigned      YES unset  administratively down down    Ethernet0/3                unassigned      YES unset  administratively down down    Serial1/0                  192.168.12.1    YES manual up                    up      Serial1/1                  unassigned      YES unset  administratively down down    Serial1/2                  unassigned      YES unset  administratively down down    Serial1/3                  unassigned      YES unset  administratively down down    

检查R2

R2#show ip interface briefInterface                  IP-Address      OK? Method Status                ProtocolEthernet0/0                unassigned      YES unset  administratively down down    Ethernet0/1                unassigned      YES unset  administratively down down    Ethernet0/2                unassigned      YES unset  administratively down down    Ethernet0/3                unassigned      YES unset  administratively down down    Serial1/0                  192.168.12.2    YES manual up                    up      Serial1/1                  192.168.23.2    YES manual up                    up      Serial1/2                  unassigned      YES unset  administratively down down    Serial1/3                  unassigned      YES unset  administratively down down

检查R3

R3#show ip interface briefInterface                  IP-Address      OK? Method Status                ProtocolEthernet0/0                192.168.2.254   YES manual up                    up      Ethernet0/1                unassigned      YES unset  administratively down down    Ethernet0/2                unassigned      YES unset  administratively down down    Ethernet0/3                unassigned      YES unset  administratively down down    Serial1/0                  192.168.23.3    YES manual up                    up      Serial1/1                  unassigned      YES unset  administratively down down    Serial1/2                  unassigned      YES unset  administratively down down    Serial1/3                  unassigned      YES unset  administratively down down    

检查PC2

PC2> show ipNAME        : PC2[1]IP/MASK     : 192.168.2.1/24GATEWAY     : 192.168.2.254DNS         :MAC         : 00:50:79:66:68:05LPORT       : 20000RHOST:PORT  : 127.0.0.1:30000MTU         : 1500

步骤3:测试直连网络的连通性

测试PC1跟网关的网络连通性:

PC1> ping 192.168.1.25484 bytes from 192.168.1.254 icmp_seq=1 ttl=255 time=0.359 ms84 bytes from 192.168.1.254 icmp_seq=2 ttl=255 time=0.459 ms84 bytes from 192.168.1.254 icmp_seq=3 ttl=255 time=0.463 ms84 bytes from 192.168.1.254 icmp_seq=4 ttl=255 time=0.403 ms84 bytes from 192.168.1.254 icmp_seq=5 ttl=255 time=0.417 ms

测试R1跟R2之间的网络连通性:

R1#ping 192.168.12.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.12.2, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 8/9/10 ms

测试R2跟R3之间的网络连通性:

R2#ping 192.168.23.3Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.23.3, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 9/9/11 ms

测试PC2跟网关的网络连通性:

PC2> ping 192.168.2.25484 bytes from 192.168.2.254 icmp_seq=1 ttl=255 time=0.469 ms84 bytes from 192.168.2.254 icmp_seq=2 ttl=255 time=0.484 ms84 bytes from 192.168.2.254 icmp_seq=3 ttl=255 time=0.518 ms84 bytes from 192.168.2.254 icmp_seq=4 ttl=255 time=0.400 ms84 bytes from 192.168.2.254 icmp_seq=5 ttl=255 time=0.405 ms注意,虽然设备之间的网络连通性正常了,但是PC1和PC2之间的网络是不可达的:PC1> ping 192.168.2.1*192.168.1.254 icmp_seq=1 ttl=255 time=0.345 ms (ICMP type:3, code:1, Destination host unreachable)*192.168.1.254 icmp_seq=2 ttl=255 time=0.462 ms (ICMP type:3, code:1, Destination host unreachable)*192.168.1.254 icmp_seq=3 ttl=255 time=0.543 ms (ICMP type:3, code:1, Destination host unreachable)*192.168.1.254 icmp_seq=4 ttl=255 time=0.494 ms (ICMP type:3, code:1, Destination host unreachable)*192.168.1.254 icmp_seq=5 ttl=255 time=0.467 ms (ICMP type:3, code:1, Destination host unreachable)因为PC1把数据包发送给R1后,R1没有到达网络192.168.2.0/24的路由,所以R1无法转发数据包。

检查R1的路由表:

R1#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is not set      192.168.1.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.1.0/24 is directly connected, Ethernet0/0L        192.168.1.254/32 is directly connected, Ethernet0/0      192.168.12.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.12.0/24 is directly connected, Serial1/0L        192.168.12.1/32 is directly connected, Serial1/0R1只有两条直连路由,分别是192.168.1.0/24和192.168.12.0/24。因此,我们需要在R1上配置去往192.168.2.0/24的静态路由。

步骤4:配置静态路由

配置R1

R1(config)#ip route 192.168.2.0 255.255.255.0 192.168.12.2//当然也可以跟出接口路由要有去有回网络才能通,所以R3上要配置回程路由。

配置R3

R3(config)#ip route 192.168.1.0 255.255.255.0 serial 1/0//当然也可以跟下一跳另外,沿途的路由器也要有去往源和目标网络的路由。

配置R2

R2(config)#ip route 192.168.1.0 255.255.255.0 192.168.12.1//当然也可以跟出接口R2(config)#ip route 192.168.2.0 255.255.255.0 192.168.23.3//当然也可以跟出接口这样当PC1把数据包发送给R1时,R1查路由表:R1#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is not set      192.168.1.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.1.0/24 is directly connected, Ethernet0/0L        192.168.1.254/32 is directly connected, Ethernet0/0S     192.168.2.0/24 [1/0] via 192.168.12.2      192.168.12.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.12.0/24 is directly connected, Serial1/0L        192.168.12.1/32 is directly connected, Serial1/0R1有到达网络192.168.2.0/24的路由,所以R1把数据包发送给下一跳R2,R2检查路由表:R2#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is not setS     192.168.1.0/24 [1/0] via 192.168.12.1S     192.168.2.0/24 [1/0] via 192.168.23.3      192.168.12.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.12.0/24 is directly connected, Serial1/0L        192.168.12.2/32 is directly connected, Serial1/0      192.168.23.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.23.0/24 is directly connected, Serial1/1L        192.168.23.2/32 is directly connected, Serial1/1R2有到达网络192.168.2.0/24的路由,所以R2把数据包发送给下一跳R3,R3检查路由表:R3#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is not setS     192.168.1.0/24 is directly connected, Serial1/0      192.168.2.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.2.0/24 is directly connected, Ethernet0/0L        192.168.2.254/32 is directly connected, Ethernet0/0      192.168.23.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.23.0/24 is directly connected, Serial1/0L        192.168.23.3/32 is directly connected, Serial1/0R3上192.168.2.0/24是自己的直连网络,所以R3把数据包直接发给PC2。回程数据包的转发原理一样,这里不再撰述。

步骤5:测试PC1跟PC2的网络连通性

PC1> ping 192.168.2.184 bytes from 192.168.2.1 icmp_seq=1 ttl=61 time=22.503 ms84 bytes from 192.168.2.1 icmp_seq=2 ttl=61 time=18.859 ms84 bytes from 192.168.2.1 icmp_seq=3 ttl=61 time=19.251 ms84 bytes from 192.168.2.1 icmp_seq=4 ttl=61 time=19.350 ms84 bytes from 192.168.2.1 icmp_seq=5 ttl=61 time=17.856 ms因为需求要求全网路由可达;如果这个时候在R1上Ping PC2,能不能通呢?不能!在R1上Ping PC2,数据包源地址是192.168.12.1,数据包能到达PC2,但是回不来,因为R3上没有到达192.168.12.0/24的路由;同理,R3上Ping PC1也不通,因为R1没有到达192.168.23.0/24的路由。

检查R3的路由表:

R3#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is not setS     192.168.1.0/24 is directly connected, Serial1/0      192.168.2.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.2.0/24 is directly connected, Ethernet0/0L        192.168.2.254/32 is directly connected, Ethernet0/0      192.168.23.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.23.0/24 is directly connected, Serial1/0L        192.168.23.3/32 is directly connected, Serial1/0R3没有到达网络192.168.12.0/24的路由。

配置R3

R3(config)#ip route 192.168.12.0 255.255.255.0 192.168.23.2//当然也可以跟出接口

同理,配置R1

R1(config)#ip route 192.168.23.0 255.255.255.0 serial 1/0//当然也可以跟下一跳

检查R1的路由表:

R1#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is not set      192.168.1.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.1.0/24 is directly connected, Ethernet0/0L        192.168.1.254/32 is directly connected, Ethernet0/0S     192.168.2.0/24 [1/0] via 192.168.12.2      192.168.12.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.12.0/24 is directly connected, Serial1/0L        192.168.12.1/32 is directly connected, Serial1/0S     192.168.23.0/24 is directly connected, Serial1/0R1有到达192.168.2.0/24和192.168.23.0/24的路由。

检查R3的路由表:

R3#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is not setS     192.168.1.0/24 is directly connected, Serial1/0      192.168.2.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.2.0/24 is directly connected, Ethernet0/0L        192.168.2.254/32 is directly connected, Ethernet0/0S     192.168.12.0/24 [1/0] via 192.168.23.2      192.168.23.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.23.0/24 is directly connected, Serial1/0L        192.168.23.3/32 is directly connected, Serial1/0R3有到达192.168.1.0/24和192.168.12.0/24的路由。

步骤6:测试网络连通性

在PC1上测试:

PC1> ping 192.168.2.184 bytes from 192.168.2.1 icmp_seq=1 ttl=61 time=21.429 ms84 bytes from 192.168.2.1 icmp_seq=2 ttl=61 time=18.079 ms84 bytes from 192.168.2.1 icmp_seq=3 ttl=61 time=19.108 ms84 bytes from 192.168.2.1 icmp_seq=4 ttl=61 time=19.006 ms84 bytes from 192.168.2.1 icmp_seq=5 ttl=61 time=18.163 msPC1> ping 192.168.23.384 bytes from 192.168.23.3 icmp_seq=1 ttl=253 time=18.265 ms84 bytes from 192.168.23.3 icmp_seq=2 ttl=253 time=18.186 ms84 bytes from 192.168.23.3 icmp_seq=3 ttl=253 time=18.184 ms84 bytes from 192.168.23.3 icmp_seq=4 ttl=253 time=18.257 ms84 bytes from 192.168.23.3 icmp_seq=5 ttl=253 time=18.240 msPC1> ping 192.168.12.284 bytes from 192.168.12.2 icmp_seq=1 ttl=254 time=9.899 ms84 bytes from 192.168.12.2 icmp_seq=2 ttl=254 time=9.380 ms84 bytes from 192.168.12.2 icmp_seq=3 ttl=254 time=9.159 ms84 bytes from 192.168.12.2 icmp_seq=4 ttl=254 time=9.300 ms84 bytes from 192.168.12.2 icmp_seq=5 ttl=254 time=9.268 ms

任务2:实验拓扑

任务2:实验需求

1. 在R1和R3上删除任务1的静态路由;

2. 在路由器R1、R3上配置默认路由,使得全网路由可达。

任务2:实验步骤

步骤1:删除R1和R3上的静态路由并配置默认路由

配置R1

R1(config)#no ip route 192.168.2.0 255.255.255.0 192.168.12.2R1(config)#no ip route 192.168.23.0 255.255.255.0 Serial1/0R1(config)#ip route 0.0.0.0 0.0.0.0 192.168.12.2

配置R3:

R3(config)#no ip route 192.168.1.0 255.255.255.0 Serial1/0R3(config)#no ip route 192.168.12.0 255.255.255.0 192.168.23.2R3(config)#ip route 0.0.0.0 0.0.0.0 192.168.23.2

步骤2:检查默认路由

检查R1

R1#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is 192.168.12.2 to network 0.0.0.0S*    0.0.0.0/0 [1/0] via 192.168.12.2      192.168.1.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.1.0/24 is directly connected, Ethernet0/0L        192.168.1.254/32 is directly connected, Ethernet0/0      192.168.12.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.12.0/24 is directly connected, Serial1/0L        192.168.12.1/32 is directly connected, Serial1/0检查R3:R3#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP       a - application route       + - replicated route, % - next hop override, p - overrides from PfRGateway of last resort is 192.168.23.2 to network 0.0.0.0S*    0.0.0.0/0 [1/0] via 192.168.23.2      192.168.2.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.2.0/24 is directly connected, Ethernet0/0L        192.168.2.254/32 is directly connected, Ethernet0/0      192.168.23.0/24 is variably subnetted, 2 subnets, 2 masksC        192.168.23.0/24 is directly connected, Serial1/0L        192.168.23.3/32 is directly connected, Serial1/0

步骤3:网络连通性测试

PC1> ping 192.168.2.184 bytes from 192.168.2.1 icmp_seq=1 ttl=61 time=20.698 ms84 bytes from 192.168.2.1 icmp_seq=2 ttl=61 time=19.478 ms84 bytes from 192.168.2.1 icmp_seq=3 ttl=61 time=18.593 ms84 bytes from 192.168.2.1 icmp_seq=4 ttl=61 time=19.404 ms84 bytes from 192.168.2.1 icmp_seq=5 ttl=61 time=19.616 msPC1> ping 192.168.23.384 bytes from 192.168.23.3 icmp_seq=1 ttl=253 time=22.048 ms84 bytes from 192.168.23.3 icmp_seq=2 ttl=253 time=20.271 ms84 bytes from 192.168.23.3 icmp_seq=3 ttl=253 time=19.362 ms84 bytes from 192.168.23.3 icmp_seq=4 ttl=253 time=20.110 ms84 bytes from 192.168.23.3 icmp_seq=5 ttl=253 time=21.321 msPC1> ping 192.168.12.284 bytes from 192.168.12.2 icmp_seq=1 ttl=254 time=10.201 ms84 bytes from 192.168.12.2 icmp_seq=2 ttl=254 time=10.220 ms84 bytes from 192.168.12.2 icmp_seq=3 ttl=254 time=8.304 ms84 bytes from 192.168.12.2 icmp_seq=4 ttl=254 time=9.170 ms84 bytes from 192.168.12.2 icmp_seq=5 ttl=254 time=10.084 ms

3分钟配置好静态路由相关推荐

  1. 静态路由_配置IPv4静态路由

    组网需求 如图1所示,属于不同网段的主机通过几台Switch相连,要求不配置动态路由协议,使不同网段的任意两台主机之间能够互通. 图1 配置IP静态路由组网图 配置思路 采用如下的思路配置IPv4静态 ...

  2. HCNA配置浮动静态路由

    1.拓扑图 2.配置IP R1 1 Please press enter to start cmd line! 2 ############ 3 <Huawei> 4 Dec 10 201 ...

  3. 路由器配置和静态路由

    路由器配置和静态路由 作者意图: 计算机网络第一次碰到让我头疼的实验,因为课程进度和实验进度不一样,特意记录下来,用于以后的学习!只是简要的说一下实验报告中的思考题,能做出来,但底层原理还是有些不懂, ...

  4. 实验二(1)-配置 IPv4 静态路由和默认路由

    目录 一.拓扑 二.地址分配 三.目标 第 1 部分:设置拓扑并初始化设备 第 2 部分:配置基本设备设置并验证连接 第 3 部分:配置静态路由 配置递归静态路由. 配置直连静态路由. 配置和删除静态 ...

  5. 计算机网络实验二 路由器的配置和静态路由

    实验二 路由器的配置和静态路由 一.实验目的: 掌握设备系统参数的配置方法 掌握配置路由器接口IP地址的方法 掌握测试两台直连路由器连通性的方法 掌握静态路由以及静态备份路由的配置方法 掌握测试静态路 ...

  6. 实验 – 配置 IPv4 静态路由和默认路由(教师版)步骤在末尾,报告结束以后(二十步解决,不用听课,闭着眼照着步骤做就没问题)

    实验 – 配置 IPv4 静态路由和默认路由(教师版) 教师注意事项:红色字体或灰色突显的部分表示仅显示在教师副本上的文本. 拓扑 地址分配表 设备 接口 IP 地址 子网掩码 默认网关 R1 G0/ ...

  7. 华为实验 | 配置 IPv4 静态路由基本功能

    先看看本文目录: 规格 组网需求 操作步骤 步骤1 RouterA的配置 步骤2 RouterB的配置 步骤3 RouterC的配置 步骤4 配置主机 步骤5 配置交换机 步骤6 验证配置结果 配置注 ...

  8. 配置IPv4静态路由

    配置IPV4静态路由有以下两种基本方法: 1.ip route IP地址 子网掩码 输出接口 2.ip route IP地址 子网掩码 下一跳地址 显示路由表信息:show ip route 注意大写 ...

  9. linux配置ipv6静态路由,IPv6静态路由配置

    IPv6静态路由 命令: R1(config)#ipv6 unicast-routing //启用IPv6路由 R1(config-if)#ipv6 address 2010:1111::1/64 / ...

最新文章

  1. linux-RPM安装
  2. 界面原型设计工具(2)
  3. Sql server 事务的两种用法
  4. 如何在博客中插入背景音乐
  5. isnull pivot server sql_使用SQL Server中的“Pivot”将行转换为列
  6. 经典的10道C语言例题(含参考代码)
  7. 系统集成项目管理工程师 案例题【2021上】 总结
  8. 原声php 读取excel乱码_如何解决php读取excel乱码问题
  9. 2018.07.27
  10. ubuntu出现qt.qpa.plugin报错
  11. java for步长_Velocity模板循环支持自定义步长
  12. 电子取证volatility
  13. Multipart/form-data文件上传简介
  14. 在MacOS上构建以太坊开发环境
  15. 写给IT自学者的入门指南
  16. 苹果支付在哪里设置_微信刷脸支付怎么开通,在哪里设置?
  17. cannot import name ‘gcd’ from ‘fractions’
  18. echarts设置坐标轴标题的样式
  19. 强化学习(二)--让你轻松玩转生成对抗网络(GAN)与生成对抗模仿学习(GAIL)
  20. Matlab 求全要素生产率,关于使用DEAP2.1计算全要素生产率的问题

热门文章

  1. 根据表中的时间戳字段统计每天数据的数量
  2. Cookie对象知识总结
  3. jQuery的显示与隐藏
  4. html下拉列表框设置两个,怎么使用HTML option标签添加两个value
  5. 使用python开发网页游戏_如何用python开发游戏
  6. java线程锁机制_多线程之锁机制
  7. 一文聊透binlog、redo log、undo log
  8. SpringBoot停车场管理系统(附源码)
  9. 蓝桥杯java第五届决赛第一题--国王的遗产
  10. struts2控制标签(一)选择标签,iterator标签,append标签