summaryrefslogtreecommitdiffstats
path: root/usr/local/www/help.php
blob: c64330d6ca3afcd8022a3ef8983a5dac0e5f9dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
<?php
/* Redirector for Contextual Help System
 * (c) 2009 Jim Pingle <jimp@pfsense.org>
 *
 */

require_once("guiconfig.inc");

/* Define hash of jumpto url maps */

/* Links to categories could probably be more specific. */
$helppages = array(
	/* These pages are confirmed to work and have usable content */
	'index.php' => 'http://doc.pfsense.org/index.php/Dashboard',
	'license.php' => 'http://www.pfsense.org/index.php?option=com_content&task=view&id=42&Itemid=62',
	'miniupnpd.xml' => 'http://doc.pfsense.org/index.php/What_is_UPNP%3F',
	'status_upnp.php' => 'http://doc.pfsense.org/index.php/What_is_UPNP%3F',
	'firewall_virtual_ip.php' => 'http://doc.pfsense.org/index.php/What_are_Virtual_IP_Addresses%3F',
	'firewall_virtual_ip_edit.php' => 'http://doc.pfsense.org/index.php/What_are_Virtual_IP_Addresses%3F',
	'firewall_aliases.php' => 'http://doc.pfsense.org/index.php/Aliases',
	'firewall_aliases_edit.php' => 'http://doc.pfsense.org/index.php/Aliases',
	'firewall_aliases_import.php' => 'http://doc.pfsense.org/index.php/Aliases',
	'firewall_nat_out.php' => 'http://doc.pfsense.org/index.php/Outbound_NAT',
	'firewall_nat_out_edit.php' => 'http://doc.pfsense.org/index.php/Outbound_NAT',
	'firewall_rules.php' => 'http://doc.pfsense.org/index.php/Firewall_Rule_Basics',
	'firewall_rules_edit.php' => 'http://doc.pfsense.org/index.php/Firewall_Rule_Basics',
	'firewall_rules_schedule_logic.php' => 'http://doc.pfsense.org/index.php/Firewall_Rule_Schedules',
	'firewall_schedule.php' => 'http://doc.pfsense.org/index.php/Firewall_Rule_Schedules',
	'firewall_schedule_edit.php' => 'http://doc.pfsense.org/index.php/Firewall_Rule_Schedules',
	'interfaces_vlan.php' => 'http://doc.pfsense.org/index.php/VLAN_Trunking',
	'interfaces_vlan_edit.php' => 'http://doc.pfsense.org/index.php/VLAN_Trunking',
	'diag_routes.php' => 'http://doc.pfsense.org/index.php/Viewing_Routes',
	'diag_packet_capture.php' => 'http://doc.pfsense.org/index.php/Sniffers,_Packet_Capture',
	'diag_system_pftop.php' => 'http://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage%3F#pftop',
	'status_rrd_graph.php' => "http://doc.pfsense.org/index.php/RRD_Graphs",
	'status_rrd_graph_img.php' => "http://doc.pfsense.org/index.php/RRD_Graphs",
	'status_rrd_graph_settings.php' => "http://doc.pfsense.org/index.php/RRD_Graphs",
	'firewall_nat.php' => 'http://doc.pfsense.org/index.php/How_can_I_forward_ports_with_pfSense%3F',
	'firewall_nat_edit.php' => 'http://doc.pfsense.org/index.php/How_can_I_forward_ports_with_pfSense%3F',
	'diag_arp.php' => 'http://doc.pfsense.org/index.php/ARP_Table',
	'diag_backup.php' => 'http://doc.pfsense.org/index.php/Configuration_Backup_and_Restore',
	'diag_confbak.php' => 'http://doc.pfsense.org/index.php/Configuration_History',
	'diag_defaults.php' => 'http://doc.pfsense.org/index.php/Factory_Defaults',
	'firewall_shaper.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
	'firewall_shaper_edit.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
	'firewall_shaper_layer7.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
	'firewall_shaper_queues.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
	'firewall_shaper_queues_edit.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
	'firewall_shaper_vinterface.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
	'firewall_shaper_wizards.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
	'status_queues.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide',
	'status_dhcp_leases.php' => 'http://doc.pfsense.org/index.php/DHCP_Leases',
	'diag_dns.php' => 'http://doc.pfsense.org/index.php/DNS_Lookup',
	'diag_dump_states.php' => 'http://doc.pfsense.org/index.php/Show_States',
	'diag_resetstate.php' => 'http://doc.pfsense.org/index.php/Reset_States',
	'diag_logs.php' => 'http://doc.pfsense.org/index.php/System_Logs',
	'diag_logs_auth.php' => 'http://doc.pfsense.org/index.php/Captive_Portal_Authentication_Logs',
	'diag_logs_dhcp.php' => 'http://doc.pfsense.org/index.php/DHCP_Logs',
	'diag_logs_filter.php' => 'http://doc.pfsense.org/index.php/Firewall_Logs',
	'diag_logs_filter_dynamic.php' => 'http://doc.pfsense.org/index.php/Firewall_Logs',
	'diag_logs_filter_summary.php' => 'http://doc.pfsense.org/index.php/Firewall_Logs',
	'diag_logs_ntpd.php' => 'http://doc.pfsense.org/index.php/NTP_Logs',
	'diag_logs_ppp.php' => 'http://doc.pfsense.org/index.php/PPP_Logs',
	'diag_logs_relayd.php' => 'http://doc.pfsense.org/index.php/Load_Balancer_Logs',
	'diag_logs_settings.php' => 'http://doc.pfsense.org/index.php/Log_Settings',
	'diag_logs_vpn.php' => 'http://doc.pfsense.org/index.php/PPTP_VPN_Logs',
	'diag_logs_ipsec.php' => 'http://doc.pfsense.org/index.php/IPsec_Logs',
	'diag_logs_openvpn.php' => 'http://doc.pfsense.org/index.php/OpenVPN_Logs',
	'diag_nanobsd.php' => 'http://doc.pfsense.org/index.php/NanoBSD_Diagnostics',
	'diag_patterns.php' => 'http://doc.pfsense.org/index.php/Layer7_Pattern_Diagnostics',
	'diag_ping.php' => 'http://doc.pfsense.org/index.php/Ping_Host',
	'diag_pkglogs.php' => 'http://doc.pfsense.org/index.php/Package_Logs',
	'diag_tables.php' => 'http://doc.pfsense.org/index.php/Tables',
	'diag_system_activity.php' => 'http://doc.pfsense.org/index.php/System_Activity',
	'diag_traceroute.php' => 'http://doc.pfsense.org/index.php/Traceroute',
	'easyrule.php' => 'http://doc.pfsense.org/index.php/Easy_Rule',
	'edit.php' => 'http://doc.pfsense.org/index.php/Edit_File',
	'exec.php' => 'http://doc.pfsense.org/index.php/Execute_Command',
	'firewall_nat_1to1.php' => 'http://doc.pfsense.org/index.php/1:1_NAT',
	'firewall_nat_1to1_edit.php' => 'http://doc.pfsense.org/index.php/1:1_NAT',
	'halt.php' => 'http://doc.pfsense.org/index.php/Halt_System',
	'reboot.php' => 'http://doc.pfsense.org/index.php/Reboot_System',
	'status_filter_reload.php' => 'http://doc.pfsense.org/index.php/Filter_Reload_Status',
	'status_gateway_groups.php' => 'http://doc.pfsense.org/index.php/Gateway_Status',
	'status_gateways.php' => 'http://doc.pfsense.org/index.php/Gateway_Status',
	'status_graph.php' => 'http://doc.pfsense.org/index.php/Traffic_Graph',
	'status_graph_cpu.php' => 'http://doc.pfsense.org/index.php/CPU_Load',
	'status_interfaces.php' => 'http://doc.pfsense.org/index.php/Interface_Status',
	'status_services.php' => 'http://doc.pfsense.org/index.php/Services_Status',
	'status_wireless.php' => 'http://doc.pfsense.org/index.php/Wireless_Status',
	'pkg_mgr.php' => 'http://doc.pfsense.org/index.php/Package_Manager',
	'pkg_mgr_install.php' => 'http://doc.pfsense.org/index.php/Package_Manager',
	'pkg_mgr_installed.php' => 'http://doc.pfsense.org/index.php/Package_Manager',
	'pkg_mgr_settings.php' => 'http://doc.pfsense.org/index.php/Package_Manager_Settings',
	'interfaces.php' => 'http://doc.pfsense.org/index.php/Interface_Settings',
	'interfaces_assign.php' => 'http://doc.pfsense.org/index.php/Assign_Interfaces',
	'interfaces_bridge.php' => 'http://doc.pfsense.org/index.php/Interface_Bridges',
	'interfaces_bridge_edit.php' => 'http://doc.pfsense.org/index.php/Interface_Bridges',
	'interfaces_gif.php' => 'http://doc.pfsense.org/index.php/GIF_Interfaces',
	'interfaces_gif_edit.php' => 'http://doc.pfsense.org/index.php/GIF_Interfaces',
	'interfaces_gre.php' => 'http://doc.pfsense.org/index.php/GRE_Interfaces',
	'interfaces_gre_edit.php' => 'http://doc.pfsense.org/index.php/GRE_Interfaces',
	'interfaces_groups.php' => 'http://doc.pfsense.org/index.php/Interface_Groups',
	'interfaces_groups_edit.php' => 'http://doc.pfsense.org/index.php/Interface_Groups',
	'interfaces_lagg.php' => 'http://doc.pfsense.org/index.php/LAGG_Interfaces',
	'interfaces_lagg_edit.php' => 'http://doc.pfsense.org/index.php/LAGG_Interfaces',
	'interfaces_ppps.php' => 'http://doc.pfsense.org/index.php/PPP_Interfaces',
	'interfaces_ppps_edit.php' => 'http://doc.pfsense.org/index.php/PPP_Interfaces',
	'interfaces_qinq.php' => 'http://doc.pfsense.org/index.php/QinQ_Interfaces',
	'interfaces_qinq_edit.php' => 'http://doc.pfsense.org/index.php/QinQ_Interfaces',
	'services_dyndns.php' => 'http://doc.pfsense.org/index.php/Dynamic_DNS',
	'services_dyndns_edit.php' => 'http://doc.pfsense.org/index.php/Dynamic_DNS',
	'services_rfc2136.php' => 'http://doc.pfsense.org/index.php/Dynamic_DNS',
	'services_rfc2136_edit.php' => 'http://doc.pfsense.org/index.php/Dynamic_DNS',
	'services_dhcp.php' => 'http://doc.pfsense.org/index.php/DHCP_Server',
	'services_dhcp_edit.php' => 'http://doc.pfsense.org/index.php/DHCP_Server',
	'services_dhcp_relay.php' => 'http://doc.pfsense.org/index.php/DHCP_Relay',
	'services_dnsmasq.php' => 'http://doc.pfsense.org/index.php/DNS_Forwarder',
	'services_dnsmasq_domainoverride_edit.php' => 'http://doc.pfsense.org/index.php/DNS_Forwarder',
	'services_dnsmasq_edit.php' => 'http://doc.pfsense.org/index.php/DNS_Forwarder',
	'services_igmpproxy.php' => 'http://doc.pfsense.org/index.php/IGMP_Proxy',
	'services_igmpproxy_edit.php' => 'http://doc.pfsense.org/index.php/IGMP_Proxy',
	'services_snmp.php' => 'http://doc.pfsense.org/index.php/SNMP_Daemon',
	'services_wol.php' => 'http://doc.pfsense.org/index.php/Wake_on_LAN',
	'services_wol_edit.php' => 'http://doc.pfsense.org/index.php/Wake_on_LAN',
	'routed.xml' => 'http://doc.pfsense.org/index.php/Routing_Information_Protocol_(RIP)', # RIP
	'system.php' => 'http://doc.pfsense.org/index.php/General_Setup_(2.0)',
	'system_advanced_admin.php' => 'http://doc.pfsense.org/index.php/Advanced_Setup_(2.0)',
	'system_advanced_firewall.php' => 'http://doc.pfsense.org/index.php/Advanced_Setup_(2.0)#Firewall.2FNAT',
	'system_advanced_misc.php' => 'http://doc.pfsense.org/index.php/Advanced_Setup_(2.0)#Miscellaneous',
	'system_advanced_network.php' => 'http://doc.pfsense.org/index.php/Advanced_Setup_(2.0)#Firewall.2FNAT',
	'system_advanced_notifications.php' => 'http://doc.pfsense.org/index.php/Advanced_Setup_(2.0)#Notifications',
	'system_advanced_sysctl.php' => 'http://doc.pfsense.org/index.php/Advanced_Setup_(2.0)#System_Tunables',
	'system_advanced.php' => 'http://doc.pfsense.org/index.php/Advanced_Setup_(1.2.x)', # 1.2.x only
	'system_advanced_create_certs.php' => 'http://doc.pfsense.org/index.php/Advanced_Setup_(1.2.x)', # 1.2.x only
	'system_firmware.php' => 'http://doc.pfsense.org/index.php/Firmware_Updates',
	'system_firmware_auto.php' => 'http://doc.pfsense.org/index.php/Firmware_Updates',
	'system_firmware_check.php' => 'http://doc.pfsense.org/index.php/Firmware_Updates',
	'system_firmware_settings.php' => 'http://doc.pfsense.org/index.php/Firmware_Updates',
	'system_gateway_groups.php' => 'http://doc.pfsense.org/index.php/Gateway_Settings',
	'system_gateway_groups_edit.php' => 'http://doc.pfsense.org/index.php/Gateway_Settings',
	'system_gateways.php' => 'http://doc.pfsense.org/index.php/Gateway_Settings',
	'system_gateways_edit.php' => 'http://doc.pfsense.org/index.php/Gateway_Settings',
	'system_gateways_settings.php' => 'http://doc.pfsense.org/index.php/Gateway_Settings',
	'system_routes.php' => 'http://doc.pfsense.org/index.php/Static_Routes',
	'system_routes_edit.php' => 'http://doc.pfsense.org/index.php/Static_Routes',
	'system_authservers.php' => 'http://doc.pfsense.org/index.php/User_Authentication_Servers',
	'system_groupmanager.php' => 'http://doc.pfsense.org/index.php/Group_Manager',
	'system_groupmanager_addprivs.php' => 'http://doc.pfsense.org/index.php/Group_Manager',
	'system_usermanager.php' => 'http://doc.pfsense.org/index.php/User_Manager',
	'system_usermanager_addprivs.php' => 'http://doc.pfsense.org/index.php/User_Manager',
	'system_usermanager_settings.php' => 'http://doc.pfsense.org/index.php/User_Manager',
	'system_usermanager_settings_ldapacpicker.php' => 'http://doc.pfsense.org/index.php/User_Manager',
	'system_usermanager_settings_test.php' => 'http://doc.pfsense.org/index.php/User_Manager',
	'system_usermanager_passwordmg.php' => 'http://doc.pfsense.org/index.php/User_Manager',
	'system_camanager.php' => 'http://doc.pfsense.org/index.php/Certificate_Management',
	'system_certmanager.php' => 'http://doc.pfsense.org/index.php/Certificate_Management',
	'vpn_l2tp.php' => 'http://doc.pfsense.org/index.php/L2TP_VPN_Settings',
	'vpn_l2tp_users.php' => 'http://doc.pfsense.org/index.php/L2TP_VPN_Settings',
	'vpn_l2tp_users_edit.php' => 'http://doc.pfsense.org/index.php/L2TP_VPN_Settings',
	'vpn_pppoe.php' => 'http://doc.pfsense.org/index.php/PPPoE_Server_Settings',
	'vpn_pppoe_edit.php' => 'http://doc.pfsense.org/index.php/PPPoE_Server_Settings',
	'vpn_pppoe_users.php' => 'http://doc.pfsense.org/index.php/PPPoE_Server_Settings',
	'vpn_pppoe_users_edit.php' => 'http://doc.pfsense.org/index.php/PPPoE_Server_Settings',
	'vpn_pptp.php' => 'http://doc.pfsense.org/index.php/PPTP_VPN_Settings',
	'vpn_pptp_users.php' => 'http://doc.pfsense.org/index.php/PPTP_VPN_Settings',
	'vpn_pptp_users_edit.php' => 'http://doc.pfsense.org/index.php/PPTP_VPN_Settings',
	'olsrd.xml' => 'http://doc.pfsense.org/index.php/OLSR_Daemon',
	'openntpd.xml' => 'http://doc.pfsense.org/index.php/NTP_Server_(OpenNTPD)',
	'diag_ipsec.php' => 'http://doc.pfsense.org/index.php/IPsec_Status',
	'diag_ipsec_sad.php' => 'http://doc.pfsense.org/index.php/IPsec_Status',
	'diag_ipsec_spd.php' => 'http://doc.pfsense.org/index.php/IPsec_Status',
	'vpn_ipsec.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	'vpn_ipsec_mobile.php' => 'http://doc.pfsense.org/index.php/IPsec_Mobile_Clients',
	'vpn_ipsec_phase1.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	'vpn_ipsec_phase2.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	/* These last few IPsec files seem to be from 1.2.x only */
	'vpn_ipsec_ca.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	'vpn_ipsec_ca_edit.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	'vpn_ipsec_ca_edit_create_cert.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	'vpn_ipsec_edit.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	'vpn_ipsec_keys.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	'vpn_ipsec_keys_edit.php' => 'http://doc.pfsense.org/index.php/IPsec_Tunnels',
	'services_captiveportal.php' => 'http://doc.pfsense.org/index.php/Captive_Portal',
	'services_captiveportal_filemanager.php' => 'http://doc.pfsense.org/index.php/Captive_Portal',
	'services_captiveportal_ip.php' => 'http://doc.pfsense.org/index.php/Captive_Portal',
	'services_captiveportal_ip_edit.php' => 'http://doc.pfsense.org/index.php/Captive_Portal',
	'services_captiveportal_mac.php' => 'http://doc.pfsense.org/index.php/Captive_Portal',
	'services_captiveportal_mac_edit.php' => 'http://doc.pfsense.org/index.php/Captive_Portal',
	'services_captiveportal_hostname.php' => 'http://doc.pfsense.org/index.php/Captive_Portal',
	'services_captiveportal_hostname_edit.php' => 'http://doc.pfsense.org/index.php/Captive_Portal',
	'status_captiveportal.php' => 'http://doc.pfsense.org/index.php/Captive_Portal_Status',
	'status_captiveportal_test.php' => 'http://doc.pfsense.org/index.php/Captive_Portal_Status',
	'services_captiveportal_users.php' => 'http://doc.pfsense.org/index.php/Category:Captive_Portal', # 1.2.x only
	'services_captiveportal_users_edit.php' => 'http://doc.pfsense.org/index.php/Category:Captive_Portal', # 1.2.x only
	'services_captiveportal_vouchers.php' => 'http://doc.pfsense.org/index.php/Captive_Portal_Vouchers',
	'services_captiveportal_vouchers_edit.php' => 'http://doc.pfsense.org/index.php/Captive_Portal_Vouchers',
	'status_captiveportal_voucher_rolls.php' => 'http://doc.pfsense.org/index.php/Captive_Portal_Vouchers',
	'status_captiveportal_vouchers.php' => 'http://doc.pfsense.org/index.php/Captive_Portal_Vouchers',
	'status_openvpn.php' => 'http://doc.pfsense.org/index.php/OpenVPN_Status',
	'vpn_openvpn_client.php' => 'http://doc.pfsense.org/index.php/OpenVPN_Settings',
	'vpn_openvpn_csc.php' => 'http://doc.pfsense.org/index.php/OpenVPN_Settings',
	'vpn_openvpn_server.php' => 'http://doc.pfsense.org/index.php/OpenVPN_Settings',
	'openvpn-client-export.xml' => 'http://doc.pfsense.org/index.php/OpenVPN_Client_Exporter', /* Package */
	'vpn_openvpn_export.php' => 'http://doc.pfsense.org/index.php/OpenVPN_Client_Exporter', /* Package */
	/* These last few OpenVPN files seem to be from 1.2.x only */
	'vpn_openvpn.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_ccd.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_ccd_edit.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_cli.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_cli_edit.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_create_certs.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_crl.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_crl_edit.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_srv.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'vpn_openvpn_srv_edit.php' => 'http://doc.pfsense.org/index.php/Category:OpenVPN',
	'diag_authentication.php' => 'http://doc.pfsense.org/index.php/User_Authentication_Servers',
	'diag_limiter_info.php' => 'http://doc.pfsense.org/index.php/Traffic_Shaping_Guide#Display_Pipes',
	'diag_pf_info.php' => 'http://doc.pfsense.org/index.php/Packet_Filter_Information',
	'diag_smart.php' => 'http://doc.pfsense.org/index.php/SMART_Status',
	'diag_states_summary.php' => 'http://doc.pfsense.org/index.php/States_Summary',
	'interfaces_wireless.php' => 'http://doc.pfsense.org/index.php/Wireless_Interfaces',
	'interfaces_wireless_edit.php' => 'http://doc.pfsense.org/index.php/Wireless_Interfaces',
	'system_crlmanager.php' => 'http://doc.pfsense.org/index.php/Certificate_Management',
	'crash_reporter.php' => 'http://doc.pfsense.org/index.php/Unexpected_Reboot_Troubleshooting',

	/* Below here are pages that may need some cleanup or have not been fully looked at yet */

	'carp_status.php' => 'http://doc.pfsense.org/index.php/Category:CARP',
	'carp_settings.xml' => 'http://doc.pfsense.org/index.php/Category:CARP',

	'load_balancer_monitor.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_monitor_edit.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_pool.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_pool_edit.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_relay_action.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_relay_action_edit.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_relay_protocol.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_relay_protocol_edit.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_virtual_server.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'load_balancer_virtual_server_edit.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'status_lb_pool.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',
	'status_lb_vs.php' => 'http://doc.pfsense.org/index.php/Category:Load_balancing',


	/* From here down are packages. Not checking these as strictly, 
	any information is better than nothing. */
	'autoconfigbackup.xml' => 'http://doc.pfsense.org/index.php/AutoConfigBackup',
	'phpservice.xml' => 'http://doc.pfsense.org/index.php/PHPService',
	'anyterm.xml' => 'http://doc.pfsense.org/index.php/AnyTerm_package',
	'avahi.xml' => 'http://doc.pfsense.org/index.php/Avahi_package',
	'squid.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squid_auth.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squid_cache.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squid_extauth.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squid_nac.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squid_ng.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squid_traffic.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squid_upstream.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squid_users.xml' => 'http://doc.pfsense.org/index.php/Category:Squid',
	'squidGuard.xml' => 'http://doc.pfsense.org/index.php/SquidGuard_package',
	'squidguard.xml' => 'http://doc.pfsense.org/index.php/SquidGuard_package',
	'squidguard_acl.xml' => 'http://doc.pfsense.org/index.php/SquidGuard_package',
	'squidguard_default.xml' => 'http://doc.pfsense.org/index.php/SquidGuard_package',
	'squidguard_dest.xml' => 'http://doc.pfsense.org/index.php/SquidGuard_package',
	'squidguard_log.xml' => 'http://doc.pfsense.org/index.php/SquidGuard_package',
	'squidguard_rewr.xml' => 'http://doc.pfsense.org/index.php/SquidGuard_package',
	'squidguard_time.xml' => 'http://doc.pfsense.org/index.php/SquidGuard_package',
	'bandwidthd.xml' => "http://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage%3F",
	'pfflowd.xml' => "http://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage%3F",
	'darkstat.xml' => "http://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage%3F",
	'rate.xml' => "http://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage%3F",
	'ntop.xml' => "http://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage%3F",
	'vnstat.xml' => "http://doc.pfsense.org/index.php/How_can_I_monitor_bandwidth_usage%3F",
	'widentd.xml' => 'http://doc.pfsense.org/index.php/Widentd_package',
	'tinydns.xml' => 'http://doc.pfsense.org/index.php/Tinydns_package',
	'tinydns_domains.xml' => 'http://doc.pfsense.org/index.php/Tinydns_package',
	'tinydns_sync.xml' => 'http://doc.pfsense.org/index.php/Tinydns_package',
	'blinkled.xml' => 'http://doc.pfsense.org/index.php/BlinkLED_Package',
	'freeswitch.xml' => 'http://doc.pfsense.org/index.php/FreeSWITCH',
	'freeswitch_modules.xml' => 'http://doc.pfsense.org/index.php/FreeSWITCH',
	'dialplan.default.xml' => 'http://doc.pfsense.org/index.php/FreeSWITCH',
	'dialplan.public.xml' => 'http://doc.pfsense.org/index.php/FreeSWITCH',
	'havp.xml' => 'http://doc.pfsense.org/index.php/HAVP_Package_for_HTTP_Anti-Virus_Scanning',
	'havp_avset.xml' => 'http://doc.pfsense.org/index.php/HAVP_Package_for_HTTP_Anti-Virus_Scanning',
	'havp_blacklist.xml' => 'http://doc.pfsense.org/index.php/HAVP_Package_for_HTTP_Anti-Virus_Scanning',
	'havp_fscan.xml' => 'http://doc.pfsense.org/index.php/HAVP_Package_for_HTTP_Anti-Virus_Scanning',
	'havp_trans_exclude.xml' => 'http://doc.pfsense.org/index.php/HAVP_Package_for_HTTP_Anti-Virus_Scanning',
	'havp_whitelist.xml' => 'http://doc.pfsense.org/index.php/HAVP_Package_for_HTTP_Anti-Virus_Scanning',
	'snort.xml' => 'http://doc.pfsense.org/index.php/Setup_Snort_Package',
	'snort_advanced.xml' => 'http://doc.pfsense.org/index.php/Setup_Snort_Package',
	'snort_define_servers.xml' => 'http://doc.pfsense.org/index.php/Setup_Snort_Package',
	'snort_threshold.xml' => 'http://doc.pfsense.org/index.php/Setup_Snort_Package',
	'snort_whitelist.xml' => 'http://doc.pfsense.org/index.php/Setup_Snort_Package',
	'stunnel.xml' => 'http://doc.pfsense.org/index.php/Stunnel_package',
	'stunnel_certs.xml' => 'http://doc.pfsense.org/index.php/Stunnel_package',
	'openbgpd.xml' => 'http://doc.pfsense.org/index.php/OpenBGPD_package',
	'openbgpd_groups.xml' => 'http://doc.pfsense.org/index.php/OpenBGPD_package',
	'openbgpd_neighbors.xml' => 'http://doc.pfsense.org/index.php/OpenBGPD_package',
	'iperf.xml' => 'http://doc.pfsense.org/index.php/Iperf_package',
	'iperfserver.xml' => 'http://doc.pfsense.org/index.php/Iperf_package',
	'jail_template.xml' => 'http://doc.pfsense.org/index.php/PfJailctl_package',
	'jailctl.xml' => 'http://doc.pfsense.org/index.php/PfJailctl_package',
	'jailctl.xml' => 'http://doc.pfsense.org/index.php/PfJailctl_package',
	'jailctl_defaults.xml' => 'http://doc.pfsense.org/index.php/PfJailctl_package',
	'jailctl_settings.xml' => 'http://doc.pfsense.org/index.php/PfJailctl_package',
	'siproxd.xml' => 'http://doc.pfsense.org/index.php/Siproxd_package',
	'siproxdusers.xml' => 'http://doc.pfsense.org/index.php/Siproxd_package',
	'open-vm-tools.xml' => 'http://doc.pfsense.org/index.php/Open_VM_Tools_package',
	'arping.xml' => 'http://doc.pfsense.org/index.php/Arping_package',
	'unbound.xml' => 'http://doc.pfsense.org/index.php/Unbound_package',

);

