Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
8eae446e
Commit
8eae446e
authored
Aug 29, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rework
https://github.com/opnsense/core/pull/1160
parent
1372e8a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
10 deletions
+13
-10
ipsec.inc
src/etc/inc/ipsec.inc
+6
-6
vpn_ipsec_phase1.php
src/www/vpn_ipsec_phase1.php
+7
-4
No files found.
src/etc/inc/ipsec.inc
View file @
8eae446e
...
...
@@ -37,12 +37,12 @@ $ipsec_loglevels = array("dmn" => "Daemon", "mgr" => "SA Manager", "ike" => "IKE
);
$p1_ealgos
=
array
(
'aes'
=>
array
(
'name'
=>
'AES'
,
'keysel'
=>
array
(
'lo'
=>
128
,
'hi'
=>
256
,
'step'
=>
64
)
),
'camellia'
=>
array
(
'name'
=>
'Camellia'
,
'keysel'
=>
array
(
'lo'
=>
128
,
'hi'
=>
256
,
'step'
=>
64
)
),
'blowfish'
=>
array
(
'name'
=>
'Blowfish'
,
'keysel'
=>
array
(
'lo'
=>
128
,
'hi'
=>
256
,
'step'
=>
64
)
),
'3des'
=>
array
(
'name'
=>
'3DES'
),
'cast128'
=>
array
(
'name'
=>
'CAST128'
),
'des'
=>
array
(
'name'
=>
'DES'
)
'aes'
=>
array
(
'name'
=>
'AES'
,
'keysel'
=>
array
(
'lo'
=>
128
,
'hi'
=>
256
,
'step'
=>
64
)
,
'iketype'
=>
null
),
'camellia'
=>
array
(
'name'
=>
'Camellia'
,
'keysel'
=>
array
(
'lo'
=>
128
,
'hi'
=>
256
,
'step'
=>
64
)
,
'iketype'
=>
'ikev2'
),
'blowfish'
=>
array
(
'name'
=>
'Blowfish'
,
'keysel'
=>
array
(
'lo'
=>
128
,
'hi'
=>
256
,
'step'
=>
64
)
,
'iketype'
=>
null
),
'3des'
=>
array
(
'name'
=>
'3DES'
,
'iketype'
=>
null
),
'cast128'
=>
array
(
'name'
=>
'CAST128'
,
'iketype'
=>
null
),
'des'
=>
array
(
'name'
=>
'DES'
,
'iketype'
=>
null
)
);
$p1_authentication_methods
=
array
(
...
...
src/www/vpn_ipsec_phase1.php
View file @
8eae446e
...
...
@@ -200,7 +200,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$reqdfieldsn
=
array
(
gettext
(
"Certificate Authority"
),
gettext
(
"Certificate"
));
break
;
}
if
(
empty
(
$pconfig
[
'mobile'
]))
{
$reqdfields
[]
=
"remote-gateway"
;
$reqdfieldsn
[]
=
gettext
(
"Remote gateway"
);
...
...
@@ -332,9 +332,12 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
if
(
!
empty
(
$pconfig
[
'ealgo_keylen'
]))
{
$pconfig
[
'encryption-algorithm'
][
'keylen'
]
=
$pconfig
[
'ealgo_keylen'
];
}
if
(
!
empty
(
$pconfig
[
'iketype'
])
&&
!
empty
(
$pconfig
[
'encryption-algorithm'
][
'name'
])
&&
$pconfig
[
'iketype'
]
!=
'ikev2'
&&
$pconfig
[
'encryption-algorithm'
][
'name'
]
==
'camellia'
)
{
$input_errors
[]
=
sprintf
(
gettext
(
"%s can only be used with IKEv2 type VPNs."
),
'Camellia'
);
foreach
(
$p1_ealgos
as
$algo
=>
$algodata
)
{
if
(
!
empty
(
$pconfig
[
'iketype'
])
&&
!
empty
(
$pconfig
[
'encryption-algorithm'
][
'name'
])
&&
!
empty
(
$algodata
[
'iketype'
])
&&
$pconfig
[
'iketype'
]
!=
$algodata
[
'iketype'
]
&&
$pconfig
[
'encryption-algorithm'
][
'name'
]
==
$algo
)
{
$input_errors
[]
=
sprintf
(
gettext
(
"%s can only be used with IKEv2 type VPNs."
),
$algodata
[
'name'
]);
}
}
if
(
count
(
$input_errors
)
==
0
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment