[[oktatas:hálózat:cisco|< Cisco]]
====== Egyterületű OSPF haladó ======
* **Szerző:** Sallai András
* Copyright (c) Sallai András, 2017
* Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC Attribution-Share Alike 4.0 International]]
* Web: https://szit.hu
===== Szimpla beállítás =====
172.16.2.0/24
------
|
g0/0|.1 ,------------------INTERNET
,---,`
/ \
RID:2.2.2.2 / \ s0/0/1 .9
/s0/0/0 \
/ .2 \
/ \
172.16.3.0/30 \
/ \
/s0/0/0 \ RID 3.3.3.3
RID: 1.1.1.1 \ .10
-----------------------
g0/0| s0/0/1 .5 g0/0|.1
.1 | 192.168.10.4/30 |
| |
----- -----
172.16.1.0/24 192.168.1.0/24
R1(config)# interface GigabitEthernet0/0
R1(config-if)# bandwidth 1000000
R1(config-if)# exit
R1(config)# router ospf 10
R1(config-router)# router-id 1.1.1.1
R1(config-router)# auto-cost reference-bandwidth 1000
R1(config-router)# network 172.16.1.0 0.0.0.255 area 0
R1(config-router)# network 172.16.3.0 0.0.0.3 area 0
R1(config-router)# network 192.168.10.4 0.0.0.3 area 0
R1(config-router)#
R1(config-router)# passive-interface g0/0
R2(config)# interface GigabitEthernet0/0
R2(config-if)# bandwidth 1000000
R2(config-if)# exit
R2(config)# router ospf 10
R2(config-router)# router-id 2.2.2.2
R2(config-router)# auto-cost reference-bandwidth 1000
R2(config-router)# network 172.16.2.1 0.0.0.0 area 0
R2(config-router)# network 172.16.3.2 0.0.0.0 area 0
R2(config-router)# network 192.168.10.9 0.0.0.0 area 0
R2(config-router)#
R2(config-router)# passive-interface g0/0
===== Ellenőrzés =====
R1# show ip ospf neighbor
R1# show ip protocols
R1# show ip ospf
R1# show ip ospf interface
R1# show ip ospf interface brief
===== OSPFv3 beállítás =====
R1(config)# ipv6 router ospf 10
R1(config-rtr)# router-id 1.1.1.1
R1(config-rtr)# auto-cost reference-bandwidth 1000
R1(config-rtr)#
R1(config-rtr)# interface GigabitEthernet 0/0
R1(config-if)# bandwidth 1000000
R1(config-if)# ipv6 ospf 10 area 0
R1(config-if)#
R1(config-if)# interface Serial0/0/0
R1(config-if)# ipv6 ospf 10 area 0
R1(config-if)#
R1(config-if)# interface Serial0/0/1
R1(config-if)# ipv6 ospf 10 area 0
R1(config-if)# end
R1#
R2(config)# ipv6 router ospf 10
R2(config-rtr)# router-id 2.2.2.2
R2(config-rtr)# auto-cost reference-bandwidth 1000
R2(config-rtr)#
R2(config-rtr)# interface GigabitEthernet 0/0
R2(config-if)# bandwidth 1000000
R2(config-if)# ipv6 ospf 10 area 0
R2(config-if)#
R2(config-if)# interface Serial0/0/0
R2(config-if)# ipv6 ospf 10 area 0
R2(config-if)#
R2(config-if)# interface Serial0/0/1
R2(config-if)# ipv6 ospf 10 area 0
R2(config-if)# end
R2#
===== OSPFv3 ellenőrzése =====
R1# show ipv6 ospf neighbor
R1# show ipv6 protocols
R1# show ipv6 route ospf
R1# show ipv6 interface brief
===== OSPF hálózatípusok =====
* pont-pont
* szórásos
* nem szórásos
* pont-többpont
* virtuális
===== Többszörös szomszédsági viszonyok =====
|
|
|
|
|
--------------===---------------
|
|
|
|
|
Így szomszédsági viszonyok:
* R1 <--> R2
* R1 <--> R3
* R1 <--> R4
* R2 <--> R3
* R2 <--> R4
* R3 <--> R4
Kinevezzük R1 routert designated routernek.
|
|
|
|
DR |
--------------===---------------
|
|
|
|
|
Így szomszédsági viszonyok:
* R1 <--> R2
* R1 <--> R3
* R1 <--> R4
A DR/BDR választás pont-pont hálózatban nem megy végbe. Csakis többes hozzáférésű hálózatban.
Folytatása következik ... (5.1.2.5)