1 |
5262b29a
|
jim-p
|
<?php
|
2 |
919d91f9
|
Phil Davis
|
/*
|
3 |
c5d81585
|
Renato Botelho
|
* help.php
|
4 |
fd9ebcd5
|
Stephen Beaver
|
*
|
5 |
c5d81585
|
Renato Botelho
|
* part of pfSense (https://www.pfsense.org)
|
6 |
b8f91b7c
|
Luiz Souza
|
* Copyright (c) 2004-2018 Rubicon Communications, LLC (Netgate)
|
7 |
c5d81585
|
Renato Botelho
|
* All rights reserved.
|
8 |
fd9ebcd5
|
Stephen Beaver
|
*
|
9 |
b12ea3fb
|
Renato Botelho
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
10 |
|
|
* you may not use this file except in compliance with the License.
|
11 |
|
|
* You may obtain a copy of the License at
|
12 |
fd9ebcd5
|
Stephen Beaver
|
*
|
13 |
b12ea3fb
|
Renato Botelho
|
* http://www.apache.org/licenses/LICENSE-2.0
|
14 |
fd9ebcd5
|
Stephen Beaver
|
*
|
15 |
b12ea3fb
|
Renato Botelho
|
* Unless required by applicable law or agreed to in writing, software
|
16 |
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
17 |
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
18 |
|
|
* See the License for the specific language governing permissions and
|
19 |
|
|
* limitations under the License.
|
20 |
5262b29a
|
jim-p
|
*/
|
21 |
919d91f9
|
Phil Davis
|
|
22 |
bb7469ca
|
Ermal
|
require_once("guiconfig.inc");
|
23 |
|
|
|
24 |
5262b29a
|
jim-p
|
/* Define hash of jumpto url maps */
|
25 |
|
|
$helppages = array(
|
26 |
2dd9b120
|
jim-p
|
'index.php' => 'https://doc.pfsense.org/index.php/Dashboard',
|
27 |
d9d8a8f1
|
jim-p
|
|
28 |
|
|
'crash_reporter.php' => 'https://doc.pfsense.org/index.php/Unexpected_Reboot_Troubleshooting',
|
29 |
2dd9b120
|
jim-p
|
'diag_arp.php' => 'https://doc.pfsense.org/index.php/ARP_Table',
|
30 |
d9d8a8f1
|
jim-p
|
'diag_authentication.php' => 'https://doc.pfsense.org/index.php/User_Authentication_Servers',
|
31 |
2dd9b120
|
jim-p
|
'diag_backup.php' => 'https://doc.pfsense.org/index.php/Configuration_Backup_and_Restore',
|
32 |
d9d8a8f1
|
jim-p
|
'diag_command.php' => 'https://doc.pfsense.org/index.php/Execute_Command',
|
33 |
2dd9b120
|
jim-p
|
'diag_confbak.php' => 'https://doc.pfsense.org/index.php/Configuration_History',
|
34 |
|
|
'diag_defaults.php' => 'https://doc.pfsense.org/index.php/Factory_Defaults',
|
35 |
|
|
'diag_dns.php' => 'https://doc.pfsense.org/index.php/DNS_Lookup',
|
36 |
|
|
'diag_dump_states.php' => 'https://doc.pfsense.org/index.php/Show_States',
|
37 |
d9d8a8f1
|
jim-p
|
'diag_dump_states_sources.php' => 'https://doc.pfsense.org/index.php/Show_Source_Tracking',
|
38 |
|
|
'diag_edit.php' => 'https://doc.pfsense.org/index.php/Edit_File',
|
39 |
|
|
'diag_gmirror.php' => 'https://doc.pfsense.org/index.php/Create_a_Software_RAID1_%28gmirror%29',
|
40 |
|
|
'diag_halt.php' => 'https://doc.pfsense.org/index.php/Halt_System',
|
41 |
|
|
'diag_limiter_info.php' => 'https://doc.pfsense.org/index.php/Limiters',
|
42 |
|
|
'diag_ndp.php' => 'https://doc.pfsense.org/index.php/NDP_Table',
|
43 |
|
|
'diag_packet_capture.php' => 'https://doc.pfsense.org/index.php/Sniffers,_Packet_Capture',
|
44 |
|
|
'diag_pf_info.php' => 'https://doc.pfsense.org/index.php/Packet_Filter_Information',
|
45 |
|
|
'diag_pftop.php' => 'https://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage#pftop',
|
46 |
2dd9b120
|
jim-p
|
'diag_ping.php' => 'https://doc.pfsense.org/index.php/Ping_Host',
|
47 |
d9d8a8f1
|
jim-p
|
'diag_reboot.php' => 'https://doc.pfsense.org/index.php/Reboot_System',
|
48 |
|
|
'diag_resetstate.php' => 'https://doc.pfsense.org/index.php/Reset_States',
|
49 |
|
|
'diag_routes.php' => 'https://doc.pfsense.org/index.php/Viewing_Routes',
|
50 |
|
|
'diag_smart.php' => 'https://doc.pfsense.org/index.php/SMART_Status',
|
51 |
|
|
'diag_sockets.php' => 'https://doc.pfsense.org/index.php/Diag_Sockets',
|
52 |
|
|
'diag_states_summary.php' => 'https://doc.pfsense.org/index.php/States_Summary',
|
53 |
2dd9b120
|
jim-p
|
'diag_system_activity.php' => 'https://doc.pfsense.org/index.php/System_Activity',
|
54 |
d9d8a8f1
|
jim-p
|
'diag_tables.php' => 'https://doc.pfsense.org/index.php/Tables',
|
55 |
|
|
'diag_testport.php' => 'https://doc.pfsense.org/index.php/Test_Port',
|
56 |
2dd9b120
|
jim-p
|
'diag_traceroute.php' => 'https://doc.pfsense.org/index.php/Traceroute',
|
57 |
|
|
'easyrule.php' => 'https://doc.pfsense.org/index.php/Easy_Rule',
|
58 |
d9d8a8f1
|
jim-p
|
'firewall_aliases_edit.php' => 'https://doc.pfsense.org/index.php/Aliases',
|
59 |
|
|
'firewall_aliases_import.php' => 'https://doc.pfsense.org/index.php/Aliases',
|
60 |
|
|
'firewall_aliases.php' => 'https://doc.pfsense.org/index.php/Aliases',
|
61 |
2dd9b120
|
jim-p
|
'firewall_nat_1to1_edit.php' => 'https://doc.pfsense.org/index.php/1:1_NAT',
|
62 |
d9d8a8f1
|
jim-p
|
'firewall_nat_1to1.php' => 'https://doc.pfsense.org/index.php/1:1_NAT',
|
63 |
|
|
'firewall_nat_edit.php' => 'https://doc.pfsense.org/index.php/How_can_I_forward_ports_with_pfSense',
|
64 |
|
|
'firewall_nat_npt_edit.php' => 'https://doc.pfsense.org/index.php/NPt',
|
65 |
|
|
'firewall_nat_npt.php' => 'https://doc.pfsense.org/index.php/NPt',
|
66 |
|
|
'firewall_nat_out_edit.php' => 'https://doc.pfsense.org/index.php/Outbound_NAT',
|
67 |
|
|
'firewall_nat_out.php' => 'https://doc.pfsense.org/index.php/Outbound_NAT',
|
68 |
|
|
'firewall_nat.php' => 'https://doc.pfsense.org/index.php/How_can_I_forward_ports_with_pfSense',
|
69 |
|
|
'firewall_rules_edit.php' => 'https://doc.pfsense.org/index.php/Firewall_Rule_Basics',
|
70 |
|
|
'firewall_rules.php' => 'https://doc.pfsense.org/index.php/Firewall_Rule_Basics',
|
71 |
|
|
'firewall_schedule_edit.php' => 'https://doc.pfsense.org/index.php/Firewall_Rule_Schedules',
|
72 |
|
|
'firewall_schedule.php' => 'https://doc.pfsense.org/index.php/Firewall_Rule_Schedules',
|
73 |
|
|
'firewall_shaper.php' => 'https://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
|
74 |
|
|
'firewall_shaper_queues.php' => 'https://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
|
75 |
|
|
'firewall_shaper_vinterface.php' => 'https://doc.pfsense.org/index.php/Limiters',
|
76 |
|
|
'firewall_shaper_wizards.php' => 'https://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
|
77 |
|
|
'firewall_virtual_ip_edit.php' => 'https://doc.pfsense.org/index.php/What_are_Virtual_IP_Addresses',
|
78 |
|
|
'firewall_virtual_ip.php' => 'https://doc.pfsense.org/index.php/What_are_Virtual_IP_Addresses',
|
79 |
2dd9b120
|
jim-p
|
'interfaces_assign.php' => 'https://doc.pfsense.org/index.php/Assign_Interfaces',
|
80 |
|
|
'interfaces_bridge_edit.php' => 'https://doc.pfsense.org/index.php/Interface_Bridges',
|
81 |
d9d8a8f1
|
jim-p
|
'interfaces_bridge.php' => 'https://doc.pfsense.org/index.php/Interface_Bridges',
|
82 |
2dd9b120
|
jim-p
|
'interfaces_gif_edit.php' => 'https://doc.pfsense.org/index.php/GIF_Interfaces',
|
83 |
d9d8a8f1
|
jim-p
|
'interfaces_gif.php' => 'https://doc.pfsense.org/index.php/GIF_Interfaces',
|
84 |
2dd9b120
|
jim-p
|
'interfaces_gre_edit.php' => 'https://doc.pfsense.org/index.php/GRE_Interfaces',
|
85 |
d9d8a8f1
|
jim-p
|
'interfaces_gre.php' => 'https://doc.pfsense.org/index.php/GRE_Interfaces',
|
86 |
2dd9b120
|
jim-p
|
'interfaces_groups_edit.php' => 'https://doc.pfsense.org/index.php/Interface_Groups',
|
87 |
d9d8a8f1
|
jim-p
|
'interfaces_groups.php' => 'https://doc.pfsense.org/index.php/Interface_Groups',
|
88 |
2dd9b120
|
jim-p
|
'interfaces_lagg_edit.php' => 'https://doc.pfsense.org/index.php/LAGG_Interfaces',
|
89 |
d9d8a8f1
|
jim-p
|
'interfaces_lagg.php' => 'https://doc.pfsense.org/index.php/LAGG_Interfaces',
|
90 |
|
|
'interfaces.php' => 'https://doc.pfsense.org/index.php/Interface_Settings',
|
91 |
2dd9b120
|
jim-p
|
'interfaces_ppps_edit.php' => 'https://doc.pfsense.org/index.php/PPP_Interfaces',
|
92 |
d9d8a8f1
|
jim-p
|
'interfaces_ppps.php' => 'https://doc.pfsense.org/index.php/PPP_Interfaces',
|
93 |
2dd9b120
|
jim-p
|
'interfaces_qinq_edit.php' => 'https://doc.pfsense.org/index.php/QinQ_Interfaces',
|
94 |
d9d8a8f1
|
jim-p
|
'interfaces_qinq.php' => 'https://doc.pfsense.org/index.php/QinQ_Interfaces',
|
95 |
|
|
'interfaces_vlan_edit.php' => 'https://doc.pfsense.org/index.php/VLAN_Trunking',
|
96 |
|
|
'interfaces_vlan.php' => 'https://doc.pfsense.org/index.php/VLAN_Trunking',
|
97 |
|
|
'interfaces_wireless_edit.php' => 'https://doc.pfsense.org/index.php/Wireless_Interfaces',
|
98 |
|
|
'interfaces_wireless.php' => 'https://doc.pfsense.org/index.php/Wireless_Interfaces',
|
99 |
|
|
'load_balancer_monitor_edit.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing',
|
100 |
|
|
'load_balancer_monitor.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing',
|
101 |
|
|
'load_balancer_pool_edit.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing#Set_up_Load_Balancing_Pool',
|
102 |
|
|
'load_balancer_pool.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing#Set_up_Load_Balancing_Pool',
|
103 |
|
|
'load_balancer_setting.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing#Advanced_Settings',
|
104 |
|
|
'load_balancer_virtual_server_edit.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing#Set_up_Virtual_Server',
|
105 |
|
|
'load_balancer_virtual_server.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing#Set_up_Virtual_Server',
|
106 |
|
|
'miniupnpd.xml' => 'https://doc.pfsense.org/index.php/What_are_UPnP_and_NAT-PMP',
|
107 |
|
|
'openvpn-client-export.xml' => 'https://doc.pfsense.org/index.php/OpenVPN_Client_Exporter', /* Package */
|
108 |
|
|
'pkg_mgr_installed.php' => 'https://doc.pfsense.org/index.php/Package_Manager',
|
109 |
|
|
'pkg_mgr_install.php' => 'https://doc.pfsense.org/index.php/Package_Manager',
|
110 |
|
|
'pkg_mgr.php' => 'https://doc.pfsense.org/index.php/Package_Manager',
|
111 |
|
|
'services_captiveportal_filemanager.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
112 |
|
|
'services_captiveportal_hostname_edit.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
113 |
|
|
'services_captiveportal_hostname.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
114 |
|
|
'services_captiveportal_ip_edit.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
115 |
|
|
'services_captiveportal_ip.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
116 |
|
|
'services_captiveportal_mac_edit.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
117 |
|
|
'services_captiveportal_mac.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
118 |
|
|
'services_captiveportal.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
119 |
|
|
'services_captiveportal_vouchers_edit.php' => 'https://doc.pfsense.org/index.php/Captive_Portal_Vouchers',
|
120 |
|
|
'services_captiveportal_vouchers.php' => 'https://doc.pfsense.org/index.php/Captive_Portal_Vouchers',
|
121 |
|
|
'services_captiveportal_zones_edit.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
122 |
|
|
'services_captiveportal_zones.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
123 |
|
|
'services_checkip_edit.php' => 'https://doc.pfsense.org/index.php/IP_Address_Check_Services',
|
124 |
|
|
'services_checkip.php' => 'https://doc.pfsense.org/index.php/IP_Address_Check_Services',
|
125 |
2dd9b120
|
jim-p
|
'services_dhcp_edit.php' => 'https://doc.pfsense.org/index.php/DHCP_Server',
|
126 |
d9d8a8f1
|
jim-p
|
'services_dhcp.php' => 'https://doc.pfsense.org/index.php/DHCP_Server',
|
127 |
2dd9b120
|
jim-p
|
'services_dhcp_relay.php' => 'https://doc.pfsense.org/index.php/DHCP_Relay',
|
128 |
d9d8a8f1
|
jim-p
|
'services_dhcpv6_edit.php' => 'https://doc.pfsense.org/index.php/DHCPv6_Server',
|
129 |
|
|
'services_dhcpv6.php' => 'https://doc.pfsense.org/index.php/DHCPv6_Server',
|
130 |
|
|
'services_dhcpv6_relay.php' => 'https://doc.pfsense.org/index.php/DHCP_Relay',
|
131 |
2dd9b120
|
jim-p
|
'services_dnsmasq_domainoverride_edit.php' => 'https://doc.pfsense.org/index.php/DNS_Forwarder',
|
132 |
|
|
'services_dnsmasq_edit.php' => 'https://doc.pfsense.org/index.php/DNS_Forwarder',
|
133 |
d9d8a8f1
|
jim-p
|
'services_dnsmasq.php' => 'https://doc.pfsense.org/index.php/DNS_Forwarder',
|
134 |
|
|
'services_dyndns_edit.php' => 'https://doc.pfsense.org/index.php/Dynamic_DNS',
|
135 |
|
|
'services_dyndns.php' => 'https://doc.pfsense.org/index.php/Dynamic_DNS',
|
136 |
2dd9b120
|
jim-p
|
'services_igmpproxy_edit.php' => 'https://doc.pfsense.org/index.php/IGMP_Proxy',
|
137 |
d9d8a8f1
|
jim-p
|
'services_igmpproxy.php' => 'https://doc.pfsense.org/index.php/IGMP_Proxy',
|
138 |
|
|
'services_ntpd_acls.php' => 'https://doc.pfsense.org/index.php/NTP_Server',
|
139 |
|
|
'services_ntpd_gps.php' => 'https://doc.pfsense.org/index.php/NTP_Server',
|
140 |
|
|
'services_ntpd.php' => 'https://doc.pfsense.org/index.php/NTP_Server',
|
141 |
|
|
'services_ntpd_pps.php' => 'https://doc.pfsense.org/index.php/NTP_Server',
|
142 |
|
|
'services_pppoe_edit.php' => 'https://doc.pfsense.org/index.php/PPPoE_Server_Settings',
|
143 |
|
|
'services_pppoe.php' => 'https://doc.pfsense.org/index.php/PPPoE_Server_Settings',
|
144 |
|
|
'services_rfc2136_edit.php' => 'https://doc.pfsense.org/index.php/Dynamic_DNS',
|
145 |
|
|
'services_rfc2136.php' => 'https://doc.pfsense.org/index.php/Dynamic_DNS',
|
146 |
|
|
'services_router_advertisements.php' => 'https://doc.pfsense.org/index.php/Router_Advertisements',
|
147 |
2dd9b120
|
jim-p
|
'services_snmp.php' => 'https://doc.pfsense.org/index.php/SNMP_Daemon',
|
148 |
d9d8a8f1
|
jim-p
|
'services_unbound_acls.php' => 'https://doc.pfsense.org/index.php/Unbound_DNS_Resolver#Access_Lists_Tab',
|
149 |
|
|
'services_unbound_advanced.php' => 'https://doc.pfsense.org/index.php/Unbound_DNS_Resolver#Advanced_Settings_Tab',
|
150 |
|
|
'services_unbound_domainoverride_edit.php' => 'https://doc.pfsense.org/index.php/Unbound_DNS_Resolver',
|
151 |
|
|
'services_unbound_host_edit.php' => 'https://doc.pfsense.org/index.php/Unbound_DNS_Resolver',
|
152 |
|
|
'services_unbound.php' => 'https://doc.pfsense.org/index.php/Unbound_DNS_Resolver',
|
153 |
2dd9b120
|
jim-p
|
'services_wol_edit.php' => 'https://doc.pfsense.org/index.php/Wake_on_LAN',
|
154 |
d9d8a8f1
|
jim-p
|
'services_wol.php' => 'https://doc.pfsense.org/index.php/Wake_on_LAN',
|
155 |
|
|
'status_captiveportal_expire.php' => 'https://doc.pfsense.org/index.php/Captive_Portal',
|
156 |
|
|
'status_captiveportal.php' => 'https://doc.pfsense.org/index.php/Captive_Portal_Status',
|
157 |
|
|
'status_captiveportal_test.php' => 'https://doc.pfsense.org/index.php/Captive_Portal_Status',
|
158 |
|
|
'status_captiveportal_voucher_rolls.php' => 'https://doc.pfsense.org/index.php/Captive_Portal_Vouchers',
|
159 |
|
|
'status_captiveportal_vouchers.php' => 'https://doc.pfsense.org/index.php/Captive_Portal_Vouchers',
|
160 |
|
|
'status_carp.php' => 'https://doc.pfsense.org/index.php/CARP_Status',
|
161 |
|
|
'status_dhcp_leases.php' => 'https://doc.pfsense.org/index.php/DHCP_Leases',
|
162 |
|
|
'status_dhcpv6_leases.php' => 'https://doc.pfsense.org/index.php/DHCPv6_Leases',
|
163 |
|
|
'status_filter_reload.php' => 'https://doc.pfsense.org/index.php/Filter_Reload_Status',
|
164 |
|
|
'status_gateway_groups.php' => 'https://doc.pfsense.org/index.php/Gateway_Status',
|
165 |
|
|
'status_gateways.php' => 'https://doc.pfsense.org/index.php/Gateway_Status',
|
166 |
|
|
'status_graph_cpu.php' => 'https://doc.pfsense.org/index.php/CPU_Load',
|
167 |
|
|
'status_graph.php' => 'https://doc.pfsense.org/index.php/Traffic_Graph',
|
168 |
|
|
'status_interfaces.php' => 'https://doc.pfsense.org/index.php/Interface_Status',
|
169 |
|
|
'status_ipsec_leases.php' => 'https://doc.pfsense.org/index.php/IPsec_Mobile_Clients',
|
170 |
|
|
'status_ipsec.php' => 'https://doc.pfsense.org/index.php/IPsec_Status',
|
171 |
|
|
'status_ipsec_sad.php' => 'https://doc.pfsense.org/index.php/IPsec_Status',
|
172 |
|
|
'status_ipsec_spd.php' => 'https://doc.pfsense.org/index.php/IPsec_Status',
|
173 |
|
|
'status_lb_pool.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing_Status',
|
174 |
|
|
'status_lb_vs.php' => 'https://doc.pfsense.org/index.php/Inbound_Load_Balancing_Status',
|
175 |
|
|
'status_logs_filter_dynamic.php' => 'https://doc.pfsense.org/index.php/Firewall_Logs',
|
176 |
|
|
'status_logs_filter.php' => 'https://doc.pfsense.org/index.php/Firewall_Logs',
|
177 |
|
|
'status_logs_filter_summary.php' => 'https://doc.pfsense.org/index.php/Firewall_Logs',
|
178 |
|
|
'status_logs.php-dhcpd' => 'https://doc.pfsense.org/index.php/DHCP_Logs',
|
179 |
|
|
'status_logs.php-gateways' => 'https://doc.pfsense.org/index.php/Gateway_Logs',
|
180 |
|
|
'status_logs.php' => 'https://doc.pfsense.org/index.php/System_Logs',
|
181 |
|
|
'status_logs.php-ipsec' => 'https://doc.pfsense.org/index.php/IPsec_Logs',
|
182 |
|
|
'status_logs.php-ntpd' => 'https://doc.pfsense.org/index.php/NTP_Logs',
|
183 |
|
|
'status_logs.php-openvpn' => 'https://doc.pfsense.org/index.php/OpenVPN_Logs',
|
184 |
|
|
'status_logs.php-portalauth' => 'https://doc.pfsense.org/index.php/Captive_Portal_Authentication_Logs',
|
185 |
|
|
'status_logs.php-ppp' => 'https://doc.pfsense.org/index.php/PPP_Logs',
|
186 |
|
|
'status_logs.php-relayd' => 'https://doc.pfsense.org/index.php/Load_Balancer_Logs',
|
187 |
|
|
'status_logs.php-resolver' => 'https://doc.pfsense.org/index.php/Resolver_Logs',
|
188 |
|
|
'status_logs.php-routing' => 'https://doc.pfsense.org/index.php/Routing_Logs',
|
189 |
|
|
'status_logs.php-wireless' => 'https://doc.pfsense.org/index.php/Wireless_Logs',
|
190 |
|
|
'status_logs_settings.php' => 'https://doc.pfsense.org/index.php/Log_Settings',
|
191 |
|
|
'status_logs_vpn.php' => 'https://doc.pfsense.org/index.php/PPTP_VPN_Logs',
|
192 |
|
|
'status_ntpd.php' => 'https://doc.pfsense.org/index.php/NTP_Server',
|
193 |
|
|
'status_openvpn.php' => 'https://doc.pfsense.org/index.php/OpenVPN_Status',
|
194 |
|
|
'status_pkglogs.php' => 'https://doc.pfsense.org/index.php/Package_Logs',
|
195 |
|
|
'status_queues.php' => 'https://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
|
196 |
|
|
'status_services.php' => 'https://doc.pfsense.org/index.php/Services_Status',
|
197 |
|
|
'status_upnp.php' => 'https://doc.pfsense.org/index.php/What_are_UPnP_and_NAT-PMP',
|
198 |
|
|
'status_wireless.php' => 'https://doc.pfsense.org/index.php/Wireless_Status',
|
199 |
327bbab6
|
jim-p
|
'system_advanced_admin.php' => 'https://doc.pfsense.org/index.php/Advanced_Setup',
|
200 |
|
|
'system_advanced_firewall.php' => 'https://doc.pfsense.org/index.php/Advanced_Setup#Firewall.2FNAT',
|
201 |
|
|
'system_advanced_misc.php' => 'https://doc.pfsense.org/index.php/Advanced_Setup#Miscellaneous',
|
202 |
|
|
'system_advanced_network.php' => 'https://doc.pfsense.org/index.php/Advanced_Setup#Firewall.2FNAT',
|
203 |
|
|
'system_advanced_notifications.php' => 'https://doc.pfsense.org/index.php/Advanced_Setup#Notifications',
|
204 |
|
|
'system_advanced_sysctl.php' => 'https://doc.pfsense.org/index.php/Advanced_Setup#System_Tunables',
|
205 |
d9d8a8f1
|
jim-p
|
'system_authservers.php' => 'https://doc.pfsense.org/index.php/User_Authentication_Servers',
|
206 |
|
|
'system_camanager.php' => 'https://doc.pfsense.org/index.php/Certificate_Management',
|
207 |
|
|
'system_certmanager.php' => 'https://doc.pfsense.org/index.php/Certificate_Management',
|
208 |
|
|
'system_crlmanager.php' => 'https://doc.pfsense.org/index.php/Certificate_Management',
|
209 |
2dd9b120
|
jim-p
|
'system_gateway_groups_edit.php' => 'https://doc.pfsense.org/index.php/Gateway_Settings',
|
210 |
d9d8a8f1
|
jim-p
|
'system_gateway_groups.php' => 'https://doc.pfsense.org/index.php/Gateway_Settings',
|
211 |
2dd9b120
|
jim-p
|
'system_gateways_edit.php' => 'https://doc.pfsense.org/index.php/Gateway_Settings',
|
212 |
d9d8a8f1
|
jim-p
|
'system_gateways.php' => 'https://doc.pfsense.org/index.php/Gateway_Settings',
|
213 |
2dd9b120
|
jim-p
|
'system_groupmanager_addprivs.php' => 'https://doc.pfsense.org/index.php/Group_Manager',
|
214 |
d9d8a8f1
|
jim-p
|
'system_groupmanager.php' => 'https://doc.pfsense.org/index.php/Group_Manager',
|
215 |
|
|
'system_hasync.php' => 'https://doc.pfsense.org/index.php/High_Availability',
|
216 |
|
|
'system.php' => 'https://doc.pfsense.org/index.php/General_Setup',
|
217 |
|
|
'system_routes_edit.php' => 'https://doc.pfsense.org/index.php/Static_Routes',
|
218 |
|
|
'system_routes.php' => 'https://doc.pfsense.org/index.php/Static_Routes',
|
219 |
|
|
'system_update_settings.php' => 'https://doc.pfsense.org/index.php/Firmware_Updates',
|
220 |
2dd9b120
|
jim-p
|
'system_usermanager_addprivs.php' => 'https://doc.pfsense.org/index.php/User_Manager',
|
221 |
|
|
'system_usermanager_passwordmg.php' => 'https://doc.pfsense.org/index.php/User_Manager',
|
222 |
d9d8a8f1
|
jim-p
|
'system_usermanager.php' => 'https://doc.pfsense.org/index.php/User_Manager',
|
223 |
|
|
'system_usermanager_settings.php' => 'https://doc.pfsense.org/index.php/User_Manager',
|
224 |
|
|
'system_user_settings.php' => 'https://doc.pfsense.org/index.php/User_Manager',
|
225 |
|
|
'vpn_ipsec_keys_edit.php' => 'https://doc.pfsense.org/index.php/IPsec_Tunnels',
|
226 |
|
|
'vpn_ipsec_keys.php' => 'https://doc.pfsense.org/index.php/IPsec_Tunnels',
|
227 |
2dd9b120
|
jim-p
|
'vpn_ipsec_mobile.php' => 'https://doc.pfsense.org/index.php/IPsec_Mobile_Clients',
|
228 |
|
|
'vpn_ipsec_phase1.php' => 'https://doc.pfsense.org/index.php/IPsec_Tunnels',
|
229 |
|
|
'vpn_ipsec_phase2.php' => 'https://doc.pfsense.org/index.php/IPsec_Tunnels',
|
230 |
d9d8a8f1
|
jim-p
|
'vpn_ipsec.php' => 'https://doc.pfsense.org/index.php/IPsec_Tunnels',
|
231 |
51579bb4
|
jim-p
|
'vpn_ipsec_settings.php' => 'https://doc.pfsense.org/index.php/Advanced_IPsec_Settings',
|
232 |
d9d8a8f1
|
jim-p
|
'vpn_l2tp.php' => 'https://doc.pfsense.org/index.php/L2TP_VPN_Settings',
|
233 |
|
|
'vpn_l2tp_users_edit.php' => 'https://doc.pfsense.org/index.php/L2TP_VPN_Settings',
|
234 |
|
|
'vpn_l2tp_users.php' => 'https://doc.pfsense.org/index.php/L2TP_VPN_Settings',
|
235 |
2dd9b120
|
jim-p
|
'vpn_openvpn_client.php' => 'https://doc.pfsense.org/index.php/OpenVPN_Settings',
|
236 |
|
|
'vpn_openvpn_csc.php' => 'https://doc.pfsense.org/index.php/OpenVPN_Settings',
|
237 |
|
|
'vpn_openvpn_export.php' => 'https://doc.pfsense.org/index.php/OpenVPN_Client_Exporter', /* Package */
|
238 |
6dbc42de
|
jim-p
|
'vpn_openvpn_export_shared.php' => 'https://doc.pfsense.org/index.php/OpenVPN_Client_Exporter', /* Package */
|
239 |
d9d8a8f1
|
jim-p
|
'vpn_openvpn_server.php' => 'https://doc.pfsense.org/index.php/OpenVPN_Settings',
|
240 |
540963fd
|
jim-p
|
|
241 |
d9d8a8f1
|
jim-p
|
/* Packages from here on down. Not checked as strictly. Pages may not yet exist. */
|
242 |
6dbc42de
|
jim-p
|
'acme/acme_accountkeys_edit.php' => 'https://doc.pfsense.org/index.php/ACME_package',
|
243 |
|
|
'acme/acme_accountkeys.php' => 'https://doc.pfsense.org/index.php/ACME_package',
|
244 |
|
|
'acme/acme_certificates_edit.php' => 'https://doc.pfsense.org/index.php/ACME_package',
|
245 |
|
|
'acme/acme_certificates.php' => 'https://doc.pfsense.org/index.php/ACME_package',
|
246 |
|
|
'acme/acme_generalsettings.php' => 'https://doc.pfsense.org/index.php/ACME_package',
|
247 |
|
|
'acme.xml' => 'https://doc.pfsense.org/index.php/ACME_package',
|
248 |
|
|
'apcupsd_status.php' => 'https://doc.pfsense.org/index.php/Apcupsd_package',
|
249 |
|
|
'apcupsd.xml' => 'https://doc.pfsense.org/index.php/Apcupsd_package',
|
250 |
d9d8a8f1
|
jim-p
|
'arping.xml' => 'https://doc.pfsense.org/index.php/Arping_package',
|
251 |
6dbc42de
|
jim-p
|
'autoconfigbackup_backup.php' => 'https://doc.pfsense.org/index.php/AutoConfigBackup',
|
252 |
|
|
'autoconfigbackup.php' => 'https://doc.pfsense.org/index.php/AutoConfigBackup',
|
253 |
|
|
'autoconfigbackup_stats.php' => 'https://doc.pfsense.org/index.php/AutoConfigBackup',
|
254 |
d9d8a8f1
|
jim-p
|
'autoconfigbackup.xml' => 'https://doc.pfsense.org/index.php/AutoConfigBackup',
|
255 |
2dd9b120
|
jim-p
|
'avahi.xml' => 'https://doc.pfsense.org/index.php/Avahi_package',
|
256 |
6dbc42de
|
jim-p
|
'backup.xml' => 'https://doc.pfsense.org/index.php/Backup_package',
|
257 |
|
|
'bind_acls.xml' => 'https://doc.pfsense.org/index.php/BIND_package',
|
258 |
|
|
'bind_sync.xml' => 'https://doc.pfsense.org/index.php/BIND_package',
|
259 |
|
|
'bind_views.xml' => 'https://doc.pfsense.org/index.php/BIND_package',
|
260 |
|
|
'bind.xml' => 'https://doc.pfsense.org/index.php/BIND_package',
|
261 |
|
|
'bind_zones.xml' => 'https://doc.pfsense.org/index.php/BIND_package',
|
262 |
2dd9b120
|
jim-p
|
'blinkled.xml' => 'https://doc.pfsense.org/index.php/BlinkLED_Package',
|
263 |
6dbc42de
|
jim-p
|
'cellular.xml' => 'https://doc.pfsense.org/index.php/Cellular_package',
|
264 |
|
|
'cron.xml' => 'https://doc.pfsense.org/index.php/Cron_package',
|
265 |
d9d8a8f1
|
jim-p
|
'darkstat.xml' => 'https://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage',
|
266 |
6dbc42de
|
jim-p
|
'freeradiusauthorizedmacs.xml' => 'https://doc.pfsense.org/index.php/Plain_MAC_Authentication_with_FreeRADIUS',
|
267 |
|
|
'freeradiuscerts.xml' => 'https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package',
|
268 |
|
|
'freeradiusclients.xml' => 'https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package',
|
269 |
|
|
'freeradiuseapconf.xml' => 'https://doc.pfsense.org/index.php/Using_EAP_and_PEAP_with_FreeRADIUS',
|
270 |
|
|
'freeradiusinterfaces.xml' => 'https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package',
|
271 |
|
|
'freeradiusmodulesldap.xml' => 'https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package',
|
272 |
|
|
'freeradiussettings.xml' => 'https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package',
|
273 |
|
|
'freeradiussqlconf.xml' => 'https://doc.pfsense.org/index.php/Using_MySQL_with_FreeRADIUS',
|
274 |
|
|
'freeradiussync.xml' => 'https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package',
|
275 |
|
|
'freeradius_view_config.php' => 'https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package',
|
276 |
|
|
'freeradius.xml' => 'https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package',
|
277 |
|
|
'ftpproxy.xml' => 'https://doc.pfsense.org/index.php/FTP_Proxy_package',
|
278 |
|
|
'gwled.php' => 'https://doc.pfsense.org/index.php/Gwled_package',
|
279 |
|
|
'gwled.xml' => 'https://doc.pfsense.org/index.php/Gwled_package',
|
280 |
|
|
'haproxy/haproxy_files.php' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
281 |
|
|
'haproxy/haproxy_global.php' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
282 |
|
|
'haproxy/haproxy_listeners_edit.php' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
283 |
|
|
'haproxy/haproxy_listeners.php' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
284 |
|
|
'haproxy/haproxy_pool_edit.php' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
285 |
|
|
'haproxy/haproxy_pools.php' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
286 |
|
|
'haproxy/haproxy_stats.php' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
287 |
|
|
'haproxy/haproxy_templates.php' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
288 |
|
|
'haproxy.xml' => 'https://doc.pfsense.org/index.php/Haproxy_package',
|
289 |
|
|
'iftop.xml' => 'https://doc.pfsense.org/index.php/Iftop_package',
|
290 |
d9d8a8f1
|
jim-p
|
'iperfserver.xml' => 'https://doc.pfsense.org/index.php/Iperf_package',
|
291 |
|
|
'iperf.xml' => 'https://doc.pfsense.org/index.php/Iperf_package',
|
292 |
6dbc42de
|
jim-p
|
'ladvd.xml' => 'https://doc.pfsense.org/index.php/LADVD_package',
|
293 |
|
|
'lcdproc.xml' => 'https://doc.pfsense.org/index.php/LCDProc_package',
|
294 |
|
|
'lightsquid.xml' => 'https://doc.pfsense.org/index.php/Lightsquid_package',
|
295 |
|
|
'mailreport.xml' => 'https://doc.pfsense.org/index.php/Mail_Reports_package',
|
296 |
|
|
'mtr-nox11.xml' => 'https://doc.pfsense.org/index.php/MTR_package',
|
297 |
|
|
'net-snmp_communities.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
298 |
|
|
'net-snmptrapd_communities.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
299 |
|
|
'net-snmptrapd_formats.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
300 |
|
|
'net-snmptrapd_forwards.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
301 |
|
|
'net-snmptrapd_traphandles.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
302 |
|
|
'net-snmptrapd_users.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
303 |
|
|
'net-snmptrapd.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
304 |
|
|
'net-snmp_trapgen.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
305 |
|
|
'net-snmp_users.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
306 |
|
|
'net-snmp.xml' => 'https://doc.pfsense.org/index.php/NET-SNMP_package',
|
307 |
|
|
'nmap.xml' => 'https://doc.pfsense.org/index.php/Nmap_package',
|
308 |
|
|
'notes.xml' => 'https://doc.pfsense.org/index.php/Notes_package',
|
309 |
|
|
'nrpe.xml' => 'https://doc.pfsense.org/index.php/NRPE_package',
|
310 |
d9d8a8f1
|
jim-p
|
'ntopng.xml' => 'https://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage',
|
311 |
6dbc42de
|
jim-p
|
'nut_settings.php' => 'https://doc.pfsense.org/index.php/Nut_package',
|
312 |
|
|
'nut_status.php' => 'https://doc.pfsense.org/index.php/Nut_package',
|
313 |
d9d8a8f1
|
jim-p
|
'nut.xml' => 'https://doc.pfsense.org/index.php/Nut_package',
|
314 |
|
|
'openbgpd_groups.xml' => 'https://doc.pfsense.org/index.php/OpenBGPD_package',
|
315 |
|
|
'openbgpd_neighbors.xml' => 'https://doc.pfsense.org/index.php/OpenBGPD_package',
|
316 |
6dbc42de
|
jim-p
|
'openbgpd_raw.php' => 'https://doc.pfsense.org/index.php/OpenBGPD_package',
|
317 |
|
|
'openbgpd_status.php' => 'https://doc.pfsense.org/index.php/OpenBGPD_package',
|
318 |
d9d8a8f1
|
jim-p
|
'openbgpd.xml' => 'https://doc.pfsense.org/index.php/OpenBGPD_package',
|
319 |
|
|
'open-vm-tools.xml' => 'https://doc.pfsense.org/index.php/Open_VM_Tools_package',
|
320 |
6dbc42de
|
jim-p
|
'packages/backup/backup_edit.php' => 'https://doc.pfsense.org/index.php/Backup_package',
|
321 |
|
|
'packages/backup/backup.php' => 'https://doc.pfsense.org/index.php/Backup_package',
|
322 |
|
|
'packages/cron/cron_edit.php' => 'https://doc.pfsense.org/index.php/Cron_package',
|
323 |
|
|
'packages/cron/cron.php' => 'https://doc.pfsense.org/index.php/Cron_package',
|
324 |
|
|
'packages/cron/index.php' => 'https://doc.pfsense.org/index.php/Cron_package',
|
325 |
|
|
'packages/lcdproc/index.php' => 'https://doc.pfsense.org/index.php/LCDProc_package',
|
326 |
|
|
'packages/lcdproc/lcdproc.php' => 'https://doc.pfsense.org/index.php/LCDProc_package',
|
327 |
|
|
'packages/lcdproc/lcdproc_screens.php' => 'https://doc.pfsense.org/index.php/LCDProc_package',
|
328 |
|
|
'pfblockerng/pfblockerng_alerts_ar.php' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
329 |
|
|
'pfblockerng/pfblockerng_alerts.php' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
330 |
|
|
'pfblockerng/pfblockerng_dnsbl_easylist.xml' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
331 |
|
|
'pfblockerng/pfblockerng_dnsbl_lists.xml' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
332 |
|
|
'pfblockerng/pfblockerng_dnsbl.xml' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
333 |
|
|
'pfblockerng/pfblockerng_log.php' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
334 |
|
|
'pfblockerng/pfblockerng.php' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
335 |
|
|
'pfblockerng/pfblockerng_sync.xml' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
336 |
|
|
'pfblockerng/pfblockerng_threats.php' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
337 |
|
|
'pfblockerng/pfblockerng_update.php' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
338 |
|
|
'pfblockerng/pfblockerng_v4lists.xml' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
339 |
|
|
'pfblockerng/pfblockerng_v6lists.xml' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
340 |
|
|
'pfblockerng/www/index.php' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
341 |
|
|
'pfblockerng.xml' => 'https://doc.pfsense.org/index.php/Pfblocker',
|
342 |
|
|
'quagga_ospfd_interfaces.xml' => 'https://doc.pfsense.org/index.php/Quagga_package',
|
343 |
|
|
'quagga_ospfd_raw.xml' => 'https://doc.pfsense.org/index.php/Quagga_package',
|
344 |
|
|
'quagga_ospfd.xml' => 'https://doc.pfsense.org/index.php/Quagga_package',
|
345 |
d9d8a8f1
|
jim-p
|
'routed.xml' => 'https://doc.pfsense.org/index.php/Routing_Information_Protocol_(RIP)', # RIP
|
346 |
6dbc42de
|
jim-p
|
'services_servicewatchdog_add.php' => 'https://doc.pfsense.org/index.php/Service_Watchdog_package',
|
347 |
|
|
'services_servicewatchdog.php' => 'https://doc.pfsense.org/index.php/Service_Watchdog_package',
|
348 |
|
|
'servicewatchdog.xml' => 'https://doc.pfsense.org/index.php/Service_Watchdog_package',
|
349 |
|
|
'shellcmd.xml' => 'https://doc.pfsense.org/index.php/Executing_commands_at_boot_time',
|
350 |
|
|
'siproxd_registered_phones.php' => 'https://doc.pfsense.org/index.php/Siproxd_package',
|
351 |
d9d8a8f1
|
jim-p
|
'siproxdusers.xml' => 'https://doc.pfsense.org/index.php/Siproxd_package',
|
352 |
|
|
'siproxd.xml' => 'https://doc.pfsense.org/index.php/Siproxd_package',
|
353 |
38d21414
|
jim-p
|
'snort/snort_alerts.php' => 'https://doc.pfsense.org/index.php/Snort_alerts',
|
354 |
d9d8a8f1
|
jim-p
|
'snort/snort_barnyard.php' => 'https://doc.pfsense.org/index.php/Snort_barnyard2',
|
355 |
38d21414
|
jim-p
|
'snort/snort_blocked.php' => 'https://doc.pfsense.org/index.php/Snort_blocked_hosts',
|
356 |
d9d8a8f1
|
jim-p
|
'snort/snort_define_servers.php' => 'https://doc.pfsense.org/index.php/Snort_define_servers',
|
357 |
6dbc42de
|
jim-p
|
'snort/snort_download_rules.php' => 'https://doc.pfsense.org/index.php/Snort_updates',
|
358 |
d9d8a8f1
|
jim-p
|
'snort/snort_download_updates.php' => 'https://doc.pfsense.org/index.php/Snort_updates',
|
359 |
6dbc42de
|
jim-p
|
'snort/snort_edit_hat_data.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
360 |
|
|
'snort/snort_frag3_engine.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
361 |
|
|
'snort/snort_ftp_client_engine.php' => 'https://doc.pfsense.org/index.php/Snort_preprocessors',
|
362 |
|
|
'snort/snort_ftp_server_engine.php' => 'https://doc.pfsense.org/index.php/Snort_preprocessors',
|
363 |
|
|
'snort/snort_httpinspect_engine.php' => 'https://doc.pfsense.org/index.php/Snort_preprocessors',
|
364 |
|
|
'snort/snort_import_aliases.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
365 |
|
|
'snort/snort_interface_logs.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
366 |
a5c0aaa1
|
bmeeks8
|
'snort/snort_interfaces_edit.php' => 'https://doc.pfsense.org/index.php/Snort_interfaces_edit',
|
367 |
d9d8a8f1
|
jim-p
|
'snort/snort_interfaces_global.php' => 'https://doc.pfsense.org/index.php/Snort_interfaces_global',
|
368 |
|
|
'snort/snort_interfaces.php' => 'https://doc.pfsense.org/index.php/Snort_interfaces',
|
369 |
|
|
'snort/snort_interfaces_suppress_edit.php' => 'https://doc.pfsense.org/index.php/Snort_suppress_list',
|
370 |
|
|
'snort/snort_interfaces_suppress.php' => 'https://doc.pfsense.org/index.php/Snort_suppress_list',
|
371 |
|
|
'snort/snort_ip_list_mgmt.php' => 'https://doc.pfsense.org/index.php/Snort_ip_list_mgmt',
|
372 |
6dbc42de
|
jim-p
|
'snort/snort_iprep_list_browser.php' => 'https://doc.pfsense.org/index.php/Snort_ip_reputation',
|
373 |
d9d8a8f1
|
jim-p
|
'snort/snort_ip_reputation.php' => 'https://doc.pfsense.org/index.php/Snort_ip_reputation_preprocessor',
|
374 |
6dbc42de
|
jim-p
|
'snort/snort_list_view.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
375 |
|
|
'snort/snort_log_mgmt.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
376 |
d9d8a8f1
|
jim-p
|
'snort/snort_passlist_edit.php' => 'https://doc.pfsense.org/index.php/Snort_passlist',
|
377 |
|
|
'snort/snort_passlist.php' => 'https://doc.pfsense.org/index.php/Snort_passlist',
|
378 |
|
|
'snort/snort_preprocessors.php' => 'https://doc.pfsense.org/index.php/Snort_preprocessors',
|
379 |
6dbc42de
|
jim-p
|
'snort/snort_rules_edit.php' => 'https://doc.pfsense.org/index.php/Snort_rules',
|
380 |
a5c0aaa1
|
bmeeks8
|
'snort/snort_rulesets.php' => 'https://doc.pfsense.org/index.php/Snort_rulesets',
|
381 |
6dbc42de
|
jim-p
|
'snort/snort_rules_flowbits.php' => 'https://doc.pfsense.org/index.php/Snort_rules',
|
382 |
a5c0aaa1
|
bmeeks8
|
'snort/snort_rules.php' => 'https://doc.pfsense.org/index.php/Snort_rules',
|
383 |
6dbc42de
|
jim-p
|
'snort/snort_select_alias.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
384 |
|
|
'snort/snort_sid_mgmt.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
385 |
|
|
'snort/snort_stream5_engine.php' => 'https://doc.pfsense.org/index.php/Category:Snort',
|
386 |
a5c0aaa1
|
bmeeks8
|
'snort/snort_sync.xml' => 'https://doc.pfsense.org/index.php/Snort_sync',
|
387 |
d9d8a8f1
|
jim-p
|
'snort.xml' => 'https://doc.pfsense.org/index.php/Setup_Snort_Package',
|
388 |
6dbc42de
|
jim-p
|
'softflowd.xml' => 'https://doc.pfsense.org/index.php/Exporting_NetFlow_with_softflowd',
|
389 |
|
|
'sqstat/sqstat.class.php' => 'https://doc.pfsense.org/index.php/Sqstat_package',
|
390 |
|
|
'sqstat/sqstat.php' => 'https://doc.pfsense.org/index.php/Sqstat_package',
|
391 |
|
|
'squid_antivirus.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
392 |
d9d8a8f1
|
jim-p
|
'squid_auth.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
393 |
|
|
'squid_cache.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
394 |
|
|
'squidguard_acl.xml' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
395 |
|
|
'squidguard_default.xml' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
396 |
|
|
'squidguard_dest.xml' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
397 |
|
|
'squidguard_rewr.xml' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
398 |
6dbc42de
|
jim-p
|
'squidGuard/squidguard_blacklist.php' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
399 |
|
|
'squidGuard/squidguard_log.php' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
400 |
|
|
'squidguard_sync.xml' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
401 |
d9d8a8f1
|
jim-p
|
'squidguard_time.xml' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
402 |
|
|
'squidguard.xml' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
403 |
6dbc42de
|
jim-p
|
'squidguard.xml' => 'https://doc.pfsense.org/index.php/SquidGuard_package',
|
404 |
|
|
'squid_log_parser.php' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
405 |
|
|
'squid_monitor_data.php' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
406 |
|
|
'squid_monitor.php' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
407 |
|
|
'squid_reverse_general.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
408 |
|
|
'squid_reverse_peer.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
409 |
|
|
'squid_reverse_redir.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
410 |
|
|
'squid_reverse_sync.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
411 |
|
|
'squid_reverse_uri.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
412 |
|
|
'squid_sync.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
413 |
d9d8a8f1
|
jim-p
|
'squid_traffic.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
414 |
|
|
'squid_upstream.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
415 |
|
|
'squid_users.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
416 |
|
|
'squid.xml' => 'https://doc.pfsense.org/index.php/Category:Squid',
|
417 |
6dbc42de
|
jim-p
|
'status_ladvd.php' => 'https://doc.pfsense.org/index.php/LADVD_package',
|
418 |
|
|
'status_mail_report_add_cmd.php' => 'https://doc.pfsense.org/index.php/Mail_Reports_package',
|
419 |
|
|
'status_mail_report_add_log.php' => 'https://doc.pfsense.org/index.php/Mail_Reports_package',
|
420 |
|
|
'status_mail_report_edit.php' => 'https://doc.pfsense.org/index.php/Mail_Reports_package',
|
421 |
|
|
'status_mail_report.php' => 'https://doc.pfsense.org/index.php/Mail_Reports_package',
|
422 |
|
|
'status_ospfd.php' => 'https://doc.pfsense.org/index.php/Quagga_package',
|
423 |
|
|
'status_tinc.php' => 'https://doc.pfsense.org/index.php/Tinc_package',
|
424 |
|
|
'status_traffic_totals.php' => 'https://doc.pfsense.org/index.php/Traffic_Totals_package',
|
425 |
2dd9b120
|
jim-p
|
'stunnel_certs.xml' => 'https://doc.pfsense.org/index.php/Stunnel_package',
|
426 |
d9d8a8f1
|
jim-p
|
'stunnel.xml' => 'https://doc.pfsense.org/index.php/Stunnel_package',
|
427 |
6dbc42de
|
jim-p
|
'sudo.xml' => 'https://doc.pfsense.org/index.php/Sudo_Package',
|
428 |
|
|
'suricata/suricata_alerts.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
429 |
|
|
'suricata/suricata_app_parsers.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
430 |
|
|
'suricata/suricata_barnyard.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
431 |
|
|
'suricata/suricata_blocked.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
432 |
|
|
'suricata/suricata_define_vars.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
433 |
|
|
'suricata/suricata_download_rules.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
434 |
|
|
'suricata/suricata_download_updates.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
435 |
|
|
'suricata/suricata_flow_stream.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
436 |
|
|
'suricata/suricata_global.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
437 |
|
|
'suricata/suricata_import_aliases.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
438 |
|
|
'suricata/suricata_interfaces_edit.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
439 |
|
|
'suricata/suricata_interfaces.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
440 |
|
|
'suricata/suricata_ip_list_mgmt.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
441 |
|
|
'suricata/suricata_iprep_list_browser.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
442 |
|
|
'suricata/suricata_ip_reputation.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
443 |
|
|
'suricata/suricata_libhtp_policy_engine.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
444 |
|
|
'suricata/suricata_list_view.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
445 |
|
|
'suricata/suricata_logs_browser.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
446 |
|
|
'suricata/suricata_logs_mgmt.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
447 |
|
|
'suricata/suricata_os_policy_engine.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
448 |
|
|
'suricata/suricata_passlist_edit.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
449 |
|
|
'suricata/suricata_passlist.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
450 |
|
|
'suricata/suricata_rules_edit.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
451 |
|
|
'suricata/suricata_rulesets.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
452 |
|
|
'suricata/suricata_rules_flowbits.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
453 |
|
|
'suricata/suricata_rules.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
454 |
|
|
'suricata/suricata_select_alias.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
455 |
|
|
'suricata/suricata_sid_mgmt.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
456 |
|
|
'suricata/suricata_suppress_edit.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
457 |
|
|
'suricata/suricata_suppress.php' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
458 |
|
|
'suricata/suricata_sync.xml' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
459 |
|
|
'suricata.xml' => 'https://doc.pfsense.org/index.php/Suricata_package',
|
460 |
|
|
'syslog-ng_advanced.xml' => 'https://doc.pfsense.org/index.php/Syslog-ng_package',
|
461 |
|
|
'syslog-ng_log_viewer.php' => 'https://doc.pfsense.org/index.php/Syslog-ng_package',
|
462 |
|
|
'syslog-ng.xml' => 'https://doc.pfsense.org/index.php/Syslog-ng_package',
|
463 |
|
|
'system_patches_edit.php' => 'https://doc.pfsense.org/index.php/System_Patches',
|
464 |
|
|
'system_patches.php' => 'https://doc.pfsense.org/index.php/System_Patches',
|
465 |
|
|
'systempatches.xml' => 'https://doc.pfsense.org/index.php/System_Patches',
|
466 |
|
|
'tftpd.xml' => 'https://doc.pfsense.org/index.php/Tftpd_package',
|
467 |
|
|
'tftp_files.php' => 'https://doc.pfsense.org/index.php/Tftpd_package',
|
468 |
|
|
'tinc_hosts.xml' => 'https://doc.pfsense.org/index.php/Tinc_package',
|
469 |
|
|
'tinc.xml' => 'https://doc.pfsense.org/index.php/Tinc_package',
|
470 |
5449b0c7
|
jim-p
|
'vpc_vpn_wizard.xml' => 'https://www.netgate.com/docs/pfsense/solutions/aws-vpn-appliance/vpc-wizard-guide.html',
|
471 |
6dbc42de
|
jim-p
|
'zabbix-agent-lts.xml' => 'https://doc.pfsense.org/index.php/Zabbix_Agent_package',
|
472 |
|
|
'zabbix-proxy-lts.xml' => 'https://doc.pfsense.org/index.php/Zabbix_Proxy_package',
|
473 |
5262b29a
|
jim-p
|
);
|
474 |
|
|
|
475 |
|
|
$pagename = "";
|
476 |
|
|
/* Check for parameter "page". */
|
477 |
cbb82e6b
|
Steve Beaver
|
if ($_REQUEST && isset($_REQUEST['page'])) {
|
478 |
|
|
$pagename = $_REQUEST['page'];
|
479 |
5262b29a
|
jim-p
|
}
|
480 |
|
|
|
481 |
|
|
/* If "page" is not found, check referring URL */
|
482 |
|
|
if (empty($pagename)) {
|
483 |
|
|
/* Attempt to parse out filename */
|
484 |
|
|
$uri_split = "";
|
485 |
|
|
preg_match("/\/(.*)\?(.*)/", $_SERVER["HTTP_REFERER"], $uri_split);
|
486 |
|
|
|
487 |
|
|
/* If there was no match, there were no parameters, just grab the filename
|
488 |
|
|
Otherwise, use the matched filename from above. */
|
489 |
|
|
if (empty($uri_split[0])) {
|
490 |
ae5c8d0e
|
Warren Baker
|
$pagename = ltrim(parse_url($_SERVER["HTTP_REFERER"], PHP_URL_PATH), '/');
|
491 |
5262b29a
|
jim-p
|
} else {
|
492 |
|
|
$pagename = $uri_split[1];
|
493 |
|
|
}
|
494 |
|
|
|
495 |
3903add3
|
Phil Davis
|
/* If the referrer was index.php then this was a redirect to help.php
|
496 |
|
|
because help.php was the first page the user has priv to.
|
497 |
|
|
In that case we do not want to redirect off to the dashboard help. */
|
498 |
|
|
if ($pagename == "index.php") {
|
499 |
|
|
$pagename = "";
|
500 |
5262b29a
|
jim-p
|
}
|
501 |
|
|
|
502 |
|
|
/* If the filename is pkg_edit.php or wizard.php, reparse looking
|
503 |
a9c0ebfe
|
jim-p
|
for the .xml filename */
|
504 |
b873ded5
|
jim-p
|
if (($pagename == "pkg.php") || ($pagename == "pkg_edit.php") || ($pagename == "wizard.php")) {
|
505 |
5262b29a
|
jim-p
|
$param_split = explode('&', $uri_split[2]);
|
506 |
|
|
foreach ($param_split as $param) {
|
507 |
|
|
if (substr($param, 0, 4) == "xml=") {
|
508 |
|
|
$xmlfile = explode('=', $param);
|
509 |
|
|
$pagename = $xmlfile[1];
|
510 |
|
|
}
|
511 |
|
|
}
|
512 |
|
|
}
|
513 |
|
|
}
|
514 |
|
|
|
515 |
|
|
/* Using the derived page name, attempt to find in the URL mapping hash */
|
516 |
3903add3
|
Phil Davis
|
if (strlen($pagename) > 0) {
|
517 |
|
|
if (array_key_exists($pagename, $helppages)) {
|
518 |
|
|
$helppage = $helppages[$pagename];
|
519 |
|
|
} else {
|
520 |
|
|
// If no specific page was found, use a generic help page
|
521 |
|
|
$helppage = 'https://doc.pfsense.org/index.php/No_Help_Found';
|
522 |
|
|
}
|
523 |
|
|
|
524 |
|
|
/* Redirect to help page. */
|
525 |
|
|
header("Location: {$helppage}");
|
526 |
5262b29a
|
jim-p
|
}
|
527 |
|
|
|
528 |
3903add3
|
Phil Davis
|
// No page name was determined, so show a message.
|
529 |
|
|
$pgtitle = array(gettext("Help"), gettext("About this Page"));
|
530 |
|
|
require_once("head.inc");
|
531 |
5262b29a
|
jim-p
|
|
532 |
3903add3
|
Phil Davis
|
if (is_array($allowedpages) && str_replace('*', '', $allowedpages[0]) == "help.php") {
|
533 |
|
|
if (count($allowedpages) == 1) {
|
534 |
|
|
print_info_box(gettext("The Help page is the only page this user has privilege for."));
|
535 |
|
|
} else {
|
536 |
|
|
print_info_box(gettext("Displaying the Help page because it is the first page this user has privilege for."));
|
537 |
|
|
}
|
538 |
|
|
} else {
|
539 |
|
|
print_info_box(gettext("Help page accessed directly without any page parameter."));
|
540 |
5262b29a
|
jim-p
|
}
|
541 |
|
|
|
542 |
3903add3
|
Phil Davis
|
include("foot.inc");
|
543 |
5262b29a
|
jim-p
|
?>
|