05-06-2011 09:15 AM - edited 03-06-2019 04:56 PM
Hey guys I need help in EIGRP.
I move ip route 65.1.130.0 255.255.255.0 11.1.1.97 from static to eigrp and run show ip route 65.1.130.99 , it says
Toronto1#show ip route 65.1.130.199
% Network not in table
Toronto1# show ip route 65.1.130.199
Routing entry for 65.1.130.0/24
Known via "static", distance 1, metric 0
Redistributing via eigrp 1
Routing Descriptor Blocks:
* 11.1.1.97
Route metric is 0, traffic share count is 1
Here is the configuration. I want to move 65.1.130.199 to eigrp can any one help me out plz
router eigrp 1
redistribute connected route-map ACL_Toronto
redistribute static route-map 1111-TORONTO
network 65.1.130.0 0.0.0.255
network 149.75.192.0 0.0.63.255
network 155.229.185.0 0.0.0.255
network 172.24.0.0
network 172.16.0.0 0.15.255.255
network 192.168.0.0 0.0.255.255
no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 172.16.0.1
ip route 0.0.0.0 255.255.255.0 0.0.0.0
ip route 65.1.130.0 255.255.255.0 11.1.1.97
ip route 149.75.241.120 255.255.255.248 149.75.1.33
ip route 172.24.0.0 255.255.0.0 172.16.1.1
ip route 172.30.0.0 255.255.0.0 172.16.1.1
!
!
ip access-list extended ACL_Toronto
permit ip host 0.0.0.0 any
permit ip 69.90.64.0 0.0.0.3 any
permit ip 69.90.64.32 0.0.0.7 any
permit ip 69.90.64.8 0.0.0.3 any
route-map SOCAN-TORONTO permit 10
match ip address 1111-TORONTO
!
route-map ACL_Toronto permit 10
match ip address ACL_Toronto
Solved! Go to Solution.
05-06-2011 09:44 AM
Hi,
The route is already showing its redistributed via Eigrp. Please post show ip route x.x.x.x and check.
Toronto1# show ip route 65.1.130.199
Routing entry for 65.1.130.0/24
Known via "static", distance 1, metric 0
Redistributing via eigrp 1
Routing Descriptor Blocks:
* 11.1.1.97
This means the route already exist in redistributed into Eigrp, however, you need to add the seed metric under the Eigrp.
Just type:
router eigrp 1
default-metric 1 1 1 1 1
This should do it for you,
HTH
Mohamed
05-06-2011 11:38 AM
Hello Taimoor,
in order for an host in that IP subnet to be able to communicate with other sites, their default gateway needs additional static routes or if possible a default static route pointing to the router that injects the route into the EIGRP domain
for the MPLS SP once the route is in EIGRP you are doing the right job, but you need to fix the return path
Hope to help
Giuseppe
05-06-2011 09:36 AM
Hello Taimoor,
if you want to publish that prefix in EIGRP you need to redistribute it
access-list 11 permit 65.1.130.0.0 0.0.0.255
route-map STATIC permit 10
match ip address 11
!
router eigrp
redistribute static route-map STATIC
default-metric 10000 1000 255 1 1500
without removing the static route
the default-metric provides a seed metric to allow for redistribution
Hope to help
Giuseppe
05-06-2011 10:20 AM
thanks for reply Giuseppe,
I tried your method and here is the result
Toronto2#show ip route 65.1.130.199
Routing entry for 65.1.130.0/24
Known via "eigrp 1", distance 170, metric 512256, type external
Redistributing via eigrp 1
Last update from 192.168.20.98 on GigabitEthernet0/1, 00:04:27 ago
Routing Descriptor Blocks:
192.168.20.98, from 192.168.20.98, 00:04:27 ago, via GigabitEthernet0/1
Route metric is 512256, traffic share count is 1
Total delay is 10010 microseconds, minimum bandwidth is 10000 Kbit
Reliability 255/255, minimum MTU 1500 bytes
Loading 1/255, Hops 1
* 172.16.0.161, from 172.16.0.161, 00:04:27 ago, via GigabitEthernet0/0
Route metric is 512256, traffic share count is 1
Total delay is 10010 microseconds, minimum bandwidth is 10000 Kbit
Reliability 255/255, minimum MTU 1500 bytes
Loading 1/255, Hops 1
05-06-2011 11:38 AM
Hello Taimoor,
in order for an host in that IP subnet to be able to communicate with other sites, their default gateway needs additional static routes or if possible a default static route pointing to the router that injects the route into the EIGRP domain
for the MPLS SP once the route is in EIGRP you are doing the right job, but you need to fix the return path
Hope to help
Giuseppe
05-06-2011 09:44 AM
Hi,
The route is already showing its redistributed via Eigrp. Please post show ip route x.x.x.x and check.
Toronto1# show ip route 65.1.130.199
Routing entry for 65.1.130.0/24
Known via "static", distance 1, metric 0
Redistributing via eigrp 1
Routing Descriptor Blocks:
* 11.1.1.97
This means the route already exist in redistributed into Eigrp, however, you need to add the seed metric under the Eigrp.
Just type:
router eigrp 1
default-metric 1 1 1 1 1
This should do it for you,
HTH
Mohamed
05-06-2011 10:28 AM
hey Muhammad Sobair,
I tried your ways and it is showing this result
Toronto1#show ip route 65.1.130.199
Routing entry for 65.1.130.0/24
Known via "static", distance 1, metric 0
Routing Descriptor Blocks:
* 11.1.1.97
Route metric is 0, traffic share count is 1
05-06-2011 11:47 AM
Is 11.1.1.97 an EIGRP router in AS 1? If not, the reason your 'network 65.1.130.0 0.0.0.255' isn't working is because you're not getting 65.1.130.0/24 routes advertised back to you from any neighbors. A static route doesn't require any route advertisements for it to know where to send traffic to 65.1.130.0/24, EIGRP does.
This is probably why you needed the static route to begin with.
05-06-2011 11:34 AM
Hello Mohamed,
I had missed the fact the route was already distributed as you noted!
rated as it deserves I don't want to leave debts around
Best Regards
Giuseppe
05-06-2011 12:42 PM
thankx for help now I can see routes from other routers too but still my polycom unit not working.Polycom sucks all time
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide