Skip to content

Instantly share code, notes, and snippets.

@Timur00Kh
Created April 10, 2019 21:54
Show Gist options
  • Save Timur00Kh/f289e62bede3536d093b32a81aba1d8f to your computer and use it in GitHub Desktop.
Save Timur00Kh/f289e62bede3536d093b32a81aba1d8f to your computer and use it in GitHub Desktop.

#1 Разделение адресного пространства

Деление сети

Сеть A

[AR1] int gi0/0/0
[AR1] ip add 192.168.10.62 26

[AR2] int gi0/0/0
[AR2] ip add 192.168.10.61 26

Сеть B

[AR3] int gi0/0/1
[AR3] ip add 192.168.10.65 26

[AR1] int gi0/0/1
[AR1] ip add 192.168.10.126 26

Сеть C

[AR4] int gi0/0/1
[AR4] ip add 192.168.10.129 26

[AR2] int gi0/0/1
[AR2] ip add 192.168.10.190 26

Сети D, E, H

[AR3] int lo0
[AR3] ip add 192.168.10.193 28
[AR3] int lo1
[AR3] ip add 192.168.10.209 28
[AR3] int gi0/0/0
[AR3] ip add 192.168.10.225 28

[AR4] int gi0/0/0
[AR4] ip add 192.168.10.238 28

Сети F, G

[AR4] int lo1
[AR4] ip ad 192.168.10.241 29
[AR4] int lo2
[AR4] ip ad 192.168.10.249 29

#2 VRRP

VRRP группа с номером 1 в сети А

[AR1] int gi0/0/0
[AR1] vrrp vrid 1 virtual-ip 192.168.10.1 26

[AR2] int gi0/0/0
[AR2] vrrp vrid 1 virtual-ip 192.168.10.1 26

Узлам статически присвоить 10й и 11й IP адрес диапазона и назначить шлюз по умолчанию.

PC1

PC1

PC2

PC2

#3 OSPF

Для AR1, AR2, AR3

[Huawei] ospf 1 
[Huawei-ospf-1] area 1
[Huawei-ospf-1-area-0.0.0.1] net 192.138.10.0 0.0.0.63
[Huawei-ospf-1-area-0.0.0.1] net 192.138.10.64 0.0.0.63
[Huawei-ospf-1-area-0.0.0.1] net 192.138.10.192 0.0.0.15

#4 RIP

На AR2 и AR4

[Huawei] rip 1
[Huawei-rip-1] version 2
[Huawei-rip-1] network 192.168.10.0 

#5 RIP

На AR2 (видимо, потому что он и в OSPF и в RIP)

[Huawei]ospf 1
[Huawei-ospf-1]import rip 1 type 1
[Huawei-ospf-1]rip 1
[Huawei-rip-1]import ospf 1  

На AR3 (По заданию)

[Huawei]ospf 1
[Huawei-ospf-1]import direct type 2

Display commands

- dis cur (Просмотр текущей конфигурации роутера)
- display ip(v6)routing table (Просмотр таблиц маршрутизации)
- display ip routing table | include RIP
- display rip(ng) 1 database (Выполнить просмотр информации процесса RIP(ng))
- display ospf brief (Выполнить просмотр состояния OSPF)
- display ospf peer (Соседи)
- display ospf interface (Интерфейс)
- display ospf routing (Таблица маршрутизации OSPF)
- display ipv6 routing-table protocol ospfv3 (Выполнить просмотр информации процесса OSPF)
- display ospfv3 lsdb intra-prefix (Выполнить просмотр lsdb)
- display ospfv3 lsdb inter-prefix (Выполнить просмотр lsdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment