Hi,
I have a question : How to set up inter-vpn routing on HPE 5900 ?
For instance, I want subnet 1684 (10.155.163.64/26) inside vpn-instance SIG_pub to communicate with subnet 1688 (10.155.164.128/26) inside vpn-instance SIG_med
Addresses of the Switch in 1684 is 10.155.163.126 and in 1688 is 10.155.164.190
So I wanted to add those 2 routes:
ip route-static vpn-instance SIG_pub 10.155.164.128 26 vpn-instance SIG_med
ip route-static vpn-instance SIG_med 10.155.163.64 26 vpn-instance SIG_pub
just to indicate the VPN it has to go to for the target subnet.
I would do this way with Ericsson routers for instance.
However HPE syntax wants a gateway. I do not know why.
[ToR-SW1]ip route-static vpn-instance SIG_med 10.155.163.64 26 vpn-instance SIG_pub
^
% Incomplete command found at '^' position.
[ToR-SW1]
As all gateways in route commands, it has to be reachable from the source, so for the 2nd command for instance, I need to specify a gateway in vpn-instance SIG_med.
Let’s try with 10.155.164.190. The command is accepted but the route is not integrated into the routing table :
[ToR-SW1]ip route-static vpn-instance SIG_med 10.155.163.64 26 vpn-instance SIG_pub 10.155.164.190 permanent
Route has been modified.
[ToR-SW1]display ip routing-table vpn-instance SIG_med | i 10.155.163.
[ToR-SW1]
If I try with a gateway belonging to the target VPN (so the gw is not ditrectly reachable !), same behavior :
[ToR-SW1]ip route-static vpn-instance SIG_med 10.155.163.64 26 vpn-instance SIG_pub 10.155.163.126 permanent
[ToR-SW1]display ip routing-table vpn-instance SIG_med | i 10.155.163.
[ToR-SW1]
So now I am wondering , how to set up inter-vpn routing ?
If for some reason it is not possible this way (with “ip route-static vpn-instance … vpn-instance …” command), it is possible to make it with a external physical loop ?
For instance one side ‘bound’ to vpn SIG_pub, the side side ‘bound’ to vpn SIG_med.
Can anyone help me on that ?
Thanks in advance
Fabien