/*
Filename list (2.0 box as of 2009-11-15), entries with help maps should be
removed. Also, files which cannot normally be accessed by a user can
be removed.(e.g. xmlrpc.php)

Below this is a list of .xml files from built-in and add-on packages



Package .xml files (some may not be needed)
	'apache_mod_security.xml' => '',
	'apache_mod_security_settings.xml' => '',
	'arpwatch.xml' => '',
	'assp.xml' => '',
	'backup.xml' => '',
	'bsdstats.xml' => '',
	'cron.xml' => '',
	'ddns.xml' => '',
	'denyhosts.xml' => '',
	'dnsblacklist.xml' => '',
	'dyntables.xml' => '',
	'fit123.xml' => '',
	'freeradius.xml' => '',
	'freeradiusclients.xml' => '',
	'freeradiussettings.xml' => '',
	'frickin.xml' => '',
	'haproxy.xml' => '',
	'hula.xml' => '',
	'ifdepd.xml' => '',
	'ifstated.xml' => '',
	'igmpproxy.xml' => '',
	'imspector.xml' => '',
	'lcdproc.xml' => '',
	'lcdproc_screens.xml' => '',
	'lightsquid.xml' => '',
	'messages_de.xml' => '',
	'messages_en.xml' => '',
	'mtr-nox11.xml' => '',
	'netio-newpkg.xml' => '',
	'netio.xml' => '',
	'netioserver-newpkg.xml' => '',
	'netioserver.xml' => '',
	'new_zone_wizard.xml' => '',
	'nmap.xml' => '',
	'notes.xml' => '',
	'nrpe2.xml' => '',
	'nut.xml' => '',
	'per-user-bandwidth-distribution.xml' => '',
	'pfstat.xml' => '',
	'phpmrss.xml' => '',
	'phpsysinfo.xml' => '',
	'powerdns.xml' => '',
	'pure-ftpd.xml' => '',
	'pure-ftpdsettings.xml' => '',
	'quagga.xml' => '',
	'routed.xml' => '',
	'shellcmd.xml' => '',
	'spamd.xml' => '',
	'spamd_outlook.xml' => '',
	'spamd_settings.xml' => '',
	'spamd_whitelist.xml' => '',
	'sshterm.xml' => '',
	'tftp.xml' => '',
	'upclient.xml' => '',
	'viralator.xml' => '',
	'zabbix-agent.xml' => '',

 */

$pagename = "";
/* Check for parameter "page". */
if ($_GET && isset($_GET['page'])) {
	$pagename = $_GET['page'];
}

/* If "page" is not found, check referring URL */
if (empty($pagename)) {
	/* Attempt to parse out filename */
	$uri_split = "";
	preg_match("/\/(.*)\?(.*)/", $_SERVER["HTTP_REFERER"], $uri_split);

	/* If there was no match, there were no parameters, just grab the filename
		Otherwise, use the matched filename from above. */
	if (empty($uri_split[0])) {
		$pagename = ltrim($_SERVER["HTTP_REFERER"], '/');
	} else {
		$pagename = $uri_split[1];
	}

	/* If the page name is still empty, the user must have requested / (index.php) */
	if (empty($pagename)) {
		$pagename = "index.php";
	}

	/* If the filename is pkg_edit.php or wizard.php, reparse looking
		for the .xml filename */
	if (($pagename == "pkg.php") || ($pagename == "pkg_edit.php") || ($pagename == "wizard.php")) {
		$param_split = explode('&', $uri_split[2]);
		foreach ($param_split as $param) {
			if (substr($param, 0, 4) == "xml=") {
				$xmlfile = explode('=', $param);
				$pagename = $xmlfile[1];
			}
		}
	}
}

/* Using the derived page name, attempt to find in the URL mapping hash */
if (array_key_exists($pagename, $helppages)) {
	$helppage = $helppages[$pagename];
}

/* If we haven't determined a proper page, use a generic help page
	 stating that a given page does not have help yet. */

if (empty($helppage)) {
	$helppage = "http://doc.pfsense.org/index.php/No_Help_Found";

}

/* Redirect to help page. */
header("Location: {$helppage}");

?>
OpenPOWER on IntegriCloud