Sie sind auf Seite 1von 7

EIGRP ROUTING Characteristics

A classless version of IGRP. EIGRP includes several features that are not commonly found in other distance vector routing protocols like RIP (RIPv1 and RIPv2) and IGRP. These features include: Reliable Transport Protocol (RTP) Bounded Updates Diffusing Update Algorithm (DUAL) Establishing Adjacencies Neighbor and Topology Tables Although EIGRP may act like a link-state routing protocol, it is still a distance vector routing protocol.

OSPF ROUTING Characteristics


Provides authentication of routing messages Enables load balancing by allowing traffic to be split evenly across routes with equal cost Type-of-Service routing allows to setup different routes dependent on the TOS field Supports subnetting Supports multicasting Allows hierarchical routing

Device
R1 R1 R1 R2 R2 R2 R3 R3 R3 PC1 PC2 PC3

Interface
F0/0 S0/0/0 S0/0/1 F0/0 S0/0/0 S0/0/1 F0/0 S0/0/0 S0/0/1 NIC NIC NIC

IP Address
172.16.1.17 192.168.10.1 192.168.10.5 10.10.10.1 192.168.10.2 192.168.10.9 172.16.1.33 192.168.10.6 192.168.10.10 172.16.1.16 10.10.10.0 172.16.1.32

Subnet Mask
255.255.255.240 255.255.255.252 255.255.255.252 255.255.255.0 255.255.255.252 255.255.255.252 255.255.255.248 255.255.255.252 255.255.255.252 255.255.255.0 255.255.255.0 255.255.255.0

Gateway
N\A N\A N\A N\A N\A N\A N\A N\A N\A 172.16.1.1 172.16.2.1 192.168.1.1

Router 1
Router1> Router1>enable Router1#configure terminal Router1(config)#interface serial 0/0/0 Router1(config-if)#clock rate 64000 {this command sets the clock rate on DCE end} Router1(config-if)#exit Router1(config)#interface serial 0/0/0 Router1(config-if)#ip address 192.168.10.1 255.255.255.252 Router1(config-if)#no shutdown Router1(config-if)#exit Router1(config)#interface serial 0/0/1 Router1(config-if)#ip address 192.168.10.5 255.255.255.252 Router1(config-if)#no shutdown Router1(config-if)#exit Router1(config)#interface fastEthernet 0/0 Router1(config-if)#ip address 172.16.1.17 255.255.255.240 Router1(config-if)#no shutdown Router1(config-if)#exit Router1(config)#router ospf 1 Router1(config-router)#network 172.16.1.16 0.0.0.15 area 0 Router1(config-router)#network 192.168.10.0 0.0.0.3 area 0 Router1(config-router)#network 192.168.10.4 0.0.0.3 area 0 Router1#end

Router 2
Router2>enable Router2#configure terminal Router2(config)#interface serial 0/0/1 Router2(config-if)#clock rate 64000 Router2(config-if)#ip address 192.168.10.9 255.255.255.252 Router2(config-if)#no shutdown

Router2(config-if)#exit Router2(config)#interface serial 0/0/0 Router2(config-if)#ip address 192.168.10.2 255.255.255.252 Router2(config-if)#no shutdown Router2(config-if)#exit Router2(config)#interface fastEthernet 0/0 Router2(config-if)#ip address 10.10.10.1 255.255.255.0 Router2(config-if)#no shutdown Router2(config-if)#exit Router2(config)#router ospf 1 Router2(config-router)#network 10.10.10.0 0.0.0.255 area 0 Router2(config-router)#network 192.168.10.0 0.0.0.3 area 0 Router2(config-router)#network 192.168.10.8 0.0.0.3 area 0

Router2(config-router)#end Router2(config-router)#exit Router2(config)#^Z

Router2#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK]

Router 3
Router3>enable Router3# Router3#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router3(config)#interface serial 0/0/0 Router3(config-if)#clock rate 64000 Router3(config-if)#ip address 192.168.10.6 255.255.255.252 Router3(config-if)#no shutdown Router3(config-if)#exit Router3(config)#interface serial 0/0/1 Router3(config-if)#ip address 192.168.10.10 255.255.255.252 Router3(config-if)#no shutdown Router3(config-if)#exit Router3(config)#interface fastEthernet 0/0 Router3(config-if)#ip address 172.16.1.33 255.255.255.248 Router3(config-if)#no shutdown Router3(config-if)#exit Router3(config)#router eigrp 1 Router3(config-router)#network 192.168.1.0

Router3(config-router)#network 172.16.1.32 0.0.0.7 area 0 Router3(config-router)#network 192.168.10.4 0.0.0.3 area 0 Router3(config-router)#network 192.168.10.8 0.0.0.3 area 0

Router3(config-router)#end Router3#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] Router3# Some Useful Commands Router1#show controllers serial 0/0/0 {The command shows us the DCE and DTE ends of the router} Router1#show ip protocol {display the information about the current routing protocol} >ping ip address {We can use ping command in command prompt to check the connection between the computers} Router1#copy running-config startup-config {this command saves running configuration as startup configuration in the RAM} Router1#show ip route {shows the routing table which includes directly and remotely connected routes}

Das könnte Ihnen auch gefallen