Difference between revisions of "RIP Cisco IOS"
From Teknologisk videncenter
m |
m |
||
Line 6: | Line 6: | ||
|- | |- | ||
|} | |} | ||
+ | [http://mars.tekkom.dk/data/IP_TECH_II/RIP1.pkt Packet tracer template] | ||
+ | |||
Below is a full configuration of the shown network. The commands used to configure RIP are shown in blue. | Below is a full configuration of the shown network. The commands used to configure RIP are shown in blue. | ||
==Configuration of R1== | ==Configuration of R1== | ||
Line 22: | Line 24: | ||
ip address 192.168.100.1 255.255.255.0 | ip address 192.168.100.1 255.255.255.0 | ||
! | ! | ||
− | interface fastethernet 0 | + | interface fastethernet 1/0 |
no shut | no shut | ||
ip address 10.10.0.1 255.255.255.252 | ip address 10.10.0.1 255.255.255.252 | ||
! | ! | ||
− | interface fastethernet 0 | + | interface fastethernet 2/0 |
ip address 10.10.0.5 255.255.255.252 | ip address 10.10.0.5 255.255.255.252 | ||
! | ! | ||
Line 50: | Line 52: | ||
ip address 192.168.64.1 255.255.255.0 | ip address 192.168.64.1 255.255.255.0 | ||
! | ! | ||
− | interface fastethernet 0 | + | interface fastethernet 1/0 |
no shut | no shut | ||
ip address 10.10.0.6 255.255.255.252 | ip address 10.10.0.6 255.255.255.252 | ||
! | ! | ||
− | interface fastethernet 0 | + | interface fastethernet 2/0 |
ip address 10.10.0.9 255.255.255.252 | ip address 10.10.0.9 255.255.255.252 | ||
! | ! | ||
Line 78: | Line 80: | ||
ip address 192.168.72.1 255.255.255.0 | ip address 192.168.72.1 255.255.255.0 | ||
! | ! | ||
− | interface fastethernet 0 | + | interface fastethernet 1/0 |
no shut | no shut | ||
ip address 10.10.0.10 255.255.255.252 | ip address 10.10.0.10 255.255.255.252 | ||
Line 97: | Line 99: | ||
ip nat inside | ip nat inside | ||
! | ! | ||
− | interface fastethernet 0 | + | interface fastethernet 1/0 |
no shut | no shut | ||
ip address dhcp | ip address dhcp |
Revision as of 09:43, 25 September 2013
RIP example
Below is a full configuration of the shown network. The commands used to configure RIP are shown in blue.
Configuration of R1
hostname R1
!
ip dhcp excluded-address 192.168.100.1 192.168.100.99
ip dhcp excluded-address 192.168.100.200 192.168.100.255
!
ip dhcp pool LOCATION1
network 192.168.100.0 255.255.255.0
default-router 192.168.100.1
!
interface fastethernet 0/0
no shut
ip address 192.168.100.1 255.255.255.0
!
interface fastethernet 1/0
no shut
ip address 10.10.0.1 255.255.255.252
!
interface fastethernet 2/0
ip address 10.10.0.5 255.255.255.252
!
<notice>router rip
version 2
network 10.0.0.0
network 192.168.100.0</notice>
!
Configuration of R2
hostname R2
!
ip dhcp excluded-address 192.168.64.1 192.168.64.99
ip dhcp excluded-address 192.168.64.200 192.168.64.255
!
ip dhcp pool LOCATION2
network 192.168.64.0 255.255.255.0
default-router 192.168.64.1
!
interface fastethernet 0/0
no shut
ip address 192.168.64.1 255.255.255.0
!
interface fastethernet 1/0
no shut
ip address 10.10.0.6 255.255.255.252
!
interface fastethernet 2/0
ip address 10.10.0.9 255.255.255.252
!
<notice>router rip
version 2
network 10.0.0.0
network 192.168.64.0</notice>
!
Configuration of R3
hostname R3
!
ip dhcp excluded-address 192.168.72.1 192.168.72.99
ip dhcp excluded-address 192.168.72.200 192.168.72.255
!
ip dhcp pool LOCATION3
network 192.168.72.0 255.255.255.0
default-router 192.168.72.1
!
interface fastethernet 0/0
no shut
ip address 192.168.72.1 255.255.255.0
!
interface fastethernet 1/0
no shut
ip address 10.10.0.10 255.255.255.252
!
<notice>router rip
version 2
network 10.0.0.0
network 192.168.64.0</notice>
!
Configuration of R4
hostname R4
!
interface fastethernet 0/0
no shut
ip address 10.10.0.2 255.255.255.252
ip nat inside
!
interface fastethernet 1/0
no shut
ip address dhcp
ip nat outside
!
router rip
version 2
default-information originate
network 10.0.0.0
!
ip nat inside source list 38 interface FastEthernet0/1 overload
!
access-list 38 remark Permit traffic from RFC1918 private net
access-list 38 permit 10.0.0.0 0.255.255.255
access-list 38 permit 172.16.0.0 0.15.255.255
access-list 38 permit 192.168.0.0 0.0.255.255
RIP on Cisco equipment
RIP is implemented on Ciscos Routers and layer 3 Switches. For in-depth explanation of RIP