Network Temelleri
  • DHCP(Dynamic Host Configuration Protocol)
    • DHCP Snooping
  • VLAN
    • Arp (Adress Resolution Protocol)
    • Inter vlan Routing
  • LAB
  • OSI Modeli
    • Page
  • Haberleşme Temelleri
    • Haberleşme Standartları
  • Ağ Cihazları
    • Dslam
    • SSG/SSR(BRAS)/BNG
    • Zte Bng
    • MPLS
  • Mpls Çalışma
    • LDP
    • Mpls
    • Mpls
    • Mpls Örnek
    • Mpls L2VPN
  • Etherchannel
  • OSPF
    • Ospf
    • Ospfv3
    • LAB
    • LAB
  • EIGRP
    • Lab
  • DNS (Domain Name Service)
  • LACP(Link aggregation Control Protocol)
  • Statik ve Dinamik Yönlendirme
  • STP(Spanning Tree Protocol)
    • Stp Topology and Implement RSTP
  • Telnet ve SSH
  • ACL( Access Control List)
  • GVRP
  • IPV6
  • Port Security
  • AAA
  • IP Routing ve IS
  • Multicast
  • QoS
  • Traffic Shaping and Traffic Police
  • LISP
  • IGMP
  • Wireless
  • Wireless Signals and Modulation
  • CDP ve LLDP
  • BGP
    • BGP Message Types:
    • LAB
    • Advanced BGP
  • VRF
    • Vrf Lab
  • Route Redistribution
  • Route Map Conditional Forwarding
  • NAT
  • Network Cihazı Güvenliği
  • SNMP
  • ZBF(Zone Based Firewall)
  • VPN
  • Fabric Technologies
  • Etherchannel
  • Kriptoloji
  • Linux
  • CCNA Test
  • CCNA R&S Dummies
  • CCNP
  • Nokia Mpls
    • ISIS
  • Siber Güvenlik
    • MSFVENOM KULLANARAK RAT OLUŞTURMA
  • GPON
  • Nmap Nedir
  • ISIS
Powered by GitBook
On this page
  1. Nokia Mpls

ISIS

PreviousNokia MplsNextMSFVENOM KULLANARAK RAT OLUŞTURMA

Last updated 2 years ago

Developed by the Cisco Link state routing protocol Uses the Djkstra Algoritm Not based on IP Integrated IS-IS supports IP Level-1 Routing: Within an area Level-2 Routing: Between areas

İnterface tanımlarını yaptıktan sonra isis tanımlarını yapacağız.

R2(config)#router isis 
R2(config-router)#is-type level-1
R2(config-router)#net ?
XX.XXXX. ... .XXX.XX  Network entity title (NET)
R2(config-router)#net 11.1111.1111.1111.1111.00

//İnterface altında isis konfigurasyonunu aktif ediyoruz.
R2(config)#interface fastEthernet 0/0
R2(config-if)#ip router isis
R2(config-if)#no shut


R3(config)#router isis
R3(config-router)#is-type level-1-2
R3(config-router)#net 11.1111.2222.2222.2222.00
R3#conf t
R3(config)#interface fastEthernet 0/0
R3(config-if)#ip router isis
R3(config-if)#no shut

R4(config)#router isis
R4(config-router)#is-type level-1-2
R4(config-router)#net 22.2222.3333.3333.3333.00
R4#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R4(config)#interface fa0/0
R4(config-if)#ip router isis

R4(config-if)#interface fa4/0
R4(config-if)#ip router isis


R5(config)#router isis
R5(config-router)#is-type level-1
R5(config-router)#net 22.2222.4444.4444.4444.00
R5(config-router)#exit
R5(config)#interface fa2/0
R5(config-if)#ip router isis

R4#sh isis neighbors

System Id      Type Interface   IP Address      State Holdtime Circuit Id
R5             L1   Fa4/0       203.0.113.5     UP    8        R5.01

Örnek 2