Link to home
Start Free TrialLog in
Avatar of sporenza
sporenza

asked on

Setup Layer3 Networking

Stupid Question (I hope, because that means it's easy).

I have the network below.  

I can ping from Server 1 to S3, either 10.0.10.24 or 173.17.0.4.

I can ping from S3 to S3/2.

I can ping from S3 to Server2.

I want to ping fro Server1 to Server2.

How can I achieve this?  My switches have Layer3 (I am no network guru).

What do I need to explain more?

THANKS!
ASKER CERTIFIED SOLUTION
Avatar of Soulja
Soulja
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
depends on you Switch model, you will configure the routing in order to configure to allow ping, between Switch 1 and switch 4
Avatar of sporenza
sporenza

ASKER

@Fethi, thanks for the help.  I am using Arista.  But think if I understood generally what is happening I might be able to configure.
@Soulja
Server 1: Default gateway 10.0.10.2 - have this
Server 2: Default gateway 173.17.0.1 - have this

S2 and S1:   static route destined to 10.0.10.0/24 with a next hop of 173.17.0.4
will add
ip route 10.0.10.0/24 173.17.0.4

Open in new window


S3:  a static route destined to 172.17.0.0/24 with a next hop of 173.17.0.3
        a static route destined to 10.0.10.0/24 with a next hip of 173.17.0.5
will add
ip route 172.16.0.0/24 173.17.0.3

Open in new window

will add
ip route 10.0.10.0/24 173.17.0.5

Open in new window


S4:  a static route destined to 173.17.0.0/24 with a next hop of 10.0.0.10
will add
ip route 173.17.0.0/24 10.0.0.10

Open in new window


update soon