You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 10 - Configuring Static Routing in Cisco Packet Tracer
1
+
# 9 - Configuring RIP Routing in Cisco Packet Tracer
2
2
3
-
This tutorial is the tenth in our Cisco Packet Tracer series and focuses on **static routing**, a foundational technique for routing traffic between networks. Unlike RIP, where routers exchange routing tables automatically, static routes must be manually defined on each router, giving you full control over path selection.
3
+
This tutorial is the ninth in our Cisco Packet Tracer series and introduces **dynamic routing** using the **Routing Information Protocol (RIP)**. Unlike static routes, RIP enables routers to exchange routing information automatically, making it easier to scale and manage networks with multiple paths.
4
4
5
5
We'll use the same three-router topology from the previous tutorial, manually configure IP addresses, and add static routes to ensure full connectivity between all PCs.
Now we will connect the devices using appropriate cables:
67
67
68
-
| From | To | Port/Interface |
69
-
| ---- | -- | -------------- |
70
-
| PC0 | S1 | fa0/1 |
71
-
| PC1 | S1 | fa0/2 |
72
-
| S1 | R0 | fa0/24 → fa2/0 |
73
-
| PC2 | S2 | fa0/1 |
74
-
| PC3 | S2 | fa0/2 |
75
-
| S2 | R1 | fa0/24 → fa2/0 |
76
-
| PC4 | S3 | fa0/1 |
77
-
| PC5 | S3 | fa0/2 |
78
-
| S3 | R2 | fa0/24 → fa2/0 |
68
+
```{admonition} Note
69
+
:class: note
70
+
For clarity and future expansion, I recommend connecting the switch to the router using the last available port on the switch (for example, fa0/24). This keeps the lower-numbered ports free for connecting PCs and other end devices.
Make a save of your Packet Tracer file now before you start configuring the router, we will be using this same set up in the next few tutorials as we explore different routing protocols.
134
+
```
135
+
120
136
---
121
137
122
138
## Part 4 – Router Configuration
123
139
124
-
Here, we manually add static routes to each router.
140
+
Each router in this network handles two types of connections:
141
+
142
+
- LAN-side via FastEthernet2/0, connected to a local switch
143
+
- WAN-side via Serial interfaces, connected to neighbouring routers
144
+
- All routers will be configured with RIP version 1 for dynamic routing
125
145
126
146
```{admonition} Note
127
147
:class: note
128
-
Here the static routing configuration is done manually. For example in R0, we add routes to R1 and R2 via the lines -
148
+
The RIP routing configuration is performed using the following commands:
129
149
130
-
- `ip route 192.168.2.0 255.255.255.0 10.0.0.2`
131
-
- `ip route 192.168.3.0 255.255.255.0 10.0.0.2`
150
+
- `router rip` enters RIP configuration mode.
151
+
- `version 1` specifies the use of RIP version 1.
152
+
- `network 192.168.1.0` and `network 10.0.0.0` tell the router to advertise and listen for RIP updates on interfaces belonging to these networks.
132
153
133
-
This means that R0 will know how to reach the networks of R1 and R2 through the serial link to R1 (10.0.0.2).
154
+
This enables the router to automatically share and learn routes for the specified networks with other RIP-enabled routers, eliminating the need for manual static routes.
134
155
```
135
156
136
157
### Step 4.1 – R0 Configuration
137
158
159
+
```{admonition} Tip
160
+
:class: tip
161
+
The shorthand for `configure terminal` is `conf t`, which can save time when entering commands.
0 commit comments