HCIP 第一天

喝著奶茶敲實驗發表於2020-09-24

一、 實驗目的:

在這裡插入圖片描述

二、拓撲圖:

在這裡插入圖片描述

三、實驗思路:

1、合理規劃ip地址

         骨幹:192.168.1.0/27
         R1:192.168.1.32/27
                          192.168.1.32/28
                          192.168.1.48/28
         R2:192.168.1.64/27
                          192.168.1.64/28
                          192.168.1.80/28
         R3:192.168.1.96/27
         R4:192.168.1.128/27
                          192.168.1.128/28
                          192.168.1.144/28
         R5:192.168.1.160/27

2、配置ip地址

3、配置預設地址:

[R1]ip route-static 0.0.0.0 0 192.168.1.2
[R2]ip route-static 0.0.0.0 0 192.168.1.10
[R3]ip route-static 0.0.0.0 0 192.168.1.14
[R4]ip route-static 0.0.0.0 0 192.168.1.22
[R5]ip route-static 0.0.0.0 0 12.1.1.2

4、配置下一跳使得全網可達:

R1:
在這裡插入圖片描述

R2:
在這裡插入圖片描述

R3:
在這裡插入圖片描述

R4:
在這裡插入圖片描述

R5:
在這裡插入圖片描述

5、使用DHCP自動獲取IP地址:

[R3]dhcp enable 
[R3]ip pool a
[R3-ip-pool-a]net 192.168.1.96 mask 27
[R3-ip-pool-a]gateway-list 192.168.1.97
[R3-ip-pool-a]dns-list 8.8.8.8
[R3-ip-pool-a]q
[R3]int e0/0/0
[R3-Ethernet0/0/0]dhcp select global

在這裡插入圖片描述
在這裡插入圖片描述

6、修改優先順序:

[R4]ip route-static 0.0.0.0 0 192.168.1.22 preference 70
[R5]ip route-static 192.168.1.0 255.255.255.252 192.168.1.21 pr 70
[R5]ip route-static 192.168.1.4 255.255.255.252 192.168.1.21 pr 70
[R5]ip route-static 192.168.1.8 255.255.255.252 192.168.1.21 pr 70
[R5]ip route-static 192.168.1.12 255.255.255.252 192.168.1.21 pr 70
[R5]ip route-static 192.168.1.32 255.255.255.224 192.168.1.21 pr 70
[R5]ip route-static 192.168.1.64 255.255.255.224 192.168.1.21 pr 70
[R5]ip route-static 192.168.1.96 255.255.255.224 192.168.1.21 pr 70
[R5]ip route-static 192.168.1.128 255.255.255.224 192.168.1.21 pr 70

7、配置空介面防環:

[R1]ip route-static 0.0.0.0 0 192.168.1.2
[R2]ip route-static 0.0.0.0 0 192.168.1.10
[R3]ip route-static 0.0.0.0 0 192.168.1.14
[R4]ip route-static 0.0.0.0 0 192.168.1.18
[R5]ip route-static 0.0.0.0 0 1.1.1.2

8、埠對映:

[R5-GigabitEthernet0/0/2]nat static protocol tcp global current-interface 23 ins ide 192.168.1.1 30

9、開啟遠端登入服務:

在這裡插入圖片描述