forked from pfsense/pfsense-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkg_config.10.xml
1685 lines (1685 loc) · 85.3 KB
/
pkg_config.10.xml
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!-- pfSense packages -->
<pfsensepkgs>
<copy_packages_to_host_ssh_port>22</copy_packages_to_host_ssh_port>
<copy_packages_to_host_ssh>[email protected]</copy_packages_to_host_ssh>
<copy_packages_to_folder_ssh>/usr/local/www/files/packages/10/All/</copy_packages_to_folder_ssh>
<depends_on_package_base_url>https://files.pfsense.org/packages/10/All/</depends_on_package_base_url>
<packages>
<!--
<package>
<name>someprogram</name>
<internal_name>someprogram</internal_name>
<pkginfolink>https://forum.pfsense.org/</pkginfolink>
<descr><![CDATA[Some cool program]]></descr>
<website>http://www.example.org/someprogram</website>
<category>Services</category>
<version>0.99</version>
<status>Beta</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/someprogram/someprogram.xml</config_file>
<maintainer>[email protected]</maintainer>
<configurationfile>someprogram.xml</configurationfile>
<build_pbi>
<ports_before>db/somethingextraineed</ports_before>
<port>net/someprogram</port>
<ports_after>www/somethingelsetoputinthepbi www/somethingelse</ports_after>
</build_pbi>
<depends_on_package_pbi>someprogram-0.99-##ARCH##.pbi</depends_on_package_pbi>
<only_for_archs>i386 amd64</only_for_archs>
</package>
-->
<package>
<name>Asterisk</name>
<pkginfolink>https://forum.pfsense.org/index.php/topic,47210.0.html</pkginfolink>
<descr><![CDATA[Asterisk is an open source framework for building communications applications.<br />Asterisk turns an ordinary computer into a communications server.]]></descr>
<website>http://www.asterisk.org/</website>
<category>Services</category>
<version>0.3.1</version>
<status>Beta</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/asterisk/asterisk.xml</config_file>
<run_depends>sbin/asterisk:net/asterisk</run_depends>
<port_category>net</port_category>
<depends_on_package_pbi>asterisk-1.8.32.1-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<port>net/asterisk</port>
</build_pbi>
<build_options>asterisk_SET_FORCE=SRTP;asterisk_UNSET_FORCE=FREETDS PGSQL</build_options>
<maintainer>[email protected] [email protected]</maintainer>
<configurationfile>asterisk.xml</configurationfile>
<after_install_info>Please visit the Asterisk tab on status menu.</after_install_info>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>bind</name>
<!-- <pkginfolink>https://doc.pfsense.org/index.php/bind</pkginfolink> -->
<descr><![CDATA[The most widely used name server software]]></descr>
<website>http://www.isc.org/downloads/BIND/</website>
<category>Services</category>
<version>0.3.9</version>
<status>RC</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/bind/bind.xml</config_file>
<configurationfile>bind.xml</configurationfile>
<run_depends>bin/bind9-config:dns/bind99</run_depends>
<port_category>dns</port_category>
<depends_on_package_pbi>bind-9.9.6P1_3-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<custom_name>bind</custom_name>
<port>dns/bind99</port>
</build_pbi>
<build_options>bind_UNSET_FORCE=IDN REPLACE_BASE FIXED_RRSET GSSAPI LARGE_FILE;bind_SET_FORCE=IPV6 LINKS SSL THREADS XML DLZ_FILESYSTEM FILTER_AAAA SIGCHASE RRL</build_options>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Filer</name>
<website/>
<descr>Allows you to create and overwrite files from the GUI.</descr>
<category>File Management</category>
<pkginfolink>https://doc.pfsense.org/index.php/Filer_package</pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/filer/filer.xml</config_file>
<version>0.60.1</version>
<status>Beta</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<configurationfile>filer.xml</configurationfile>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Strikeback</name>
<descr>Detect port scans with iplog and strikeback</descr>
<website/>
<pkginfolink>https://forum.pfsense.org/index.php/topic,37225.0.html</pkginfolink>
<category>Services</category>
<version>0.1</version>
<status>BETA</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<config_file>https://packages.pfsense.org/packages/config/strikeback/strikeback.xml</config_file>
<configurationfile>strikeback.xml</configurationfile>
<only_for_archs>i386</only_for_archs>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>File Manager</name>
<internal_name>File_Manager</internal_name>
<website/>
<descr>PHP File Manager</descr>
<category>Diagnostics</category>
<pkginfolink>https://forum.pfsense.org/index.php/topic,26974.0.html</pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/filemgr/filemgr.xml</config_file>
<version>0.1.4</version>
<status>Beta</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<configurationfile>filemgr.xml</configurationfile>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>pfBlockerNG</name>
<website/>
<descr><![CDATA[pfBlockerNG is the Next Generation of pfBlocker.<br />
Manage IPv4/v6 List Sources into 'Deny, Permit or Match' formats<br />
Country Blocking Database by MaxMind Inc. (GeoLite Free version).<br />
De-Duplication, Suppression, and Reputation enhancements.<br />
Provision to download from diverse List formats. Advanced Integration<br />
for Emerging Threats IQRisk IP Reputation Threat Sources.]]></descr>
<category>Firewall</category>
<pkginfolink>https://forum.pfsense.org/index.php?topic=86212.0</pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/pfblockerng/pfblockerng.xml</config_file>
<version>1.09</version>
<status>Stable</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<configurationfile>pfblockerng.xml</configurationfile>
<run_depends>bin/geoiplookup:net/GeoIP bin/grepcidr:net-mgmt/grepcidr</run_depends>
<port_category>net</port_category>
<depends_on_package_pbi>pfblockerng-1.6.3_1-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<port>net/GeoIP</port>
<ports_after>net-mgmt/grepcidr</ports_after>
<custom_name>pfblockerng</custom_name>
</build_pbi>
</package>
<package>
<name>haproxy-1_5</name>
<internal_name>haproxy</internal_name>
<pkginfolink>https://doc.pfsense.org/index.php/haproxy_package</pkginfolink>
<descr><![CDATA[The Reliable, High Performance TCP/HTTP(S) Load Balancer<br />
This package implements the TCP, HTTP and HTTPS balancing features from haproxy.<br />
Supports ACLs for smart backend switching.]]></descr>
<website>http://haproxy.1wt.eu/</website>
<category>Services</category>
<version>0.23</version>
<status>Release</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/haproxy1_5/haproxy.xml</config_file>
<configurationfile>haproxy.xml</configurationfile>
<run_depends>sbin/haproxy:net/haproxy</run_depends>
<port_category>net</port_category>
<conflicts>haproxy-devel</conflicts>
<depends_on_package_pbi>haproxy-devel-1.5.11-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<ports_before>security/openssl lang/lua53</ports_before>
<custom_name>haproxy-devel</custom_name>
<port>net/haproxy</port>
</build_pbi>
<build_options>WITH_OPENSSL_PORT=yes;haproxy_UNSET_FORCE=DPCRE;haproxy_SET_FORCE=OPENSSL SPCRE</build_options>
</package>
<package>
<name>haproxy-devel</name>
<pkginfolink>https://doc.pfsense.org/index.php/haproxy_package</pkginfolink>
<descr><![CDATA[The Reliable, High Performance TCP/HTTP(S) Load Balancer<br />
This package implements the TCP, HTTP and HTTPS balancing features from haproxy.<br />
Supports ACLs for smart backend switching.]]></descr>
<website>http://haproxy.1wt.eu/</website>
<category>Services</category>
<version>0.26</version>
<status>Release</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/haproxy-devel/haproxy.xml</config_file>
<configurationfile>haproxy.xml</configurationfile>
<run_depends>sbin/haproxy:net/haproxy-devel</run_depends>
<port_category>net</port_category>
<conflicts>haproxy</conflicts>
<depends_on_package_pbi>haproxy-devel-1.5.11-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<ports_before>security/openssl</ports_before>
<custom_name>haproxy-devel</custom_name>
<port>net/haproxy-devel</port>
</build_pbi>
<build_options>WITH_OPENSSL_PORT=yes;haproxy_UNSET_FORCE=DPCRE;haproxy_SET_FORCE=OPENSSL SPCRE LUA</build_options>
</package>
<package>
<name>Apache with mod_security-dev</name>
<internal_name>apache-mod_security-devel</internal_name>
<pkginfolink>https://doc.pfsense.org/index.php/ProxyServerModSecurity_package</pkginfolink>
<website>http://www.modsecurity.org/</website>
<descr><![CDATA[ModSecurity is a web application firewall that can work either embedded or as a reverse proxy.<br>
It provides protection from a range of attacks against web applications and allows for HTTP traffic monitoring, logging and real-time analysis.<br>
In addition this package allows URL forwarding which can be convenient for hosting multiple websites behind pfSense using 1 IP address.<br>
<b>Backup your location config before updating from 0.2.x to 0.3 package version.</b>]]></descr>
<category>Network Management</category>
<version>0.43</version>
<status>ALPHA</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/apache_mod_security-dev/apache_virtualhost.xml</config_file>
<run_depends>${APACHEMODDIR}/mod_security2.so:www/mod_security ${APACHEMODDIR}/mod_memcache.so:www/mod_memcache</run_depends>
<port_uses>USE_APACHE_RUN=24</port_uses>
<port_category>net</port_category>
<conflicts>apache-mod_security</conflicts>
<depends_on_package_pbi>proxy_mod_security-2.4.9_4-##ARCH##.pbi git-2.2.1-##ARCH##.pbi</depends_on_package_pbi>
<configurationfile>apache_virtualhost.xml</configurationfile>
<build_pbi>
<custom_name>proxy_mod_security</custom_name>
<ports_before>devel/gettext misc/help2man databases/db5 databases/gdbm devel/apr1 www/p5-LWP-UserAgent-Determined www/p5-LWP-Protocol-https security/gnupg security/p5-GnuPG net/spread textproc/p5-XML-Smart lang/p5-Switch www/p5-Data-Validate-URI devel/p5-Data-Types devel/p5-Acme-Comment</ports_before>
<port>www/apache24</port>
<ports_after>www/mod_security www/mod_memcache</ports_after>
</build_pbi>
<build_options>apache24_UNSET_FORCE=MPM_PREFORK;apache24_SET_FORCE=MPM_EVENT SLOTMEM_SHM MOST_ENABLED_MODULES MPM_SHARED SESSION_ENABLED_MODULES PROXY_ENABLED_MODULES SESSION_ENABLED_MODULES;mod_security_SET_FORCE=MLOGC</build_options>
<after_install_info>Please visit the ProxyServer settings tab and set the service up so that it may be started.</after_install_info>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Proxy Server with mod_security</name>
<internal_name>apache-mod_security</internal_name>
<pkginfolink>https://doc.pfsense.org/index.php/ProxyServerModSecurity_package</pkginfolink>
<website>http://www.modsecurity.org/</website>
<descr>ModSecurity is a web application firewall that can work either embedded or as a reverse proxy. It provides protection from a range of attacks against web applications and allows for HTTP traffic monitoring, logging and real-time analysis. In addition this package allows URL forwarding which can be convenient for hosting multiple websites behind pfSense using 1 IP address.</descr>
<category>Network Management</category>
<version>0.1.7</version>
<status>ALPHA</status>
<required_version>2.2</required_version>
<maximum_version>2.2.999</maximum_version>
<config_file>https://packages.pfsense.org/packages/config/apache_mod_security/apache_mod_security.xml</config_file>
<run_depends>${APACHEMODDIR}/mod_security2.so:www/mod_security ${APACHEMODDIR}/mod_memcache.so:www/mod_memcache</run_depends>
<port_uses>USE_APACHE_RUN=22</port_uses>
<port_category>net</port_category>
<conflicts>apache-mod_security-devel</conflicts>
<depends_on_package_pbi>proxy_mod_security-2.2.27_5-##ARCH##.pbi</depends_on_package_pbi>
<configurationfile>apache_mod_security.xml</configurationfile>
<build_pbi>
<custom_name>proxy_mod_security</custom_name>
<ports_before>devel/gettext misc/help2man databases/db5 databases/gdbm devel/apr1 www/p5-LWP-UserAgent-Determined www/p5-LWP-Protocol-https security/gnupg security/p5-GnuPG net/spread textproc/p5-XML-Smart lang/p5-Switch www/p5-Data-Validate-URI devel/p5-Data-Types devel/p5-Acme-Comment</ports_before>
<port>www/apache22-worker-mpm</port>
<ports_after>www/mod_security www/mod_memcache</ports_after>
</build_pbi>
<build_options>apr_UNSET_FORCE=BDB MYSQL PGSQL NSS;apr_SET_FORCE=SQLITE THREADS IPV6 SSL;apache22-worker-mpm_UNSET_FORCE=AUTHNZ_LDAP AUTHN_DBD BUCKETEER CASE_FILTER CASE_FILTER_IN CGID DBD EXT_FILTER LDAP LOG_FORENSIC OPTIONAL_FN_EXPORT OPTIONAL_FN_IMPORT OPTIONAL_HOOK_EXPORT OPTIONAL_HOOK_IMPORT SUBSTITUTE SUEXEC SUEXEC_RSRCLIMIT;apache22-worker-mpm_SET_FORCE=ACTIONS ALIAS AUTHN_ALIAS VHOST_ALIAS ASIS AUTHN_ANON AUTHN_DBM AUTHN_DEFAULT AUTHN_FILE AUTHZ_DBM AUTHZ_DEFAULT AUTHZ_GROUPFILE AUTHZ_HOST AUTHZ_OWNER AUTHZ_USER AUTH_BASIC AUTH_DIGEST AUTOINDEX CACHE DISK_CACHE FILE_CACHE MEM_CACHE CERN_META CGI CHARSET_LITE DAV DAV_FS DEFLATE DIR DUMPIO ENV EXPIRES FILTER HEADERS IMAGEMAP INCLUDE INFO LOGIO LOG_CONFIG MIME MIME_MAGIC NEGOTIATION PROXY PROXY_AJP PROXY_BALANCER PROXY_CONNECT PROXY_FTP PROXY_HTTP PROXY_SCGI REQTIMEOUT REWRITE SETENVIF SPELING STATUS THREADS UNIQUE_ID USERDIR USERTRACK VERSION</build_options>
<after_install_info>Please visit the ProxyServer settings tab and set the service up so that it may be started.</after_install_info>
</package>
<package>
<name>Avahi</name>
<pkginfolink>https://doc.pfsense.org/index.php/Avahi_package</pkginfolink>
<website>http://www.avahi.org/</website>
<descr>Avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. This kind of technology is already found in Apple MacOS X (branded Rendezvous, Bonjour and sometimes Zeroconf) and is very convenient. Avahi is mainly based on Lennart Poettering's flexmdns mDNS implementation for Linux which has been discontinued in favour of Avahi.</descr>
<category>Network Management</category>
<lib_depends>libavahi-core.so:net/avahi-app</lib_depends>
<port_category>net</port_category>
<build_options>avahi_UNSET_FORCE=GTK;cairo_UNSET_FORCE=X11 XCB</build_options>
<build_pbi>
<port>net/avahi</port>
<ports_after>net/avahi-app devel/dbus</ports_after>
</build_pbi>
<depends_on_package_pbi>avahi-0.6.31-##ARCH##.pbi</depends_on_package_pbi>
<version>1.09</version>
<status>BETA</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/avahi/avahi.xml</config_file>
<configurationfile>avahi.xml</configurationfile>
<after_install_info>Please visit the Avahi settings tab and select which interfaces you do not wish Avahi to listen on and click save to start the service.</after_install_info>
</package>
<package>
<name>ntop</name>
<website>http://www.ntop.org/</website>
<descr>ntop is a network probe that shows network usage in a way similar to what top does for processes. In interactive mode, it displays the network status on the user's terminal. In Web mode it acts as a Web server, creating an HTML dump of the network status. It sports a NetFlow/sFlow emitter/collector, an HTTP-based client interface for creating ntop-centric monitoring applications, and RRD for persistently storing traffic statistics.</descr>
<category>Network Management</category>
<depends_on_package_pbi>ntop-5.0.1_4-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<ports_before>databases/gdbm net/GeoIP x11-fonts/font-util x11-fonts/webfonts graphics/graphviz</ports_before>
<port>net/ntop</port>
</build_pbi>
<build_options>ntop_SET_FORCE=PCAP_PORT XMLDUMP MAKO;ntop_UNSET_FORCE=JUMBO_FRAMES;rrdtool_UNSET_FORCE=DEJAVU PERL_MODULE PYTHON_MODULE RUBY_MODULE;rrdtool_SET_FORCE=JSON MMAP NLS;graphviz_UNSET_FORCE=XPM DIGCOLA IPSEPCOLA PANGOCAIRO;graphviz_SET_FORCE=ICONV NLS;cairo_UNSET_FORCE=X11 XCB;libgd_UNSET_FORCE=FONTCONFIG XPM;libgd_SET_FORCE=ICONV;libpcap_UNSET_FORCE=DAG;libpcap_SET_FORCE=IPV6</build_options>
<version>5.0.1_4 v2.3</version>
<status>BETA</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/ntop2/ntop.xml</config_file>
<configurationfile>ntop.xml</configurationfile>
<noembedded>true</noembedded>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>ntopng</name>
<website>http://www.ntop.org/</website>
<descr>ntopng (replaces ntop) is a network probe that shows network usage in a way similar to what top does for processes. In interactive mode, it displays the network status on the user's terminal. In Web mode it acts as a Web server, creating an HTML dump of the network status. It sports a NetFlow/sFlow emitter/collector, an HTTP-based client interface for creating ntop-centric monitoring applications, and RRD for persistently storing traffic statistics.</descr>
<category>Network Management</category>
<port_category>net</port_category>
<run_depends>bin/ntopng:net/ntopng bin/redis-cli:databases/redis bin/gdbmtool:databases/gdbm share/fonts/webfonts/arial.ttf:x11-fonts/webfonts bin/acyclic:graphics/graphviz</run_depends>
<depends_on_package_pbi>ntopng-1.2.1-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<ports_before>databases/redis databases/gdbm net/GeoIP x11-fonts/font-util x11-fonts/webfonts graphics/graphviz</ports_before>
<port>net/ntopng</port>
</build_pbi>
<version>0.6</version>
<status>ALPHA</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/ntopng/ntopng.xml</config_file>
<configurationfile>ntopng.xml</configurationfile>
<noembedded>true</noembedded>
</package>
<package>
<name>Notes</name>
<website/>
<descr>Track things you want to note for this system.</descr>
<category>Status</category>
<pkginfolink/>
<config_file>https://packages.pfsense.org/packages/config/notes/notes.xml</config_file>
<version>0.2.4</version>
<status>Alpha</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<configurationfile>notes.xml</configurationfile>
</package>
<package>
<name>TFTP</name>
<website/>
<descr>Trivial File Transport Protocol is a very simple file transfer protocol. Often used with routers, voip phones and more.</descr>
<category>Services</category>
<pkginfolink/>
<port_category>ftp</port_category>
<config_file>https://packages.pfsense.org/packages/config/tftp2/tftp.xml</config_file>
<version>2.1</version>
<status>Stable</status>
<required_version>2.2</required_version>
<configurationfile>tftp.xml</configurationfile>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>PHPService</name>
<website/>
<descr>PHP run as a service it can do anything PHP can do including but not limited to monitoring files, CPU, RAM, and send alerts to the syslog.</descr>
<category>Services</category>
<pkginfolink>https://doc.pfsense.org/index.php/PHPService</pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/phpservice/phpservice.xml</config_file>
<version>0.4.2</version>
<status>Beta</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<configurationfile>phpservice.xml</configurationfile>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Backup</name>
<website/>
<descr>Tool to Backup and Restore files and directories.</descr>
<category>System</category>
<pkginfolink></pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/backup/backup.xml</config_file>
<version>0.1.7</version>
<status>Beta</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<configurationfile>backup.xml</configurationfile>
</package>
<package>
<name>Cron</name>
<website/>
<descr>The cron utility is used to manage commands on a schedule.</descr>
<category>Services</category>
<pkginfolink></pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/cron/cron.xml</config_file>
<version>0.1.9</version>
<status>Beta</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<configurationfile>cron.xml</configurationfile>
</package>
<package>
<name>vHosts</name>
<website/>
<descr>It is a web server package that can host HTML, Javascript, CSS, and PHP. It uses the lighttpd web server that is already installed. It uses PHP5 in FastCGI mode and has access to PHP Data Ojbects and PDO SQLite.</descr>
<category>Services</category>
<port_category>www</port_category>
<pkginfolink>https://doc.pfsense.org/index.php/vhosts</pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/vhosts/vhosts.xml</config_file>
<version>0.7.5</version>
<status>Stable</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<configurationfile>vhosts.xml</configurationfile>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>snort</name>
<pkginfolink>https://doc.pfsense.org/index.php/Setup_Snort_Package</pkginfolink>
<website>http://www.snort.org</website>
<descr>Snort is an open source network intrusion prevention and detection system (IDS/IPS). Combining the benefits of signature, protocol, and anomaly-based inspection.</descr>
<category>Security</category>
<run_depends>bin/snort:security/snort</run_depends>
<port_category>security</port_category>
<depends_on_package_pbi>snort-2.9.7.3-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<port>security/snort</port>
<ports_after>security/barnyard2</ports_after>
</build_pbi>
<build_options>barnyard2_UNSET_FORCE=ODBC PGSQL PRELUDE;barnyard2_SET_FORCE=GRE IPV6 MPLS MYSQL PORT_PCAP BRO;snort_SET_FORCE=BARNYARD PERFPROFILE SOURCEFIRE GRE IPV6 NORMALIZER APPID;snort_UNSET_FORCE=PULLEDPORK FILEINSPECT HA</build_options>
<config_file>https://packages.pfsense.org/packages/config/snort/snort.xml</config_file>
<version>3.2.5</version>
<required_version>2.2</required_version>
<status>Stable</status>
<configurationfile>/snort.xml</configurationfile>
<after_install_info>Please visit the Snort settings tab first and select your desired rules. Afterwards visit the update rules tab to download your configured rules.</after_install_info>
</package>
<package>
<name>olsrd</name>
<website>http://www.olsr.org/</website>
<descr>The olsr.org OLSR daemon is an implementation of the Optimized Link State Routing protocol. OLSR is a routing protocol for mobile ad-hoc networks. The protocol is pro-active, table driven and utilizes a technique called multipoint relaying for message flooding.</descr>
<category>Services</category>
<config_file>https://packages.pfsense.org/packages/config/olsrd/olsrd.xml</config_file>
<depends_on_package_pbi>olsrd-0.6.6.2_1-##ARCH##.pbi</depends_on_package_pbi>
<run_depends>sbin/olsrd:net/olsrd</run_depends>
<port_category>net</port_category>
<build_pbi>
<port>net/olsrd</port>
</build_pbi>
<version>1.0.2</version>
<status>Stable</status>
<required_version>2.2</required_version>
<configurationfile>olsrd.xml</configurationfile>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>routed</name>
<website>https://packages.pfsense.org/</website>
<descr>RIP v1 and v2 daemon.</descr>
<category>Network Management</category>
<port_category>net</port_category>
<config_file>https://packages.pfsense.org/packages/config/routed/routed.xml</config_file>
<version>1.1</version>
<status>Stable</status>
<required_version>2.2</required_version>
<configurationfile>routed.xml</configurationfile>
</package>
<package>
<name>spamd</name>
<website>http://www.openbsd.org/spamd/</website>
<descr>Tarpits like spamd are fake SMTP servers, which accept connections but don't deliver mail. Instead, they keep the connections open and reply very slowly. If the peer is patient enough to actually complete the SMTP dialogue (which will take ten minutes or more), the tarpit returns a 'temporary error' code (4xx), which indicates that the mail could not be delivered successfully and that the sender should keep the mail in their queue and retry again later.</descr>
<category>Services</category>
<config_file>https://packages.pfsense.org/packages/config/spamd/spamd.xml</config_file>
<depends_on_package_pbi>spamd-4.9.1_2-##ARCH##.pbi</depends_on_package_pbi>
<version>1.1.2</version>
<status>Beta</status>
<required_version>2.2</required_version>
<port_category>mail</port_category>
<run_depends>sbin/spamdb:mail/spamd</run_depends>
<configurationfile>spamd.xml</configurationfile>
<build_pbi>
<port>mail/spamd</port>
</build_pbi>
<logging>
<facilityname>spamd</facilityname>
<logfilename>spamd.log</logfilename>
</logging>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Postfix Forwarder</name>
<internal_name>Postfix_Forwarder</internal_name>
<website>http://www.postfix.org/</website>
<descr><![CDATA[Postfix mail forwarder acts as a relay server for your domain.<br />
It can do first and second line antispam combat before sending incoming mail to local mail servers.<br />
Postfix can also detect zombies, check RBLS, SPF, search ldap for valid recipients and use third part antispam engines like policyd and mailscanner for better antispam solution.]]></descr>
<category>Services</category>
<pkginfolink>https://forum.pfsense.org/index.php/topic,40622.0.html</pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/postfix/postfix.xml</config_file>
<depends_on_package_pbi>postfix-2.11.3_2-##ARCH##.pbi</depends_on_package_pbi>
<version>2.4.2</version>
<status>Release</status>
<required_version>2.2</required_version>
<configurationfile>postfix.xml</configurationfile>
<port_category>mail</port_category>
<run_depends>bin/qshape:mail/postfix</run_depends>
<build_pbi>
<port>mail/postfix</port>
</build_pbi>
<build_options>postfix_SET_FORCE=PCRE SASL2 SPF TLS</build_options>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Dansguardian</name>
<website>http://www.dansguardian.org/</website>
<descr><![CDATA[DansGuardian is an award winning Open Source web content filter.<br />
It filters the actual content of pages based on many methods including phrase matching, PICS filtering and URL filtering.<br />
It does not purely filter based on a banned list of sites like lesser totally commercial filters.<br />
For all non-commercial its free, without cost.<br />
For all commercial use visit dansguardian website to get a licence.]]></descr>
<category>Services</category>
<config_file>https://packages.pfsense.org/packages/config/dansguardian/dansguardian.xml</config_file>
<pkginfolink>https://forum.pfsense.org/index.php/topic,43786.0.html</pkginfolink>
<depends_on_package_pbi>dansguardian-2.12.0.3_2-##ARCH##.pbi</depends_on_package_pbi>
<version>2.12.0.3_2 pkg v.0.1.12</version>
<status>beta</status>
<required_version>2.2</required_version>
<configurationfile>dansguardian.xml</configurationfile>
<build_pbi>
<custom_name>dansguardian</custom_name>
<ports_before>security/ca_root_nss</ports_before>
<port>www/dansguardian-devel</port>
</build_pbi>
<build_options>dansguardian_UNSET_FORCE=APACHE;dansguardian_SET_FORCE=TRICKLE CLAMD ICAP NTLM SSL</build_options>
<!-- NOTE: Distfile must be fetched manually from http://dansguardian.org/downloads/2/Alpha/dansguardian-2.12.0.0.tar.gz -->
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>mailscanner</name>
<website>http://www.mailscanner.info</website>
<descr><![CDATA[MailScanner is an e-mail security and anti-spam package for e-mail gateway systems.<br />
This is a level3 mail scanning tool with high CPU load.]]></descr>
<category>Services</category>
<config_file>https://packages.pfsense.org/packages/config/mailscanner/mailscanner.xml</config_file>
<pkginfolink>https://forum.pfsense.org/index.php/topic,43687.0.html</pkginfolink>
<depends_on_package_pbi>mailscanner-4.84.6-##ARCH##.pbi</depends_on_package_pbi>
<version>0.2.12</version>
<status>beta</status>
<required_version>2.2</required_version>
<configurationfile>mailscanner.xml</configurationfile>
<port_category>mail</port_category>
<run_depends>bin/cdcc:mail/dcc-dccd bin/pyzor:mail/pyzor bin/spfquery.pl:mail/p5-Mail-SPF bin/ip2cc:net/p5-IP-Country sbin/mailscanner:mail/mailscanner</run_depends>
<build_pbi>
<ports_before>mail/pyzor mail/p5-Mail-SPF net/p5-IP-Country mail/dcc-dccd</ports_before>
<port>mail/mailscanner</port>
<ports_after>shells/bash mail/pyzor mail/dcc-dccd security/clamav mail/spamassassin</ports_after>
</build_pbi>
<build_options>mailscanner_UNSET_FORCE=BDC CLAMAVMODULE;mailscanner_SET_FORCE=SPAMASSASSIN CLAMAV;spamassassin_SET_FORCE=DCC</build_options>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>siproxd</name>
<website>http://siproxd.sourceforge.net/</website>
<descr>Proxy for handling NAT of multiple SIP devices to a single public IP.</descr>
<category>Services</category>
<config_file>https://packages.pfsense.org/packages/config/siproxd/siproxd.xml</config_file>
<depends_on_package_pbi>siproxd-0.8.0_1-##ARCH##.pbi</depends_on_package_pbi>
<pkginfolink>https://doc.pfsense.org/index.php/Siproxd_package</pkginfolink>
<port_category>net</port_category>
<run_depends>sbin/siproxd:net/siproxd</run_depends>
<build_pbi>
<port>net/siproxd</port>
</build_pbi>
<version>1.0.3</version>
<status>Beta</status>
<required_version>2.2</required_version>
<configurationfile>siproxd.xml</configurationfile>
</package>
<package>
<name>OpenBGPD</name>
<descr>OpenBGPD is a FREE implementation of the Border Gateway Protocol, Version 4. It allows ordinary machines to be used as routers exchanging routes with other systems speaking the BGP protocol. -- WARNING! Installs files to the same place as Quagga OSPF. Installing both will result in a broken state, remove this package before installing Quagga OSPF.</descr>
<category>NET</category>
<config_file>https://packages.pfsense.org/packages/config/openbgpd/openbgpd.xml</config_file>
<port_category>net</port_category>
<run_depends>sbin/bgpctl:net/openbgpd</run_depends>
<conflicts>Quagga_OSPF</conflicts>
<build_pbi>
<port>net/openbgpd</port>
</build_pbi>
<version>0.9.3_3</version>
<status>STABLE</status>
<pkginfolink>https://doc.pfsense.org/index.php/OpenBGPD_package</pkginfolink>
<required_version>2.2</required_version>
<configurationfile>openbgpd.xml</configurationfile>
<depends_on_package_pbi>openbgpd-5.2.20121209-##ARCH##.pbi</depends_on_package_pbi>
</package>
<package>
<name>Lightsquid</name>
<descr>High performance web proxy report (LightSquid). Proxy realtime stat (SQStat). Requires squid HTTP proxy.</descr>
<website>http://lightsquid.sf.net/</website>
<category>Network Report</category>
<version>2.41</version>
<maintainer>[email protected]</maintainer>
<port_category>www</port_category>
<run_depends>libexec/lightsquid/ip2name.list:www/lightsquid</run_depends>
<depends_on_package_pbi>lightsquid-1.8_2-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<ports_before>graphics/gd graphics/p5-GD</ports_before>
<port>www/lightsquid</port>
</build_pbi>
<build_options>lightsquid_SET_FORCE=GD;libgd_UNSET_FORCE=FONTCONFIG XPM;perl_UNSET_FORCE=MULTIPLICITY</build_options>
<status>RC1</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/lightsquid/lightsquid.xml</config_file>
<pkginfolink></pkginfolink>
<configurationfile>lightsquid.xml</configurationfile>
<noembedded>true</noembedded>
</package>
<package>
<name>Sarg</name>
<website>http://www.dansguardian.org/</website>
<descr><![CDATA[Sarg - Squid Analysis Report Generator - is a tool that generates reports about where your users are going on the Internet.<br />
Sarg provides information about proxy users' activities: times, bytes, sites, etc. for those using Squid, Squidguard or dansguardian.]]></descr>
<category>Network Report</category>
<config_file>https://packages.pfsense.org/packages/config/sarg/sarg.xml</config_file>
<pkginfolink>https://forum.pfsense.org/index.php/topic,47765.0.html</pkginfolink>
<depends_on_package_pbi>sarg-2.3.9-##ARCH##.pbi</depends_on_package_pbi>
<version>0.6.4</version>
<status>Release</status>
<required_version>2.2</required_version>
<port_category>www</port_category>
<run_depends>bin/sarg:www/sarg</run_depends>
<configurationfile>sarg.xml</configurationfile>
<build_pbi>
<port>www/sarg</port>
</build_pbi>
<build_options>sarg_UNSET_FORCE=PHP</build_options>
<after_install_info>Please visit sarg settings on Status Menu to configure sarg.</after_install_info>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Ipguard-dev</name>
<internal_name>ipguard</internal_name>
<website>http://ipguard.deep.perm.ru/</website>
<descr><![CDATA[Ipguard listens network for ARP packets. All permitted MAC-IP pairs listed in config files.<br />
If it receives one with MAC-IP pair, which is not listed in 'ethers' file, it will send ARP reply with configured fake address.<br />
This will prevent not permitted host to work properly in local ethernet segment.]]></descr>
<category>Security</category>
<config_file>https://packages.pfsense.org/packages/config/ipguard/ipguard.xml</config_file>
<pkginfolink>https://forum.pfsense.org/index.php/topic,49917.msg263664.html#msg263664</pkginfolink>
<depends_on_package_pbi>ipguard-1.04_2-##ARCH##.pbi</depends_on_package_pbi>
<version>0.1</version>
<status>beta</status>
<required_version>2.2</required_version>
<configurationfile>ipguard.xml</configurationfile>
<port_category>security</port_category>
<run_depends>sbin/ipguard:security/ipguard</run_depends>
<build_pbi>
<port>security/ipguard</port>
</build_pbi>
<after_install_info>Please visit ipguard settings on the Firewall Menu to configure.</after_install_info>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Varnish3</name>
<internal_name>varnish</internal_name>
<descr><![CDATA[Varnish is a state-of-the-art, high-performance HTTP accelerator.<br />
It uses the advanced features in FreeBSD to achieve its high performance.<br />
Version 3 includes streaming support]]></descr>
<website>http://varnish-cache.org</website>
<pkginfolink>https://doc.pfsense.org/index.php/Varnish_package</pkginfolink>
<category>Services</category>
<version>0.2.4</version>
<status>RC</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/varnish3/varnish_backends.xml</config_file>
<configurationfile>varnish_backends.xml</configurationfile>
<depends_on_package_pbi>varnish-3.0.5_3-##ARCH##.pbi</depends_on_package_pbi>
<port_category>www</port_category>
<run_depends>bin/varnishadm:www/varnish</run_depends>
<build_pbi>
<port>www/varnish</port>
<ports_after>lang/gcc</ports_after>
</build_pbi>
<build_options>gcc_UNSET_FORCE=JAVA</build_options>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>vnstat2</name>
<website>http://humdi.net/vnstat/</website>
<descr>Vnstat is a console-based network traffic monitor<br />The vnstat PHP frontend and vnstati adds a more user friendly way of displaying traffic usage.</descr>
<pkginfolink>https://forum.pfsense.org/index.php/topic,14179.0.html</pkginfolink>
<category>Network Management</category>
<depends_on_package_pbi>vnstat-1.12-##ARCH##.pbi</depends_on_package_pbi>
<port_category>net</port_category>
<run_depends>bin/vnstat:net/vnstat</run_depends>
<build_pbi>
<port>net/vnstat</port>
</build_pbi>
<version>1.12_4</version>
<status>Stable</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<config_file>https://packages.pfsense.org/packages/config/vnstat2/vnstat2.xml</config_file>
<configurationfile>vnstat2.xml</configurationfile>
<after_install_info></after_install_info>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>dns-server</name>
<descr>pfSense version of TinyDNS which features failover host support</descr>
<website>http://cr.yp.to/djbdns.html</website>
<category>Services</category>
<version>1.0.6.22</version>
<status>Beta</status>
<pkginfolink>https://doc.pfsense.org/index.php/Tinydns_package</pkginfolink>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/tinydns/tinydns.xml</config_file>
<configurationfile>tinydns.xml</configurationfile>
<port_category>dns</port_category>
<run_depends>bin/dnsq:dns/djbdns</run_depends>
<depends_on_package_pbi>djbdns-1.05_20-##ARCH##.pbi</depends_on_package_pbi>
<build_pbi>
<ports_before>sysutils/ucspi-tcp sysutils/daemontools</ports_before>
<port>dns/djbdns</port>
</build_pbi>
<build_options>ucspi-tcp_SET_FORCE=IPV6;djbdns_SET_FORCE=SRV;djbdns_UNSET_FORCE=DUMPCACHE IGNOREIP JUMBO PERSISTENT_MMAP</build_options>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>Open-VM-Tools</name>
<descr>VMware Tools</descr>
<website>http://open-vm-tools.sourceforge.net/</website>
<category>Services</category>
<version>1280544_10</version>
<status>Stable</status>
<pkginfolink>https://doc.pfsense.org/index.php/Open_VM_Tools_package</pkginfolink>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/open-vm-tools_2/open-vm-tools.xml</config_file>
<configurationfile>open-vm-tools.xml</configurationfile>
<port_category>emulators</port_category>
<run_depends>bin/vmtoolsd:emulators/open-vm-tools-nox11</run_depends>
<build_pbi>
<port>emulators/open-vm-tools-nox11</port>
</build_pbi>
<depends_on_package_pbi>open-vm-tools-1280544_9-##ARCH##.pbi</depends_on_package_pbi>
</package>
<package>
<name>AutoConfigBackup</name>
<maintainer>[email protected]</maintainer>
<descr>Automatically backs up your pfSense configuration. All contents are encrypted before being sent to the server. Requires Gold Subscription from https://portal.pfsense.org</descr>
<website>https://portal.pfsense.org</website>
<category>Services</category>
<version>1.28</version>
<status>Stable</status>
<required_version>2.2</required_version>
<pkginfolink>https://doc.pfsense.org/index.php/AutoConfigBackup</pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/autoconfigbackup/autoconfigbackup.xml</config_file>
<configurationfile>autoconfigbackup.xml</configurationfile>
</package>
<package>
<name>arping</name>
<descr>Broadcasts a who-has ARP packet on the network and prints answers. </descr>
<website>http://www.habets.pp.se/synscan/programs.php?prog=arping</website>
<category>Services</category>
<version>1.1</version>
<status>Stable</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/arping/arping.xml</config_file>
<configurationfile>arping.xml</configurationfile>
<depends_on_package_pbi>arping-2.14_1-##ARCH##.pbi</depends_on_package_pbi>
<port_category>net</port_category>
<run_depends>sbin/arping:net/arping</run_depends>
<build_pbi>
<port>net/arping</port>
</build_pbi>
<pkginfolink>https://doc.pfsense.org/index.php/Arping</pkginfolink>
</package>
<package>
<name>nmap</name>
<maintainer>[email protected]</maintainer>
<descr>NMap is a utility for network exploration or security auditing. It supports ping scanning (determine which hosts are up), many port scanning techniques (determine what services the hosts are offering), version detection (determine what application/service is running on a port), and TCP/IP fingerprinting (remote host OS or device identification). It also offers flexible target and port specification, decoy/stealth scanning, SunRPC scanning, and more. </descr>
<category>Security</category>
<depends_on_package_pbi>nmap-6.47-##ARCH##.pbi</depends_on_package_pbi>
<config_file>https://packages.pfsense.org/packages/config/nmap/nmap.xml</config_file>
<version>1.3</version>
<status>Stable</status>
<pkginfolink>https://doc.pfsense.org/index.php/Nmap_package</pkginfolink>
<required_version>2.2</required_version>
<configurationfile>nmap.xml</configurationfile>
<port_category>security</port_category>
<run_depends>bin/nmap:security/nmap</run_depends>
<build_pbi>
<port>security/nmap</port>
</build_pbi>
</package>
<package>
<name>imspector</name>
<descr>IMSpector is an Instant Messenger transparent proxy with logging capabilities. Currently it supports MSN, AIM, ICQ, Yahoo and IRC to different degrees.</descr>
<website>http://www.imspector.org/</website>
<category>Network Management</category>
<maintainer>[email protected]</maintainer>
<version>0.3.2</version>
<required_version>2.2</required_version>
<status>BETA</status>
<pkginfolink>https://doc.pfsense.org/index.php/IMSpector_package</pkginfolink>
<config_file>https://packages.pfsense.org/packages/config/imspector/imspector.xml</config_file>
<configurationfile>imspector.xml</configurationfile>
<depends_on_package_pbi>imspector-20111108_2-##ARCH##.pbi</depends_on_package_pbi>
<build_options>imspector_SET_FORCE=PLUGINS;imspector_UNSET_FORCE=IPFW</build_options>
<port_category>net-im</port_category>
<run_depends>sbin/imspector:net-im/imspector</run_depends>
<build_pbi>
<port>net-im/imspector</port>
</build_pbi>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>nut</name>
<descr>Network UPS Tools</descr>
<website>http://www.networkupstools.org/</website>
<category>Network Management</category>
<version>2.0.4</version>
<status>BETA</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<config_file>https://packages.pfsense.org/packages/config/nut/nut.xml</config_file>
<configurationfile>nut.xml</configurationfile>
<depends_on_package_pbi>nut-2.7.2_6-##ARCH##.pbi</depends_on_package_pbi>
<run_depends>bin/upsc:sysutils/nut</run_depends>
<build_pbi>
<port>sysutils/nut</port>
</build_pbi>
<pkginfolink>https://doc.pfsense.org/index.php/Nut_package</pkginfolink>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>diag_new_states</name>
<descr>Paul Taylors version of Diagnostics States which utilizes pftop.</descr>
<website>http://www.addressplus.net</website>
<category>Network Management</category>
<version>0.2</version>
<maintainer>[email protected]</maintainer>
<required_version>2.2</required_version>
<status>BETA</status>
<config_file>https://packages.pfsense.org/packages/config/diag_states_pt/diag_new_states.xml</config_file>
<configurationfile>https://packages.pfsense.org/packages/config/diag_states_pt/diag_new_states.xml</configurationfile>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>darkstat</name>
<website>http://dmr.ath.cx/net/darkstat/</website>
<descr>darkstat is a network statistics gatherer. It's a packet sniffer that runs as a background process on a cable/DSL router, gathers all sorts of statistics about network usage, and serves them over HTTP.</descr>
<category>Network Management</category>
<depends_on_package_pbi>darkstat-3.0.718-##ARCH##.pbi</depends_on_package_pbi>
<version>3.0.718</version>
<status>Stable</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<config_file>https://packages.pfsense.org/packages/config/darkstat/darkstat.xml</config_file>
<configurationfile>darkstat.xml</configurationfile>
<port_category>net-mgmt</port_category>
<run_depends>sbin/darkstat:net-mgmt/darkstat</run_depends>
<build_pbi>
<port>net-mgmt/darkstat</port>
</build_pbi>
</package>
<package>
<name>pfflowd</name>
<website>http://www.mindrot.org/pfflowd.html</website>
<descr>pfflowd converts OpenBSD PF status messages (sent via the pfsync interface) to Cisco NetFlow datagrams. These datagrams may be sent (via UDP) to a host of one's choice. Utilising the OpenBSD stateful packet filter infrastructure means that flow tracking is very fast and accurate.</descr>
<category>Network Management</category>
<config_file>https://packages.pfsense.org/packages/config/pfflowd/pfflowd.xml</config_file>
<depends_on_package_pbi>pfflowd-0.8_1-##ARCH##.pbi</depends_on_package_pbi>
<version>1.0.3</version>
<status>Stable</status>
<required_version>2.2</required_version>
<configurationfile>pfflowd.xml</configurationfile>
<port_category>net</port_category>
<run_depends>sbin/pfflowd:net/pfflowd</run_depends>
<build_pbi>
<custom_name>pfflowd</custom_name>
<port>net/pfflowd</port>
</build_pbi>
</package>
<package>
<name>widentd</name>
<descr>RFC1413 auth/identd daemon with fixed fake reply</descr>
<website>http://www.webweaving.org/widentd</website>
<category>Services</category>
<depends_on_package_pbi>widentd-1.03_2-##ARCH##.pbi</depends_on_package_pbi>
<version>1.03_2</version>
<status>Stable</status>
<pkginfolink>https://doc.pfsense.org/index.php/Widentd_package</pkginfolink>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/widentd/widentd.xml</config_file>
<configurationfile>widentd.xml</configurationfile>
<port_category>net</port_category>
<run_depends>sbin/widentd:net/widentd</run_depends>
<build_pbi>
<port>net/widentd</port>
</build_pbi>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>freeradius2</name>
<website>http://www.freeradius.org/</website>
<descr><![CDATA[A free implementation of the RADIUS protocol.<br />
Support: MySQL, PostgreSQL, LDAP, Kerberos<br />
FreeRADIUS and FreeRADIUS2 settings are not compatible so don't use them together or try to update<br />
On pfSense docs there is a how-to which could help you on porting users.]]></descr>
<pkginfolink>https://doc.pfsense.org/index.php/FreeRADIUS_2.x_package</pkginfolink>
<category>System</category>
<version>1.6.13</version>
<status>RC1</status>
<required_version>2.2</required_version>
<maintainer>[email protected]</maintainer>
<depends_on_package_pbi>freeradius-2.2.6_3-##ARCH##.pbi</depends_on_package_pbi>
<config_file>https://packages.pfsense.org/packages/config/freeradius2/freeradius.xml</config_file>
<configurationfile>freeradius.xml</configurationfile>
<after_install_info>Please visit Services: FreeRADIUS</after_install_info>
<port_category>net</port_category>
<run_depends>sbin/radiusd:net/freeradius2 bin/bash:shells/bash</run_depends>
<build_pbi>
<ports_before>security/krb5</ports_before>
<port>net/freeradius2</port>
<ports_after>shells/bash</ports_after>
</build_pbi>
<build_options>freeradius_SET_FORCE=KERBEROS MYSQL PGSQL PERL PYTHON LDAP SSL_PORT</build_options>
</package>
<package>
<name>bandwidthd</name>
<website>http://bandwidthd.sourceforge.net/</website>
<descr>BandwidthD tracks usage of TCP/IP network subnets and builds html files with graphs to display utilization. Charts are built by individual IPs, and by default display utilization over 2 day, 8 day, 40 day, and 400 day periods. Furthermore, each ip address's utilization can be logged out at intervals of 3.3 minutes, 10 minutes, 1 hour or 12 hours in cdf format, or to a backend database server. HTTP, TCP, UDP, ICMP, VPN, and P2P traffic are color coded.</descr>
<category>System</category>
<version>0.5</version>
<status>BETA</status>
<required_version>2.2</required_version>
<depends_on_package_pbi>bandwidthd-2.0.1_6-##ARCH##.pbi</depends_on_package_pbi>
<config_file>https://packages.pfsense.org/packages/config/bandwidthd/bandwidthd.xml</config_file>
<configurationfile>bandwidthd.xml</configurationfile>
<port_category>net-mgmt</port_category>
<port_uses>USES=pgsql</port_uses>
<run_depends>bandwidthd/bandwidthd:net-mgmt/bandwidthd</run_depends>
<build_pbi>
<ports_before>net/libpcap databases/postgresql91-client graphics/gd</ports_before>
<port>net-mgmt/bandwidthd</port>
</build_pbi>
<build_options>libgd_UNSET_FORCE=FONTCONFIG XPM</build_options>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>stunnel</name>
<website>http://www.stunnel.org/</website>
<descr>An SSL encryption wrapper between remote client and local or remote servers. </descr>
<category>Network Management</category>
<depends_on_package_pbi>stunnel-5.07-##ARCH##.pbi</depends_on_package_pbi>
<version>5.07</version>
<status>Stable</status>
<pkginfolink>https://doc.pfsense.org/index.php/Stunnel_package</pkginfolink>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/stunnel/stunnel.xml</config_file>
<configurationfile>stunnel.xml</configurationfile>
<port_category>security</port_category>
<run_depends>bin/stunnel:security/stunnel</run_depends>
<build_pbi>
<port>security/stunnel</port>
</build_pbi>
<build_options>stunnel_SET_FORCE=PTHREAD LIBWRAP;stunnel_UNSET_FORCE=FORK UCONTEXT IPV6</build_options>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>iperf</name>
<website>http://dast.nlanr.net/Projects/Iperf/</website>
<descr>Iperf is a tool for testing network throughput, loss, and jitter.</descr>
<category>Network Management</category>
<config_file>https://packages.pfsense.org/packages/config/iperf/iperf.xml</config_file>
<depends_on_package_pbi>iperf-2.0.5-##ARCH##.pbi</depends_on_package_pbi>
<version>2.0.5_1</version>
<status>Beta</status>
<pkginfolink>https://doc.pfsense.org/index.php/Iperf_package</pkginfolink>
<required_version>2.2</required_version>
<configurationfile>iperf.xml</configurationfile>
<port_category>benchmarks</port_category>
<run_depends>bin/iperf:benchmarks/iperf</run_depends>
<build_pbi>
<port>benchmarks/iperf</port>
</build_pbi>
</package>
<package>
<name>netio</name>
<website>http://freshmeat.net/projects/netio/</website>
<descr>This is a network benchmark for DOS, OS/2 2.x, Windows NT/2000 and Unix. It measures the net throughput of a network via NetBIOS and/or TCP/IP protocols (Unix and DOS only support TCP/IP) using various different packet sizes.</descr>
<category>Network Management</category>
<config_file>https://packages.pfsense.org/packages/config/netio/netio.xml</config_file>
<depends_on_package_pbi>netio-1.26-##ARCH##.pbi</depends_on_package_pbi>
<version>1.26</version>
<required_version>2.2</required_version>
<status>ALPHA</status>
<configurationfile>netio.xml</configurationfile>
<port_category>benchmarks</port_category>
<run_depends>bin/netio:benchmarks/netio</run_depends>
<build_pbi>
<port>benchmarks/netio</port>
</build_pbi>
<maximum_version>2.2.999</maximum_version>
</package>
<package>
<name>mtr-nox11</name>
<maintainer>[email protected]</maintainer>
<descr>Enhanced traceroute replacement</descr>
<website>http://www.bitwizard.nl/mtr/</website>
<category>Network Management</category>
<depends_on_package_pbi>mtr-0.85_1-##ARCH##.pbi</depends_on_package_pbi>
<version>0.85_2</version>
<status>Stable</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/mtr-nox11/mtr-nox11.xml</config_file>
<configurationfile>mtr-nox11.xml</configurationfile>
<port_category>net</port_category>
<run_depends>sbin/mtr:net/mtr-nox11</run_depends>
<build_pbi>
<port>net/mtr</port>
</build_pbi>
<build_options>mtr_UNSET_FORCE=X11</build_options>