From adc7124bc896dd36b0abe4c91af154bb416df6ed Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Mon, 9 Nov 2015 10:54:48 -0200 Subject: Let the code ready for strongswan 5.3.4, where key used to track nat were committed with a different name --- usr/local/www/diag_ipsec.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'usr') diff --git a/usr/local/www/diag_ipsec.php b/usr/local/www/diag_ipsec.php index fd7c0db..bfbad2f 100644 --- a/usr/local/www/diag_ipsec.php +++ b/usr/local/www/diag_ipsec.php @@ -201,7 +201,13 @@ $status = ipsec_list_sa(); } else { echo gettext("Unknown"); } - if (isset($ikesa['local-nat-t'])) { + /* + * XXX: local-nat-t was defined by pfSense + * When strongswan team accepted the change, they changed it to + * nat-local. Keep both for a while and remove local-nat-t in + * the future + */ + if (isset($ikesa['local-nat-t']) || isset($ikesa('nat-local'))) { echo " NAT-T"; } @@ -239,7 +245,13 @@ $status = ipsec_list_sa(); } else { echo gettext("Unknown"); } - if (isset($ikesa['remote-nat-t'])) { + /* + * XXX: remote-nat-t was defined by pfSense + * When strongswan team accepted the change, they changed it to + * nat-remote. Keep both for a while and remove remote-nat-t in + * the future + */ + if (isset($ikesa['remote-nat-t']) || isset($ikesa('nat-remote'))) { echo " NAT-T"; } ?> -- cgit v1.1