Hi All,
I’m really hoping one of you smart people will be able to help as myself and the Fortinet engineer who’s looking at this case are stumped.
We’ve deployed a FG 60E (v6.2.3) onto an incumbent Japanese circuit which uses PPOE (username and pw) and want to create an ipsec VPN back to a palo alto cluster ( PA-3060 v8.1.17) in London. This is probably the 20th deployment we’ve done of this kind for our customer who has satellite offices all over the world so we know the config should work.
The problem is even though we’re seeing the VPN up (both phase 1 and 2) we’re not seeing return traffic when initiated from the FG. For testing, we’re pinging from 10.25.21.1 (FG) to 10.1.10.2 (IP behind PA). On the debug, I can see traffic entering the VPN as expected but that’s it. On the other side, a packet capture shows the PA cluster receives the ping and replies but it seems to never make it through to the other end.
Here are the key config parts of the FG:
config vpn ipsec phase1-interface
edit "VPN-to-DC"
set interface "PPPOE"
set ike-version 2
set peertype any
set net-device disable
set npu-offload disable
set dhgrp 14
set remote-gw x.x.70.14
set psksecret xxxxxx
end
config vpn ipsec phase2-interface
edit "VPN-to-DC-2"
set phase1name "VPN-to-DC"
set replay disable
set auto-negotiate enable
set keylifeseconds 3600
set src-subnet 10.25.21.0 255.255.255.0
set dst-subnet 10.1.0.0 255.255.0.0
next
end
config router static
edit 0
set dst 10.1.0.0 255.255.0.0
set device "VPN-to-DC"
next
end
config firewall policy
edit 0
set name "VPN Out"
set srcintf "Trust"
set dstintf "VPN-to-DC"
set srcaddr "all"
set dstaddr "all"
set action accept
set schedule "always"
set service "ALL"
next
edit 1
set name "VPN In"
set uuid d0319f0a-1551-51ec-36cd-9b969cddfd02
set srcintf "VPN-to-DC"
set dstintf "Trust"
set srcaddr "all"
set dstaddr "all"
set action accept
set schedule "always"
set service "ALL"
next
end
config system zone
edit "Untrust"
set interface "wan1"
next
edit "Trust"
set interface "internal1" "PPPOE"
next
end
If you need extra info please let me know.