Unsolved

This post is more than 5 years old

2 Intern

 • 

192 Posts

4350

April 12th, 2012 15:00

how to define rip partners

i am configring a dell 6248p with rip protocol. i have already enabled it.

using command how would i define my RIP partners. ?

802 Posts

April 12th, 2012 16:00

The RIP protocol commands are discussed starting on page 1007 of this User CLI Guide.

support.dell.com/.../cli_en.pdf

and page 560 of the User Guide.

support.dell.com/.../ucg_en.pdf

If you are looking to list the networks like you would in a Cisco IOS there are not any.

Here are some examples :

console(config)# ip routing

console(config) # router rip

console(config-router)#  enable

console(config-router)#  exit

console(config)#interface vlan xx

console(config-if-vlan201)#ip address xxx.xxx.xxx.xxx /24

console(config-if-vlan201)#routing

console(config-if-vlan201)#ip rip

console(config-if-vlan201)#exit

console(config)#interface vlan xx

console(config-if-vlan202)#ip address xxx.xxx.xxx.xxx /24

console(config-if-vlan202)#routing

console(config-if-vlan202)#ip rip

console(config-if-vlan202)#end

console# show ip rip

RIP Admin Mode................................. Enable

Split Horizon Mode............................. Simple

Auto Summary Mode.............................. Disable

Host Routes Accept Mode........................ Enable

Global route changes........................... 0

Global queries................................. 0

Default Metric................................. Not configured

Default Route Advertise........................ 0

console#show ip rip interface vlan 201

Interface...................................... vlan 201

IP Address..................................... 172.16.201.2

Send version................................... RIP-2

Receive version................................ Both

RIP Admin Mode................................. Enable

Link State..................................... Up

Authentication Type............................ None

Bad Packets Received........................... 0

Bad Routes Received............................ 0

Updates Sent................................... 10

console#show ip route

Route Codes: R - RIP Derived, O - OSPF Derived, C - Connected, S - Static

      B - BGP Derived, IA - OSPF Inter Area

      E1 - OSPF External Type 1, E2 - OSPF External Type 2

      N1 - OSPF NSSA External Type 1, N2 - OSPF NSSA External Type 2

C      172.16.201.0/24 [0/0] directly connected,   vlan 201

C      172.16.202.0/24 [0/0] directly connected,   vlan 202

R      172.16.203.0/24 [15/2] via 172.16.202.2,   vlan 202

No Events found!

Top