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
a5e24cad
Commit
a5e24cad
authored
Aug 29, 2016
by
Fabian Franz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Camellia can only be used with IKEv2
parent
a0664f11
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
vpn_ipsec_phase1.php
src/www/vpn_ipsec_phase1.php
+5
-0
No files found.
src/www/vpn_ipsec_phase1.php
View file @
a5e24cad
...
@@ -200,6 +200,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
...
@@ -200,6 +200,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$reqdfieldsn
=
array
(
gettext
(
"Certificate Authority"
),
gettext
(
"Certificate"
));
$reqdfieldsn
=
array
(
gettext
(
"Certificate Authority"
),
gettext
(
"Certificate"
));
break
;
break
;
}
}
if
(
empty
(
$pconfig
[
'mobile'
]))
{
if
(
empty
(
$pconfig
[
'mobile'
]))
{
$reqdfields
[]
=
"remote-gateway"
;
$reqdfields
[]
=
"remote-gateway"
;
$reqdfieldsn
[]
=
gettext
(
"Remote gateway"
);
$reqdfieldsn
[]
=
gettext
(
"Remote gateway"
);
...
@@ -332,6 +333,10 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
...
@@ -332,6 +333,10 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$pconfig
[
'encryption-algorithm'
][
'keylen'
]
=
$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'
);
}
if
(
count
(
$input_errors
)
==
0
)
{
if
(
count
(
$input_errors
)
==
0
)
{
$copy_fields
=
"ikeid,iketype,interface,mode,protocol,myid_type,myid_data
$copy_fields
=
"ikeid,iketype,interface,mode,protocol,myid_type,myid_data
,peerid_type,peerid_data,encryption-algorithm,hash-algorithm,dhgroup
,peerid_type,peerid_data,encryption-algorithm,hash-algorithm,dhgroup
...
...
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