cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1939
Views
10
Helpful
9
Replies

How do I route traffic from a cell network into a regular LAN/WAN etc?

JustNxck
Level 1
Level 1

cell network.PNG

I'm new so excuse the crudeness if any with my design.

 

I have a barebones simple cell network here. I'm trying to route traffic from the laptop to the greater network pass the router.

I can ping the router infront the laptop but I can send a packet from the laptop to any networks past the router.

Currently using rip routing as there's not many networks. The router can ping other networks just fine behind there respective routers but not this laptop I have behind it.

Help!

Is it a routing issue? Issue with IP assignments? Network Design flaw?

1 Accepted Solution

Accepted Solutions

Hi

 I fixed the ping from laptop connected on mobile to laptop 192.168.1.2 connected on cabling network.

 

The problem was on routers. The router that connect to the mobile network (router3) needs to have an static route point to the COS (Central Office Server)

ip route 172.16.0.0 255.255.0.0. 192.168.3.2

 

This way, when someone tries to reach the mobile network, it knows that it must send to the COS.

 

But, the Router3 also need to inform others router that it is the entry point to 172.16.0.0 network so that everyone knows where to send the packet.

For that, you need to redistribute the static route you created:

router rip

version 2

redistribute static

 

Now, all router speaking RIP knows that the network 172.16.0.0 can be found on Router 3.

From that on, you can ping from um PC to the other.

 

View solution in original post

9 Replies 9

Hi

 If you attach the pkt file here, it better to help. Zipp it first.

As per your description, you need to add routes .  Keep in mind that the hosts your are pinging need to know how to reply to the laptop.

here ya go, theres also an issue with the network connected to the firewall im still trying to solve as well but just focus on the cell network

Hi

 I fixed the ping from laptop connected on mobile to laptop 192.168.1.2 connected on cabling network.

 

The problem was on routers. The router that connect to the mobile network (router3) needs to have an static route point to the COS (Central Office Server)

ip route 172.16.0.0 255.255.0.0. 192.168.3.2

 

This way, when someone tries to reach the mobile network, it knows that it must send to the COS.

 

But, the Router3 also need to inform others router that it is the entry point to 172.16.0.0 network so that everyone knows where to send the packet.

For that, you need to redistribute the static route you created:

router rip

version 2

redistribute static

 

Now, all router speaking RIP knows that the network 172.16.0.0 can be found on Router 3.

From that on, you can ping from um PC to the other.

 

Thank you for the explanation! Unfortunately I'm running an older version of packet tracer so I can't open it but I'll try and follow your explanation when I get back to my PC and get back to you.

Hello,

 

actually (and it might be a version 'thing', I am using 8.1.1.), I can reach anything from the laptop with IP address 172.16.0.100,even without adding and redistributing the static route. Odd...

 

I used the configs below (important parts marked in bold). I took some redundancies out of the RIP configurations...

 

Router0#sh run
Building configuration...

Current configuration : 1041 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router0
!
ip dhcp excluded-address 192.168.1.5
ip dhcp excluded-address 192.168.1.4
ip dhcp excluded-address 192.168.1.1 <-- Router0 was complaining about a duplicate IP address
!
ip dhcp pool my_officelan
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 8.8.8.8
!
ip cef
no ipv6 cef
!
interface FastEthernet0/0
ip address 192.168.1.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet1/0
no ip address
duplex auto
speed auto
shutdown
!
interface Serial2/0
ip address 10.0.0.1 255.255.255.0
!
interface Serial3/0
ip address 11.0.0.1 255.255.255.0
clock rate 2000000
!
interface FastEthernet4/0
no ip address
shutdown
!
interface FastEthernet5/0
no ip address
shutdown
!
router rip
version 2
network 10.0.0.0
network 11.0.0.0
network 192.168.1.0
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
end

 

Router2#sh run
Building configuration...

Current configuration : 1006 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router2
!
ip cef
no ipv6 cef
!
interface GigabitEthernet0/0
ip address 192.167.2.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet1/0
no ip address
duplex auto
speed auto
shutdown
!
interface Serial2/0
ip address 10.0.0.2 255.255.255.0
clock rate 2000000
!
interface Serial3/0
ip address 12.0.0.2 255.255.255.0
!
interface FastEthernet4/0
no ip address
shutdown
!
interface FastEthernet5/0
no ip address
shutdown
!
router ospf 1
log-adjacency-changes
network 192.167.2.0 0.0.0.255 area 0
network 10.0.0.0 0.0.0.255 area 0
network 11.0.0.0 0.0.0.255 area 0
network 12.0.0.0 0.0.0.255 area 0
!
router rip
version 2
network 10.0.0.0
network 12.0.0.0
network 192.167.2.0
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
end

 

Router3#sh run
Building configuration...

Current configuration : 902 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router3
!
ip cef
no ipv6 cef
!
interface GigabitEthernet0/0
ip address 192.168.3.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet1/0
no ip address
duplex auto
speed auto
shutdown
!
interface Serial2/0
ip address 11.0.0.2 255.255.255.0
!
interface Serial3/0
ip address 12.0.0.1 255.255.255.0
clock rate 1200
!
interface FastEthernet4/0
no ip address
shutdown
!
interface FastEthernet5/0
no ip address
shutdown
!
interface GigabitEthernet6/0
no ip address
duplex auto
speed auto
shutdown
!
router rip
version 2
network 11.0.0.0
network 12.0.0.0
network 192.168.3.0
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
end

Hard to say, well at least for me as I'm still learning the logic behind networking as to what I can and can't do. I did however clean up some  of the configs based on what showed so thank you.

So I followed your explanation and the laptop is now able to communicate with things outside the network just fine now which is great. 

But I couldn't have things communicate with the laptop on the cell network just the laptop outwards.

 

So I change the central office server setting to "allow external access" and it worked so far. Though I guess that wasn't in my original just putting it out there incase any other newbies come after me and see this post.

 

Thanks for this though!

Great to hear!

 You mentioned that you had some problem with firewall as well, in case you need help, just ask.

 

I do still have that issue with my firewall but I figured I should probably make a new post for it which I just did actually.