
Task 4.16 RIPv2 Default Routing
Hi,
I'm having trouble with this task. Even though I followed the configuration per the solution, I do not see default route show up on R1 from R6.
(note, I'm using default RIP configs given and I have disabled split horizon on R5's Serial interface -- configuration from previous steps is not present)
Rack1R1#sh ip route rip | incl ( 0.0.0.0)
Rack1R1#
Here's my config for R6:
Current configuration : 1759 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Rack1R6
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 5
!
!
ip cef
!
!
no ip domain lookup
!
key chain RIP
key 1
key-string CCIE
!
interface Loopback0
ip address 150.1.6.6 255.255.255.0
!
interface GigabitEthernet0/0
no ip address
duplex auto
speed auto
!
interface GigabitEthernet0/0.67
encapsulation dot1Q 67
ip address 155.1.67.6 255.255.255.0
!
interface GigabitEthernet0/0.146
encapsulation dot1Q 146
ip address 155.1.146.6 255.255.255.0
ip rip authentication key-chain RIP
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
!
interface FastEthernet0/2/0
switchport access vlan 77
!
interface FastEthernet0/2/1
!
interface FastEthernet0/2/2
!
interface FastEthernet0/2/3
!
interface Serial0/0/0
ip address 54.1.1.6 255.255.255.0
encapsulation frame-relay
frame-relay map ip 54.1.1.254 101 broadcast
!
interface Serial0/0/1
no ip address
clock rate 2000000
!
interface Vlan1
no ip address
interface Vlan77
ip address 172.26.118.114 255.255.254.0
!
router rip
version 2
network 54.0.0.0
network 150.1.0.0
network 155.1.0.0
default-information originate route-map DEFAULT_TO_R1
no auto-summary
!
ip route 0.0.0.0 0.0.0.0 172.26.118.1
!
!
no ip http server
no ip http secure-server
!
!
route-map DEFAULT_TO_R1 permit 10
set interface GigabitEthernet0/0.146
--
your help will be appreciated.
thanks
Comments
I could be wrong, but isnt it "match" interface rather than "set"?
EDIT - I just looked it up and 'set' is right...sorry.
Remove the route-map and try just normal default origination and see
what happens.
Set interface is the correct syntax though:
http://www.cisco.com/en/US/docs/ios/iproute/command/reference/irp_rip.html#wp1011008
HTH,
Brian McGahan, CCIE #8593 (R&S/SP/Security)
[email protected]
Internetwork Expert, Inc.
http://www.InternetworkExpert.com
Toll Free: 877-224-8987 x 705
Outside US: 775-826-4344 x 705
Online Community: http://www.IEOC.com
CCIE Blog: http://blog.internetworkexpert.com
Paul Alexander wrote:
I redid all the configs again and started from scratch..it worked. Not
sure what I had done earlier to mess things up.
thanks for ur help
Brian McGahan wrote:
I get the following error when trying to complete this task. The routers in question are running 12.4.18-19 adventerprise IOS and are a 3640 and a 2610XM. Any ideas?
Rack1R6(config)#route-map origin permit 10
Rack1R6(config-route-map)#set interface Ethernet0/0.146
% route-map:can not set interface.
% Use P2P interfaces for set interface clause
Rack1R6(config-route-map)#set interface Ethernet0/0
% route-map:can not set interface.
% Use P2P interfaces for set interface clause
Rack1R6(config-route-map)#
AccessServer#1
[Resuming connection 1 to r1 ... ]
Rack1R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Rack1R1(config)#route-map origin permit 10
Rack1R1(config-route-map)#set interface Fastethernet0/0
% route-map:can not set interface.
% Use P2P interfaces for set interface clause
Rack1R1(config-route-map)#
It looks like some sort of version issue or bug:
3640(config)#route-map SET
3640(config-route-map)#set interface Ethernet0/0
3640(config-route-map)#end
Jul 26 12:11:58.175: %SYS-5-CONFIG_I: Configured from console by console
3640#show route-map
route-map SET, permit, sequence 10
Match clauses:
Set clauses:
interface Ethernet0/0
Policy routing matches: 0 packets, 0 bytes
3640#sh ver | in IOS
Cisco IOS Software, 3600 Software (C3640-JK9O3S-M), Version 12.4(13a),
RELEASE S
OFTWARE (fc1)
Brian McGahan, CCIE #8593 (R&S/SP/Security)
[email protected]
Internetwork Expert, Inc.
http://www.InternetworkExpert.com
Toll Free: 877-224-8987 x 705
Outside US: 775-826-4344 x 705
Online Community: http://www.IEOC.com
CCIE Blog: http://blog.internetworkexpert.com
apd123 wrote: