How To Configure Static Routes Cisco Packet Tracer?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Static routing is a type of network routing technique where administrators manually add routes to the network’s routing table.
1. Go to the command prompt of each router and assign the IP address to its interfaces. Router #1:
interface fa0/0 ip address 192.168.1.1 255.255.255.0
no shutdown
Router #2:
interface fa0/0
ip address 192.168.2.1 255.255.255.0
no shutdown
2. On Router #1, add the static route.
Router #1:
ip route 192.168.2.0 255.255.255.0 192.168.1.2
3. On Router #2, add the static route:
Router #2:
ip route 192.168.1.0 255.255.255.0 192.168.2.2
4. Test the connectivity between two routers.
Router #1:
ping 192.168.2.1
Router #2: ping 192.168.1.1