İki Dell Router Arasında OSPF Protokolünü Adım Adım Yapılandırmak
1. Adım: IP Adreslerini Yapılandırma
İki Dell Router arasındaki bağlantı için kullanılacak IP adreslerini yapılandırın. Örneğin, Router A'nın 192.168.1.1/24 IP adresi ve Router B'nin 192.168.1.2/24 IP adresi olabilir.
2. Adım: OSPF Protokolünü Etkinleştirme
Her iki Dell Router'da da OSPF protokolünü etkinleştirin. Aşağıdaki komutlar kullanılabilir:
Router_A# configure terminal
Router_A(config)# router ospf 1
Router_A(config-router)# network 192.168.1.0 0.0.0.255 area 0
Router_A(config-router)# end
Router_A# show ip ospf neighbor
Router_B# configure terminal
Router_B(config)# router ospf 1
Router_B(config-router)# network 192.168.1.0 0.0.0.255 area 0
Router_B(config-router)# end
Router_B# show ip ospf neighbor
Bu örnekte, OSPF protokolü 1 numaralı işlem kimliği (process ID) ile
yapılandırılmıştır. 192.168.1.0/24 ağı OSPF için yapılandırılmıştır ve 0 numaralı bölgeye eklenmiştir. show ip ospf neighbor komutu, her bir yönlendiricinin OSPF komşularını listeler.
3. Adım: Senkronize Sağlama (Authentication) Bilgilerini Eşleştirme (Opsiyonel)
Eğer OSPF authentication kullanılacaksa, iki Dell Router arasındaki senkronize sağlama (authentication) bilgilerinin eşleştirilmesi gerekir. Aşağıdaki örnek komutlar kullanılabilir:
Router_A# configure terminal
Router_A(config)# router ospf 1
Router_A(config-router)# area 0 authentication message-digest
Router_A(config-router)# key 1
Router_A(config-router)# exit
Router_A(config)# interface GigabitEthernet 0/0
Router_A(config-if)# ip ospf message-digest-key 1 md5
Router_A(config-if)# exit
Router_B# configure terminal
Router_B(config)# router ospf 1
Router_B(config-router)# area 0 authentication message-digest
Router_B(config-router)# key 1
Router_B(config-router)# exit
Router_B(config)# interface GigabitEthernet 0/0
Router_B(config-if)# ip ospf message-digest-key 1 md5
Router_B(config-if)# exit
Bu örnekte, area 0 authentication message-digest komutu, 0 numaralı bölgedeki OSPF paketlerinin mesaj özeti doğrulama (message-digest authentication) kullanarak güvenliği sağlamasını belirtir. key 1 komutu, kullanılacak olan authentication anahtarının kimliğidir.
Router_A# configure terminal
Router_A(config)# router ospf 1
Router_A(config-router)# area 0 authentication message-digest
Router_A(config-router)# key 1
Router_A(config-router)# exit
Router_A(config)# interface GigabitEthernet 0/0
Router_A(config-if)# ip ospf message-digest-key 1 md5
Router_A(config-if)# exit
Router_B# configure terminal
Router_B(config)# router ospf 1
Router_B(config-router)# area 0 authentication message-digest
Router_B(config-router)# key 1
Router_B(config-router)# exit
Router_B(config)# interface GigabitEthernet 0/0
Router_B(config-if)# ip ospf message-digest-key 1 md5
Router_B(config-if)# exit
Bu örnekte, area 0 authentication message-digest komutu, 0 numaralı bölgedeki OSPF paketlerinin mesaj özeti doğrulama (message-digest authentication) kullanarak güvenliği sağlamasını belirtir. key 1 komutu, kullanılacak olan authentication anahtarının kimliğidir. ip ospf message-digest-key 1 md5
4. Adım: Arayüzleri Yapılandırma
Her iki Dell Router'da da OSPF protokolü yapılandırıldıktan sonra, arayüzleri yapılandırmak için aşağıdaki adımlar izlenebilir:
Router_A# configure terminal
Router_A(config)# interface GigabitEthernet 0/0
Router_A(config-if)# ip address 192.168.1.1 255.255.255.0
Router_A(config-if)# ip ospf 1 area 0
Router_A(config-if)# exit
Router_B# configure terminal
Router_B(config)# interface GigabitEthernet 0/0
Router_B(config-if)# ip address 192.168.1.2 255.255.255.0
Router_B(config-if)# ip ospf 1 area 0
Router_B(config-if)# exit
Bu örnekte, ip address komutu, her bir Dell Router'ın arayüzüne IP adresi verir. ip ospf 1 area 0 komutu, OSPF protokolünü bu arayüzde etkinleştirir ve 0 numaralı bölgeye ekler.
5. Adım: Konfigürasyonun Doğruluğunu Test Etme
Her iki Dell Router'da da OSPF protokolünü yapılandırmak için adımlar tamamlandıktan sonra, konfigürasyonun doğruluğunu test etmek için aşağıdaki komutlar kullanılabilir:
Router_A# show ip route
Router_A# show ip ospf neighbor
Router_A# show ip ospf interface
Router_B# show ip route
Router_B# show ip ospf neighbor
Router_B# show ip ospf interface
Bu komutlar, her bir Dell Router'ın OSPF tablosunu, komşularını ve arayüzleri hakkında bilgi sağlar.
Bu şekilde iki Dell Router arasında OSPF protokolünü yapılandırabilir ve bağlantılarının yönlendirmesi için OSPF tablolarını kullanabilirsiniz. Bununla birlikte, diğer ağ ayarlarına bağlı olarak, OSPF protokolünün yapılandırılması için daha fazla adım gerekebilir.
Özellikle, OSPF protokolü için belirlenen numara olan "1" değeri, farklı OSPF numaraları belirlemek için değiştirilebilir. Ayrıca, birden fazla bölge kullanarak daha karmaşık bir OSPF topolojisi oluşturmak mümkündür.
HASAN KAYAPINAR
HAKKIMDA