Hi everyone, I'm trying to setup a VPN S2S between two differents Azure VNET (under the same subscription).
Here the steps I've just done:
- create a Virtual Network in Europe
- add.space: 10.11.0.0/16
- sub: 10.11.0.0/24
- create a Virtual Network in US
- add.space: 10.12.0.0/16
- sub: 10.12.0.0/24
- create a GW subnet in Europe (CIDR 10.11.255.0/27)
- create a virtual network gateway (under the vnet in Europe) with pubblic ip 13.81.113.111
- create a GW subnet in US (CIDR 10.12.255.0/27)
- create a virtual network gateway (under the vnet in US) with pubblic ip 13.91.111.105
- create local network GW in Europe entering the US address space (10.12.0.0/16) and pubblic ip address 13.91.111.105
- create the VPN connection specifying the two Vnet GW and the shared key
- the connection status was "connected"
Now the test: I've deployed two vm under the two location. The Europe VM has the internal ip 10.11.0.4 and the US VM has 10.12.0.4.
What I want is to give the possibility to ping each other.....but the VM can't ping :(
Am I wrong/miss something?
Thank you very much