Skip to content

Commit

Permalink
ipsec, accidentally dropped disabled DH group with 28d0816
Browse files Browse the repository at this point in the history
(cherry picked from commit e0cc1c5)
(cherry picked from commit 7a353fb)
(cherry picked from commit 556734d)
  • Loading branch information
AdSchellevis authored and fichtner committed May 14, 2018
1 parent edc8707 commit aee843e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/www/vpn_ipsec.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ function ipsec_idinfo_to_text(& $idinfo) {

include("head.inc");
$dhgroups = array(
0 => gettext('off'),
1 => '1 (768 bits)',
2 => '2 (1024 bits)',
5 => '5 (1536 bits)',
Expand Down
1 change: 1 addition & 0 deletions src/www/vpn_ipsec_mobile.php
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ function print_legacy_box($msg, $name, $value)
<select name="pfs_group" class="form-control" id="pfs_group">
<?php
$p2_dhgroups = array(
0 => gettext('off'),
1 => '1 (768 bit)',
2 => '2 (1024 bit)',
5 => '5 (1536 bit)',
Expand Down
1 change: 1 addition & 0 deletions src/www/vpn_ipsec_phase1.php
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,7 @@ function ipsec_ikeid_next() {
<select name="dhgroup">
<?php
$p1_dhgroups = array(
0 => gettext('off'),
1 => '1 (768 bit)',
2 => '2 (1024 bit)',
5 => '5 (1536 bit)',
Expand Down
1 change: 1 addition & 0 deletions src/www/vpn_ipsec_phase2.php
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,7 @@ function getIndexByUniqueId($uniqid)
<select name="pfsgroup">
<?php
$p2_dhgroups = array(
0 => gettext('off'),
1 => '1 (768 bit)',
2 => '2 (1024 bit)',
5 => '5 (1536 bit)',
Expand Down

0 comments on commit aee843e

Please sign in to comment.