cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
608
Views
0
Helpful
1
Replies

NAT and Routing

husseinmuneer
Level 1
Level 1

Dear Sirs,

as shown in the attached diagram, the laptob user want to use an application in the server but the user shoud pass all the routers between him and the server (R1,R2,R3) so what is the additional configuration should we add to make him able to access the server and use the TCP ports 5500-5530?

Note: we can ping from R1 to server.

Thanks in advance for you help.

Regards

1 Accepted Solution

Accepted Solutions

Mohamed Sobair
Level 7
Level 7

Hello,

You need to add the following configuration on R1:

ip nat inside source static 192.168.0.202  interface dialer0 overload

interface f0/0

ip nat inside

interface dialer0

ip nat outside

You should also change the config of R2 as follows:

Change the Default route from 10.10.10.1 to 192.168.93.200:

no ip route 0.0.0.0 0.0.0.0 10.10.10.1

and Add the following route on R2:

ip route 192.168.0.0 255.255.255.0 10.10.10.1

You Should also add the following on R3:

ip route 0.0.0.0 0.0.0.0 10.10.10.2

Regards,

Mohamed

View solution in original post

1 Reply 1

Mohamed Sobair
Level 7
Level 7

Hello,

You need to add the following configuration on R1:

ip nat inside source static 192.168.0.202  interface dialer0 overload

interface f0/0

ip nat inside

interface dialer0

ip nat outside

You should also change the config of R2 as follows:

Change the Default route from 10.10.10.1 to 192.168.93.200:

no ip route 0.0.0.0 0.0.0.0 10.10.10.1

and Add the following route on R2:

ip route 192.168.0.0 255.255.255.0 10.10.10.1

You Should also add the following on R3:

ip route 0.0.0.0 0.0.0.0 10.10.10.2

Regards,

Mohamed