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
39c34cbd
Commit
39c34cbd
authored
Oct 14, 2015
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vpn/ipsec: push back service shortcut for a while longer #432
parent
e8e37d0c
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
15 additions
and
0 deletions
+15
-0
diag_ipsec.php
src/www/diag_ipsec.php
+1
-0
diag_ipsec_leases.php
src/www/diag_ipsec_leases.php
+1
-0
diag_ipsec_sad.php
src/www/diag_ipsec_sad.php
+1
-0
diag_ipsec_spd.php
src/www/diag_ipsec_spd.php
+1
-0
diag_logs_ipsec.php
src/www/diag_logs_ipsec.php
+1
-0
shortcuts.inc
src/www/shortcuts.inc
+3
-0
vpn_ipsec.php
src/www/vpn_ipsec.php
+1
-0
vpn_ipsec_keys.php
src/www/vpn_ipsec_keys.php
+1
-0
vpn_ipsec_keys_edit.php
src/www/vpn_ipsec_keys_edit.php
+1
-0
vpn_ipsec_mobile.php
src/www/vpn_ipsec_mobile.php
+1
-0
vpn_ipsec_phase1.php
src/www/vpn_ipsec_phase1.php
+1
-0
vpn_ipsec_phase2.php
src/www/vpn_ipsec_phase2.php
+1
-0
vpn_ipsec_settings.php
src/www/vpn_ipsec_settings.php
+1
-0
No files found.
src/www/diag_ipsec.php
View file @
39c34cbd
...
...
@@ -122,6 +122,7 @@ $pconfig = $config['ipsec']['phase1'];
legacy_html_escape_form_data
(
$pconfig
);
legacy_html_escape_form_data
(
$status
);
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Status Overview'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
?>
...
...
src/www/diag_ipsec_leases.php
View file @
39c34cbd
...
...
@@ -33,6 +33,7 @@ require_once("services.inc");
require_once
(
"interfaces.inc"
);
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Lease Status'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
$mobile
=
array
();
// TODO: temporary disabled ( https://github.com/opnsense/core/issues/139 ) ipsec_dump_mobile();
...
...
src/www/diag_ipsec_sad.php
View file @
39c34cbd
...
...
@@ -34,6 +34,7 @@ require_once("services.inc");
require_once
(
"interfaces.inc"
);
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Security Association Database'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
$sad
=
ipsec_dump_sad
();
...
...
src/www/diag_ipsec_spd.php
View file @
39c34cbd
...
...
@@ -34,6 +34,7 @@ require_once("services.inc");
require_once
(
"interfaces.inc"
);
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Security Policy Database'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
$spd
=
ipsec_dump_spd
();
...
...
src/www/diag_logs_ipsec.php
View file @
39c34cbd
...
...
@@ -47,6 +47,7 @@ if ($_POST['clear']) {
}
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'System Log'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
?>
...
...
src/www/shortcuts.inc
View file @
39c34cbd
...
...
@@ -171,6 +171,9 @@ $shortcuts['dhcp6']['main'] = "services_dhcpv6.php";
$shortcuts
[
'dhcp6'
][
'log'
]
=
"diag_logs_dhcp.php"
;
$shortcuts
[
'dhcp6'
][
'status'
]
=
"status_dhcpv6_leases.php"
;
$shortcuts
[
'ipsec'
]
=
array
();
$shortcuts
[
'ipsec'
][
'service'
]
=
"ipsec"
;
$shortcuts
[
'firewall'
]
=
array
();
$shortcuts
[
'firewall'
][
'main'
]
=
"firewall_rules.php"
;
$shortcuts
[
'firewall'
][
'log'
]
=
"diag_logs_filter.php"
;
...
...
src/www/vpn_ipsec.php
View file @
39c34cbd
...
...
@@ -237,6 +237,7 @@ $pconfig['enable'] = isset($config['ipsec']['enable']);
legacy_html_escape_form_data
(
$pconfig
);
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Tunnel Settings'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
...
...
src/www/vpn_ipsec_keys.php
View file @
39c34cbd
...
...
@@ -71,6 +71,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
}
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Pre-Shared Keys'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
?>
...
...
src/www/vpn_ipsec_keys_edit.php
View file @
39c34cbd
...
...
@@ -117,6 +117,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Edit Pre-Shared Key'
));
$shortcut_section
=
'ipsec'
;
legacy_html_escape_form_data
(
$pconfig
);
...
...
src/www/vpn_ipsec_mobile.php
View file @
39c34cbd
...
...
@@ -195,6 +195,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
legacy_html_escape_form_data
(
$pconfig
);
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Mobile Clients'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
?>
...
...
src/www/vpn_ipsec_phase1.php
View file @
39c34cbd
...
...
@@ -418,6 +418,7 @@ if (!empty($pconfig['mobile'])) {
}
else
{
$pgtitle
=
array
(
gettext
(
"VPN"
),
gettext
(
"IPsec"
),
gettext
(
"Edit Phase 1"
));
}
$shortcut_section
=
'ipsec'
;
legacy_html_escape_form_data
(
$pconfig
);
...
...
src/www/vpn_ipsec_phase2.php
View file @
39c34cbd
...
...
@@ -432,6 +432,7 @@ if (!empty($pconfig['mobile'])) {
}
else
{
$pgtitle
=
array
(
gettext
(
"VPN"
),
gettext
(
"IPsec"
),
gettext
(
"Edit Phase 2"
));
}
$shortcut_section
=
'ipsec'
;
legacy_html_escape_form_data
(
$pconfig
);
...
...
src/www/vpn_ipsec_settings.php
View file @
39c34cbd
...
...
@@ -105,6 +105,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
}
$pgtitle
=
array
(
gettext
(
'VPN'
),
gettext
(
'IPsec'
),
gettext
(
'Advanced Settings'
));
$shortcut_section
=
'ipsec'
;
include
(
"head.inc"
);
?>
...
...
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