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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
|
<?xml version="1.0"?>
<!DOCTYPE entries PUBLIC
"-//FreeBSD//DTD FreeBSD XML Database for Commercial Gallery//EN"
"http://www.FreeBSD.org/XML/share/xml/gallery.dtd">
<!-- $FreeBSD$ -->
<entries>
<cvs:keyword xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
$FreeBSD$
</cvs:keyword>
<categories>
<category id="africa">Africa</category>
<category id="asia">Asia</category>
<category id="australia">Australia</category>
<category id="europe">Europe</category>
<category id="nzealand">New Zealand</category>
<category id="namerica">North America</category>
<category id="samerica">South America</category>
</categories>
<entry id="Acadix" category="namerica">
<name>Acadix, LLC</name>
<url>http://www.acadix.biz</url>
<description>
Acadix, LLC offers a full range of services for FreeBSD and
other platforms, including system integration, file servers, WEB
servers, and programming/porting. Acadix provides on-site
services to businesses, schools, and charitable organizations in
the Milwaukee metro area. Programming services are available to
all locations in the U.S. For more information, please
<a href="http://acadix.biz">visit our website</a>.
</description>
</entry>
<entry id="ateamsystems" category="namerica">
<name>A-Team Systems</name>
<url>http://www.ateamsystems.com/</url>
<description>
A-Team Systems has over 15 years of experience helping clients
leverage the power of &os; in combination with other open source
software such as PHP, MySQL and Apache in a secure, customized
and cohesive way. We have been with &os; since version 1.0! We
can help you with your existing deployment or future plans:
From encrypted backups to web and mail servers. Visit our
<a href="http://www.ateamsystems.com/">website</a> for more
information.
</description>
</entry>
<entry id="Adminia" category="europe">
<name>Adminia Sistemas</name>
<url>http://www.adminia.es/</url>
<description>
Adminia offers technological consulting and professional system
administration services, specializing in free software and
virtualized high-availability environments. We have over 15
years experience in using and customizing FreeBSD systems in
data processing centres, small and medium-sized businesses and
universities. We are located in Madrid, Spain. Contact us for
reliable and expert partnership via
<a href="mailto:contacto@adminia.es">email</a> or visit our
<a href="http://www.adminia.es">website</a>.
</description>
</entry>
<entry id="anonbsd" category="samerica">
<name>AnonBSD Inc.</name>
<url>https://sites.google.com/site/anonbsd/</url>
<description>
We provide IT environment consulting. Support in FreeBSD,
OpenBSD, Linux (Debian, RedHat, SUSE, Gentoo, Slackware) and
OpenSolaris. High availability, virtualization, monitoring,
security, deployment, network infrastructure. We service in
São Paulo/SP and Campinas/SP in Brazil. Contact us via
e-mail
(<a href="mailto:ricardo.ichizo@gmail.com">ricardo.ichizo@gmail.com</a>)
or by phone at +55 (19) 8202-1567.
</description>
</entry>
<entry id="BMK" category="australia">
<name>B.M.K. Industries</name>
<url>http://www.bmk.com.au</url>
<description>
B.M.K. Industries is located in Melbourne Australia and
specializes in setting up low cost routers and servers (Web,
E-Mail, FTP, DNS and Secure Web Servers ) all using FreeBSD.
Setting up Permanent Modem & ISDN Internet Connections is
also a specialty.
<a href="http://www.bmk.com.au">Please visit our web page.</a>
</description>
</entry>
<entry id="bpa" category="europe">
<name>Black Point Arts Internet Solutions GmbH</name>
<url>http://www.bpanet.de/</url>
<description>
Black Point Arts Internet Solutions GmbH is located in Germany
(Frankfurt/Main). We have experiences with FreeBSD, Linux and
Windows Servers. Our business activities include
hosting/homing, programming and webdesign. We develop solutions
for your intra-, extra- and internet needs. For more
information you can visit
<a href="http://www.bpanet.de/">our website</a> or write an
email to
<a href="mailto:service@bpanet.de">service@bpanet.de</a>.
</description>
</entry>
<entry id="BSDConsulting" category="europe">
<name>BSD Consulting</name>
<url>http://www.bsdconsulting.no/</url>
<description>
BSD Consulting provides consulting services related to Internet
servers/infrastructure, programming, FreeBSD & BSD operating
systems, security auditing/firewalls, system administration,
etc. Based in Oslo, Norway.
</description>
</entry>
<entry id="catpipe" category="europe">
<name>catpipe Systems</name>
<url>http://www.catpipe.net/</url>
<description>
catpipe Systems ApS provide managed services and support
contracts for FreeBSD implemented on rackmountable servers
preloaded with FreeBSD.
</description>
</entry>
<entry id="CloneConsulting" category="nzealand">
<name>Clone Consulting</name>
<url>http://www.clone.co.nz/</url>
<description>
Clone provides consultancy services for software development,
system architecture and FreeBSD infrastructure support. For
additional information please visit the
<a href="http://www.clone.co.nz">Clone website</a>.
</description>
</entry>
<entry id="CloudBT" category="australia">
<name>Cloud BT IT Support</name>
<url>http://www.it-support.com.au/</url>
<description>
Cloud BT provides IT support and other IT services to businesses
in Australia, including system maintenance,
<a href="http://www.it-support.com.au/data-recovery/">data recovery</a>,
and ongoing IT consulting. We also provide a range of scalable
cloud solutions to our business clients. In our day-to-day
operation we support numerous platforms including FreeBSD, Linux
and other Unix-based environments. Call us on 1300 737 205 or
visit our
<a href="http://www.it-support.com.au/">website</a> for more
information.
</description>
</entry>
<entry id="Clue" category="namerica">
<name>Clue Computing, Inc.</name>
<url>http://www.clue.com/</url>
<description>
Clue Computing, Inc. has over 10 years of UNIX experience,
specializing in system administration, networking, and security.
Custom application development and testing available, including
device drivers, kernel work, etc. We offer sales, assembly, and
installation of FreeBSD systems for any application. For more
information, email
<a href="mailto:info@clue.com">info@clue.com</a>.
</description>
</entry>
<entry id="CodeGen" category="namerica">
<name>CodeGen Inc.</name>
<url>http://www.codegen.com/</url>
<description>
CodeGen, Inc. provide consulting and programming services,
specializing in embedded systems. For more information, email
<a href="mailto:info@codegen.com">info@codegen.com</a>.
</description>
</entry>
<entry id="DataPipe" category="namerica">
<name>DataPipe</name>
<url>http://www.datapipe.com/</url>
<description>
Built on a rock-solid network and immediate live customer
support, DataPipe is a trusted hosting company providing secure
managed solutions. Our specialized teams of passionate
professionals take a personal interest in each client's unique
needs, enabling businesses to outsource with confidence. With
world-class facilities strategically located in the New York
Metropolitan & Silicon Valley areas, Hong Kong and London,
UK, DataPipe offers custom FreeBSD solutions and expert FreeBSD
support 24 hours a day, 365 days a year.
</description>
</entry>
<entry id="EscapeBox" category="europe">
<name>EscapeBox</name>
<url>http://www.escapebox.net/en/</url>
<description>
More than 20 years of IT experience on demand! The EscapeBox
Germany GmbH, founded in 2002, is a small but agile company that
offers IT consulting services. We can support our clients both
from remote and on location, as desired. So, if you are looking
for capable freelancers for your projects, please do not
hesitate to
<a href="http://www.escapebox.net/en/contact.html">contact</a>
us today!
</description>
</entry>
<entry id="EssenzConsulting" category="namerica">
<name>Essenz Consulting</name>
<url>http://www.essenz.com</url>
<description>
Essenz Consulting is a web services and products provider. We
offer custom built High-Performance Intel based
<a href="http://www.essenz.com/open.html">Workstations</a>
and
<a href="http://www.essenz.com/server.html">Servers</a>. These
systems are 100% FreeBSD compatible. Our systems feature
Ultra2-LVD SCSI, high speed networking, Dual Pentium III and
Dual Pentium III XEON processors, and many other fault tolerant
and backup features. For more information contact
<a href="mailto:sales@essenz.com">sales@essenz.com</a> or visit
us at <a href="http://www.essenz.com">http://www.essenz.com</a>.
</description>
</entry>
<entry id="TheFreeBSDMall" category="namerica">
<name>The FreeBSD Mall</name>
<url>http://www.freebsdmall.com/</url>
<description>
The FreeBSD Mall offers several different levels of support
contracts for FreeBSD. Support is available on a per-incident
basis, or as a convenient, extensible annual contract. Our
highly trained technical support staff will handle your requests
in a professional and efficient manner and will provide detailed
responses to your needs by phone, fax, or email. The FreeBSD
Mall staff has over 8 years of experience supporting FreeBSD.
For more information, please see
<a href="http://www.freebsdmall.com/support/">our support page</a>.
</description>
</entry>
<entry id="Hermetek" category="namerica">
<name>HermeTek Network Solutions</name>
<url>https://www.hermetek.com/</url>
<description>
HermeTek Network Solutions is a comprehensive network solutions
provider with a strong focus on FreeBSD. HermeTek also offers
support for other BSD and Linux operating systems, as well as
fully managed hosting packages. Please visit
<a href="https://www.hermetek.com/">our web site</a> for more
information.
</description>
</entry>
<entry id="HerrinSoftware" category="namerica">
<name>Herrin Software Development</name>
<url>http://www.hsdi.com/</url>
<description>
Herrin Software Development, Inc., creator of <em>Qddb</em>,
provides custom software development, internet consulting,
general computer consulting, and training services. For more
information email us at
<a href="mailto:info@hsdi.com">info@hsdi.com</a> or
<a href="http://www.hsdi.com/">visit our web site</a>.
</description>
</entry>
<entry id="GregLehey" category="australia">
<name>Greg Lehey</name>
<url>http://www.lemis.com/grog/</url>
<description>
Greg Lehey has over 20 years industry experience in all system
programming and systems administration disciplines, including
device drivers, kernel debugging, compilers, libraries,
performance analysis, and site planning. He is the author of
<a href="http://www.lemis.com/vinum.html">The Vinum Volume Manager</a>,
a virtual disk driver which includes software RAID, and also the
books <a href="http://www.oreilly.com/catalog/port/">Porting UNIX Software</a>
and
<a href="http://www.oreilly.com/catalog/cfreebsd/">The Complete FreeBSD</a>.
Contact him <a href="mailto:grog@FreeBSD.org">via Email</a>,
or visit his <a href= "http://www.lemis.com/~grog">web site</a>.
</description>
</entry>
<entry id="Ipsure" category="europe">
<name>Ipsure ICT Consultancy Services</name>
<url>http://www.ipsure.com/</url>
<description>
Ipsure offers IT strategic planning, system integration,
maintenance, administration and counsultancy services to SMEs
and large enterprises. The scope of our services range from
initial setup of the physical layer components through the
application level tuning and auditing stages. Although we
provide various solutions over any other *NIX systems, we have a
seasoned experience in building and managing clustered server
environments which are particularly based on FreeBSD for
delivering secure and stabile applications under ultra high
workloads. Our company is located in Istanbul, Turkey.
</description>
</entry>
<entry id="innominate" category="europe">
<name>innominate AG</name>
<url>http://innominate.de/</url>
<description>
innominate AGis a Linux, *BSD and Open Source service provider
based in Berlin, Germany. Not only as consulting partner but
also as system administrator, programmer, supporter and trainer
we offer the full range of services with a heavy focus on Open
Source products. Many of our tailor-made products are
engineered using apache, Perl, Zope, MySQL and Oracle running on
Linux and *BSD. For further information please contact
<a href="mailto:info@innominate.de">info@innominate.de</a> or
visit our <a href="http://innominate.de/">website</a>.
</description>
</entry>
<entry id="ITSPro" category="europe">
<name>ITS Pro</name>
<url>http://www.itspro.com.pl</url>
<description>
ITS Pro is on the market since 2013. We are based in Poland.
We focus on consultancy and advisory services. We deliver
customized systems and applications, monitoring IT systems,
messaging systems for our customers from various sectors and
countries.
We work in the following applications based on the FreeBSD
platform: messaging systems - Postfix, monitoring systems –
Nagios, secure publishing Internet access to back office
applications and services (reverse proxy) like Exchange and
SharePoint.
Feel free to contact us to learn how you can benefit from our
knowledge, experience and passion in IT technology.
</description>
</entry>
<entry id="ITSchulungen" category="europe">
<name>IT-schulungen.com</name>
<url>http://www.it-schulungen.com</url>
<description>
Located in Germany, IT-Schulungen.com is a portal for
IT-Trainings (both individual workshops and public seminars) and
offers training and consulting for different Open Source systems
including
<a href="http://www.it-schulungen.com/seminare/serversysteme/freebsd/index.html">FreeBSD</a>.
For further information please call 01805 120 222 (from within
Germany) or visit our
<a href="http://www.it-schulungen.com">website</a>.
</description>
</entry>
<entry id="iXsystems" category="namerica">
<name>iXsystems, Inc.</name>
<url>http://www.ixsystems.com</url>
<description>
Based in the heart of Silicon Valley in San Jose, California,
iXsystems offers FreeBSD technical support and custom
development with a devoted Professional Services and Call Center
based in the US to assist with issues. Getting FreeBSD up and
running is fast and easy, but having expert help on-hand to
solve your problems can take your solution to new heights. From
optimizing your small office set-up to guidance on very large
deployments, our team can ensure you get the most from FreeBSD.
</description>
</entry>
<entry id="OKTS" category="namerica">
<name>Okanagan Technology Solutions</name>
<url>http://www.okts.ca/</url>
<description>
Okanagan Technology Solutions specializes in open source
technologies, in particular FreeBSD, Perl, Apache, and MySQL for
clients in the beautiful Okanagan region of British Columbia.
For more information, please visit our
<a href="http://www.okts.ca">web site</a>.
</description>
</entry>
<entry id="LNC" category="namerica">
<name>Linux Network Care</name>
<url>http://www.linuxnetworkcare.com/</url>
<description>
Linux Network Care is based in Toronto, Ontario. Our company is
specialized in providing Linux and FreeBSD based solutions for
small, medium and corporate sized businesses. We provide
ourselves on our delivery of dependable network solutions, world
class server administration, tight server security and easy to
understand Linux training. We also provide desktop integration
with Ubuntu Linux.
</description>
</entry>
<entry id="Schweikhardt" category="europe">
<name>Jens Schweikhardt</name>
<url>http://www.schweikhardt.net/</url>
<description>
Jens Schweikhardt, located near <b>Stuttgart/Germany</b>, is a
FreeBSD committer with 20 years of Unix experience who won
several national and international programming contests. If you
have a problem that can be solved using the Unix toolbox
(preferably C, perl, shell) he is the one to make it happen.
With his background in Unix Standardization he will make sure
your investment runs portably and efficiently on all the Unices
you care for. Contact him via
<a href="mailto:schweikh@FreeBSD.org">schweikh@FreeBSD.org</a>.
</description>
</entry>
<entry id="Stacey" category="europe">
<name>Julian Stacey</name>
<url>http://www.berklix.com/~jhs/cv/</url>
<description>
<a href="http://berklix.com/">Net services & systems engineering</a>,
UNIX since 1978, Maintains a
<a href="http://berklix.com/~jhs/consultants/">FreeBSD
Commercial Consultants Index</a> (<b>sorted geographically
& by full & part timers)</b>. Be sure to visit his
page!
</description>
</entry>
<entry id="Supportodua" category="europe">
<name>Support.od.ua</name>
<url>http://support.od.ua/</url>
<description>
Support.od.ua is located in Odessa, Ukraine. We offer
professional FreeBSD and Linux installation, consulting and
server solutions for customers in Ukraine, Russian Federation
and Kazakhstan. For more information and contact details please
visit our <a href="http://support.od.ua">website</a>.
</description>
</entry>
<entry id="myserver.bg" category="europe">
<name>myserver.bg</name>
<url>https://myserver.bg/en</url>
<description>
myserver.bg offers professional services to companies
implementing open source solutions. We are BSD and Linux
certified system administrators and network engineers. Day to
day system administration includes databases, web services, high
availability systems, virtualization, monitoring, telephony, and
spam fighting. That is just part of the things that we do since
2001. For all these years we have gained exceptional experience
in system administration, servers maintenance and network
management. For more information please visit our web site.
</description>
</entry>
<entry id="Nesbitt" category="namerica">
<name>Nesbitt & Associates</name>
<url>http://www.nesbitt.ca/</url>
<description>
Nesbitt & Associates is based in Vancouver, Canada, but
have worked with clients all over the world. We specialize
in open source technologies, in particular, FreeBSD, Perl,
Apache, mod_perl and MySQL. For more information, please visit
<a href="http://www.nesbitt.ca/">our web site</a>.
</description>
</entry>
<entry id="NixSys" category="europe">
<name>NixSys BVBA</name>
<url>http://www.nixsys.be/</url>
<description>
NixSys specializes in the development, maintenance and
deployment of Free and Open Source Software on any scale.
Remote and on-site systems administration, particularly in the
areas of mail and dns, are also available.
<a href="mailto:philip@nixsys.be">Contact us</a> for more
information and rates.
</description>
</entry>
<entry id="NSWITS" category="australia">
<name>NSW IT Support</name>
<url>http://nswits.com.au/</url>
<description>
NSW IT Support provides FreeBSD, OpenBSD and Linux installations
services for secure antispam web servers that will make any
customers happy. Visit our <a
href="http://nswits.com.au">website</a> for more information.
</description>
</entry>
<entry id="OmarSiddique" category="namerica">
<name>Omar Siddique</name>
<url>http://www.heedme.com/resume</url>
<description>
<a href="http://www.heedme.com">Omar Siddique</a> is a
Washington, D.C. based consultant with broad experience in
FreeBSD, Linux, Solaris. His specialties include internet
services, systems integration, system administration, and
networking. Contact him via
<a href="mailto:omar@heedme.com">omar@heedme.com</a>.
</description>
</entry>
<entry id="Omniscient" category="namerica">
<name>Omniscient Technologies</name>
<url>http://www.omniscient.com/</url>
<description>
Omniscient Technologies is a Washington D.C. based consulting
group with a broad array of experience in *BSD, Solaris, Linux
and many other varieties of UNIX specializing in highly scalable
systems, systems integration and network security. Custom
application design also available. Please visit <a
href="http://www.omniscient.com">our website</a> for more
information.
</description>
</entry>
<entry id="OpenSOS" category="asia">
<name>OpenSOS SB</name>
<url>http://www.opensos.net/</url>
<description>
OpenSOS SB is a company which provides consulting and
professional services for FreeBSD based solutions based in Kuala
Lumpur, Malaysia. We also provide maintenance and support
services in Malaysia. We can operate at short notice in any
region in Asia for a truly professional quick-to-service
operational capability. However we are willing to consider
projects outside Malaysia. We are specialized in FreeBSD,
MacOSX and basically in all kinds of UNIX systems.
</description>
</entry>
<entry id="OpenWorld" category="namerica">
<name>OpenWorld</name>
<url>http://www.stdio.com/</url>
<description>
OpenWorld has been providing computer, network, and security
consulting since 1994. Our clients? range from Fortune 500
companies to regional small businesses. Our engineers each have
at least 10 years of experience in Unix systems and networks.
We provide full service consulting, implementation,
installation, security, and support for FreeBSD, SUN Solaris,
SCO Unixware, SCO OpenServer, SGI Irix, IBM AIX, Compaq Digital
Unix, and Cisco IOS. Please email us at
<a href="mailto:info@stdio.com">info@stdio.com</a> or call us at
606-514-1800 for further information.
</description>
</entry>
<entry id="Puryear" category="namerica">
<name>Puryear Information Technology, LLC</name>
<url>http://www.puryear-it.com</url>
<description>
Puryear Information Technology, LLC provides open source
application support, integration services, and technology
management expertise to the Southeastern United States. Our
company plays a pivotal role in the design and deployment of
open source solutions--we have worked with companies to design
and manage FreeBSD and Linux web farms; deployed open
source-based clustering software to ensure high availability of
critical network services; performed critical performance tuning
and software integration for a popular spam filter appliance;
and integrated Samba into Internet-accessible, VPN-based file
services. Phone: +1-225-343-3056.
</description>
</entry>
<entry id="Pendulosoftware" category="samerica">
<name>Pendulo Software</name>
<url>http://www.pendulosoftware.com</url>
<description>
Based in Caracas, Venezuela, Pendulo Software provides and
specializes in support and consulting for FreeBSD and Linux
solutions. We offer onsite as well as offsite support, web
development, design (2D and 3D), Multimedia, VPNs
implementation, Virtualization, VoIP, high performance servers,
Firewalls, custom application programming and many others
services. Our experience covers the most important branches of
current IT industry, from routine of server management, security
audits and updates, to high performance computing and mitigating
attacks. For more information about our services, please visit
our multilanguage
<a href="http://www.pendulosoftware.com">website</a>, send an
email to
<a href="mailto:atencioncliente@pendulosoftware.com">atencioncliente@pendulosoftware.com</a>
or
<a href="mailto:infocorp@pendulosoftware.com">infocorp@pendulosoftware.com</a>
or call us under +58 (212) 625-0708, +1 (407) 536-9895 or +1
(253) 642-6484.
</description>
</entry>
<entry id="PeterDufault" category="namerica">
<name>Peter Dufault</name>
<url>mailto:dufault@hda.com</url>
<description>
Peter Dufault, of HD Associates. Peter has over 15 years
experience in medical device control, high performance
simulation systems, digital closed-loop feedback systems,
realtime UNIX-like systems, and UNIX device drivers. For more
information, please send email to
<a href= "mailto:dufault@hda.com">dufault@hda.com</a>
</description>
</entry>
<entry id="PhilBudne" category="namerica">
<name>Phil Budne</name>
<url>http://www.ultimate.com/phil/resume.html</url>
<description>
Phil Budne is a Boston area consultant who has worked
professionally with BSD and other Unix systems since 1985.
Services include development and porting of kernel extensions,
device drivers, network protocol implementation, and
applications, as well as network and system administration. For
more information contact
<a href= "mailto:phil+fbsd@ultimate.com">phil+fbsd@ultimate.com</a>.
</description>
</entry>
<entry id="psychsoftek" category="namerica">
<name>Psychsoft Consulting</name>
<url>http://www.psychsoftek.com</url>
<description>
Psychsoft Consulting is an Industry recognized leading
technology consulting firm based in Quincy, Massachusetts
founded in 1987 with a highly educated, trained and experienced
staff to help in all your IT needs. Psychsoft, Inc. personnel
hold advanced degrees in various fields and have years of
experience in IT implementation, troubleshooting, design and
configuration. Areas of expertise include: Linux, Microsoft
Windows, UNIX (including FreeBSD), TCP/IP, LAN, WAN, VPN,
Network security, WIFI security, WIFI design, Database design,
SQL, Web site design, Server design, System integration, Network
printing and DSL/Broadband/T1 Internet access.
</description>
</entry>
<entry id="Questwork" category="asia">
<name>Questwork Consulting Limited</name>
<url>http://www.questwork.com/</url>
<description>
Questwork Consulting Limited is based in Hong Kong. We provide
consulting, web application development, hosting &
maintenance services on FreeBSD to our clients for more than 5
years. For more information, please contact us by email at
<a href="mailto:freebsd@questwork.com">freebsd@questwork.com</a>
or visit our <a href="http://www.questwork.com/">website</a>.
</description>
</entry>
<entry id="Secnetix" category="europe">
<name>Secnetix GmbH and Co KG</name>
<url>http://www.secnetix.de/</url>
<description>
Secnetix GmbH & Co KG -- located in Munich, Germany -- has a
strong focus on BSD systems and offers professional consulting
services, ranging from basic administration, programming and
security-related tasks to sophisticated projects involving
design, implementation and maintenance of complex network
setups. For more information, please
<a href="http://www.secnetix.de/">visit our web site</a> or send
a message to
<a href="mailto:info@secnetix.de">info@secnetix.de</a>.
</description>
</entry>
<entry id="SteubenTech" category="namerica">
<name>Steuben Technologies</name>
<url>http://www.steubentech.com/</url>
<description>
Steuben Technologies is a consulting company offering support,
administration, custom software development, legacy systems
support and solutions tailored to your unique business model on
a wide range of platforms including FreeBSD, NetBSD and most
commercial UNIX platforms and much more. Please see our website
or call us at (607)661-4431.
</description>
</entry>
<entry id="SysCare" category="europe">
<name>SysCare s. r. o.</name>
<url>http://www.SysCare.sk/</url>
<description>
SysCare s. r. o. is a company based in Slovakia with the aim to
provide highly professional solutions, including consultancy and
outsourcing services for reasonable amount of money. Our focus
is on high-availability and high-performance solutions for web,
database, DNS and email products built on &os;. SysCare s. r.
o. has been founded by Daniel Gerzo, who is being part of the
official &os; development team. For inquiries please send us an
email to <a href="office@syscare.sk">office@syscare.sk</a>, or
visit our <a href="http://www.SysCare.sk/">web site</a> for more
information.
</description>
</entry>
<entry id="TecVD" category="europe">
<name>TecVD</name>
<url>http://www.tecvd.com/</url>
<description>
TecVD is located in Barcelona, Spain. We are a company focused
in system security and open source implementations (GNU/Linux,
FreeBSD and OpenBSD) in heterogeneous infrastructure. We also
have security appliances, Tseg series, and network services
appliances like Tcor series. We can provide you with a complete
enterprise solution tailored to your needs. See our website or
email us at <a href="mailto:tecvd@tecvd.com">tecvd@tecvd.com</a>
for further information.
</description>
</entry>
<entry id="TundraWare" category="namerica">
<name>TundraWare Inc.</name>
<url>http://www.tundraware.com/</url>
<description>
TundraWare Inc. provides FreeBSD related consultancy in all
contexts, from Embedded to large Transaction Processing systems.
We have extensive International experience and can provide
services in network design, systems architecture, development,
deployment and operations. Contact us via telephone on
847/827-1706, via email to
<a href="mailto:info@tundraware.com">info@tundraware.com</a> or
write to us at TundraWare Inc., 817 Fairmont Court, Des Plaines,
IL 60018, USA.
</description>
</entry>
<entry id="UnixPorting" category="namerica">
<name>UnixPorting</name>
<url>http://www.UnixPorting.com/</url>
<description>
UnixPorting.com specializes in the porting of existing software
to new operating systems or hardware. In addition to porting,
we specialize in C and Perl programming, Unix system
administration and security, and open source technologies
(FreeBSD, Perl, Apache, mod_perl, MySQL, etc.). For more
information, please visit
<a href="http://www.UnixPorting.com/">our web site</a>.
</description>
</entry>
<entry id="UnixWorX" category="namerica">
<name>UnixWorX System Design</name>
<url>http://www.unixworx.ca/</url>
<description>
UnixWorX System Design is a Vancouver, BC based BSD consulting
firm established in 1994. For over 20 years we've provided
commercial support for BSD including FreeBSD, NetBSD and
OpenBSD. Our specialties include Web Servers (Apache and
TomCat), Database, Content Management Systems (CMS), Email
servers such as Sendmail and Postfix, DNS (BIND 8 and 9),
Firewalls (PF and IPF), Routing, as well as application
development and Perl / C++ Programing. We operate our own
server collocation facility situated on a GIG-E Backbone.
Additionally, the founder of the company, Glenn Graham, is an
author for O'Reilly Publishing. We welcome new business! For
more information, we invite you to visit our
<a href="http://www.unixworx.ca">website</a>.
</description>
</entry>
<entry id="AspenWorks" category="namerica">
<name>AspenWorks, Ltd.</name>
<url>http://www.aspenworks.com/</url>
<description>
AspenWorks is an Aspen, Colorado based consulting company with
offices in Portland, OR. We specialize in network applications,
and Wireless Broadband management for ISPs and WISPs.
AspenWorks has been in business since 1986. Telephone:
970-925-3355
</description>
</entry>
<entry id="SecurityAudit" category="africa">
<name>Security Audit and Control Solutions</name>
<url>http://www.sacs.co.za/</url>
<description>
Security Audit and Control Solutions (SACS) provides information
security consultation and IT auditing services and offers
professional FreeBSD support. SACS has developed a complete
range of Technological Risk Management solutions using FreeBSD
as an anchor for data analysis. Firewalls deployed using
FreeBSD makes a cost effective solution in any organization and
SACS can implement a secure FreeBSD firewall with caching
engines, Network Address Translation (NAT) and proxies. For
additional information please contact
<a href="mailto:pearcem@sacs.co.za">Mervin Pearce</a> or visit
<a href="http://www.sacs.co.za">http://www.sacs.co.za</a>
</description>
</entry>
<entry id="Raditex" category="europe">
<name>Raditex Control AB</name>
<url>http://www.raditex.nu/</url>
<description>
Raditex Control AB are a firm of consultants and also do
education in Unix. We have long experience with all kinds of
Unix systems not only FreeBSD or Linux. For more information
phone us at +46 19 450105 or give us an email at
<a href="mailto:gorhas@raditex.nu">gorhas@raditex.nu</a> or
<a href="http://raditex.nu/">visit our web site</a>.
</description>
</entry>
<entry id="Mike_Meyer" category="namerica">
<name>Mike_Meyer</name>
<url>http://www.mired.org</url>
<description>
Mike Meyer of Meyer Consulting has been providing Unix-based
solutions since 1976, and web-based applications since 1992.
These solutions range from chemical systems modeling to device
drivers, and the web applications have ranged from
community-building applications to web based software release
systems. For more information, please contact
<a href="mailto:mwm@mired.org">mwm@mired.org</a>.
</description>
</entry>
<entry id="NS3G" category="namerica">
<name>NS3G.COM</name>
<url>http://www.ns3g.com/</url>
<description>
NS3G.COM, based out of Toronto, Ontario, Canada, offers a
variety of services and products. We specialize in products
that run under FreeBSD and other *NIX systems but also support
other platforms. Solutions for firewalls, LAN's, WAN'S and web
presence are just a few that we offer. Please visit us at
<a href="http://www.ns3g.com/">www.ns3g.com</a> or contact us at
<a href="mailto:info@ns3g.com">info@ns3g.com</a> for more
information or to get a quote.
</description>
</entry>
<entry id="Cybersource" category="australia">
<name>Cybersource Pty. Ltd</name>
<url>http://www.cyber.com.au/</url>
<description>
Cybersource is Australia's leading IT Professional Services
Company in the areas of Unix/FreeBSD/Linux, TCP/IP
Datanetworking and Open Platform application development using
these technologies. With around 40 staff, are based in
Melbourne and have been successfully providing IT Professional
Services for 10 years.
</description>
</entry>
<entry id="Bilch" category="europe">
<name>Bilch International Consulting</name>
<url>http://www.bilch.com/</url>
<description>
Bilch International Consulting, Hamburg is based in Germany. We
are building fire walled servers and connect them to your ISDN,
POTS, ATM or E1/T1 Line. BILCH Com is an ASP and application
software developer. Please mail us at
<a href="mailto:info@bilch.com">info@bilch.com</a>.
</description>
</entry>
<entry id="ParcProductions" category="europe">
<name>Parc Productions</name>
<url>http://www.bsdengineering.com/</url>
<description>
Parc Productions. Located in the Netherlands. Started in 1997.
We deliver professional system engineering services for FreeBSD,
OpenBSD and MacOS X. Our services include 24/7 support,
consultancy, maintenance of both hardware and software, assembly
and installation of hardware, remote and on-site support,
development of scripts and software for the machines we maintain
etcetera. Of course we deliver hosting facilities and space for
your servers at low costs as well. Visit our websites at
<a href="http://www.bsdengineering.com/">www.bsdengineering.com</a>.
Please contact us by
<a href="mailto:info@parcproductions.com">email</a> or by
telephone: +31-204892456.
</description>
</entry>
<entry id="Wirewalk" category="namerica">
<name>Wirewalk Technologies</name>
<url>http://wirewalk.net/freebsd</url>
<description>
Wirewalk Technologies is NYC based company, providing
engineering and support services based on FreeBSD since 1997.
Our staff is certified by the BSD Certification Group. We
provide general purpose server systems, storage and security
solutions. Contact us at 1-516-513-5084 or by
<a href="mailto:info@wirewalk.com">e-mail</a>.
</description>
</entry>
<entry id="Worria" category="asia">
<name>Worria Affordable Web Hosting</name>
<url>http://worria.com/en/hosting.shtml</url>
<description>
Worria Affordable Web Hosting is a privately owned company in
Hong Kong. We offer FreeBSD web hosting related consulting
services, such as server administration and website management.
For more details, please email
<a href="mailto:sales@worria.com">our sales team</a>.
</description>
</entry>
<entry id="ZYTRAX" category="namerica">
<name>ZYTRAX, Inc</name>
<url>http://www.zytrax.com/</url>
<description>
Zytrax, Inc. is based in Montreal, Canada and provides
consulting, development, implementation, hosting and maintenance
services specialising in the BSD platforms. Our skill base
includes Apache, PHP, Ruby, DNS, Mail, LDAP, Samba,
PostgeSQL/MySQL and embedded systems. Please email us at
<a href="MAILTO:consulting@zytrax.com">consulting@zytrax.com</a>.
We can be reached via telephone at +1.514.285.9088.
</description>
</entry>
<entry id="Xetpoint" category="europe">
<name>Xetpoint</name>
<url>http://www.xetpoint.fi/</url>
<description>
Xetpoint Oy is located in Pirkkala, Finland. We offer
professional FreeBSD support, consulting, programming,
maintenance and monitoring services. For more information,
please visit our website.
</description>
</entry>
<entry id="siliconlandmark" category="namerica">
<name>Silicon Landmark LLC</name>
<url>http://siliconlandmark.com/</url>
<description>
Silicon Landmark's mission is to supply our customers with
fully customized, scalable, turn-key Information Technology
solutions at competitive prices. We specialize in designing
package products that will meet and your business' needs
and budget.
</description>
</entry>
<entry id="oscillation" category="europe">
<name>os-cillation</name>
<url>http://www.os-cillation.de</url>
<description>
os-cillation, located in Siegen/NRW, Germany. We offer a broad
range in BSD-based software-development
(C/C++/Java/HTML/PHP/Perl/SQL). Installation and support of
FreeBSD based mail, web, firewall, database, news, dns and ftp
servers. FreeBSD and Windows desktop integration. Also
experienced with NetBSD, Solaris and Linux.
</description>
</entry>
<entry id="tunix" category="europe">
<name>Tunix</name>
<url>http://www.tunix.nl/</url>
<description>
For more than 10 years TUNIX - the only Dutch firewall developer
- brings you a unique combination of security-services:
high-level training on Internet-technology and tailor-made
security solutions. TUNIX Security offers an end-to-end
solution with a full range of services such as consultancy for
developing a security-policy and design of a
security-architecture, project-management, turn-key
implementation of firewall-appliances, multi-level support and
24x7 management and monitoring. The security solutions are
build on the TUNIX Firewall, a modular, FreeBSD based
proxy-level firewall. For more information, please contact
sales@tunix.nl or visit our website at www.firewall.nl.
</description>
</entry>
<entry id="improware" category="europe">
<name>ImproWare AG</name>
<url>http://www.imp.ch/</url>
<description>
ImproWare AG focuses on Internet and Networking Services as well
as System Integration and Consulting based on FreeBSD. We offer
contract programming in all major programming languages with a
focus on FreeBSD, userland and kernel.
</description>
</entry>
<entry id="netmaniacs" category="europe">
<name>NetManiacs</name>
<url>http://www.netmaniacs.nl/</url>
<description>
NetManiacs is a dutch company based in Eindhoven. We provide
consulting, (system administration) support, custom software and
a broad range of (internet/business) server solutions. For more
information visit
<a href="http://www.netmaniacs.nl">www.netmaniacs.nl</a> or
contact us at
<a href="mailto:info@netmaniacs.nl">info@netmaniacs.nl</a>.
</description>
</entry>
<entry id="ArtisanComputerServicesLLC" category="namerica">
<name>Artisan Computer Services LLC</name>
<url>http://www.artisancomputer.com/</url>
<description>
Artisan Computer Services LLC is based in Tucson, Arizona. We
provide system administration and configuration for web, mail,
DNS, database, and streaming video servers using FreeBSD. We
also do computer consulting on a variety of platforms (Mac OS X,
Windows, *BSD, Linux), with an emphasis on integration and
security. You can reach us at
<a href="mailto:info@artisancomputer.com">info@artisancomputer.com</a>,
or our website,
<a href="http://www.artisancomputer.com">www.artisancomputer.com</a>.
</description>
</entry>
<entry id="TegtmeierInternetSolutions" category="europe">
<name>Tegtmeier Internet Solutions</name>
<url>http://www.tegtmeier.de/</url>
<description>
Tegtmeier Internet Solutions is located in Hamburg / Germany.
We offer consulting, professional support and maintenance for
*BSD and Linux systems and are developing individual solutions
in C/Perl/PHP/SQL/HTML/shell, based on open source products. We
are focused on internet security, high availability and
performance/optimization. Visit our website at
<a href="http://www.tegtmeier.de">http://www.tegtmeier.de</a>.
</description>
</entry>
<entry id="EnvescentLCC" category="namerica">
<name>Envescent, LLC</name>
<url>http://www.envescent.com/</url>
<description>
Envescent is a leading provider of technology products and
services focused on FreeBSD. We offer consulting, pre-installed
workstations and servers, compatible hardware, outsourced system
and network administration and implementation, security
auditing, technical support and much more.
</description>
</entry>
<entry id="RBJ-Consultants" category="europe">
<name>RBJ-Consultants</name>
<url>mailto:rbj@madeira.dyndns.org</url>
<description>
Unix since 1990. Remote installation (Europe-webhosting,
Brasil, USA) and local. We train, install, configure and admin
FreeBSD, Linux (RedHat, Suse, Gentoo, Mandrake), Solaris.
Inside network - MacOSX, Windows, etc (we support too).
Contact: <a href="mailto:rbj@madeira.dyndns.org">Rui Bento</a>
<rbj@madeira.dyndns.org>
</description>
</entry>
<entry id="sirius" category="europe">
<name>Sirius</name>
<url>http://www.siriusit.co.uk/</url>
<description>
Sirius leads in the deployment, support and training of Open
Source technology, including FreeBSD. We support organisations
across Europe in their pursuit of innovative, versatile and
robust technology solutions without the financial burden of
software licensing.
</description>
</entry>
<entry id="sheridan" category="europe">
<name>Sheridan Computers Limited</name>
<url>http://www.sheridancomputers.co.uk</url>
<description>
We offer IT consulting, systems integration, corporate
information systems and security solutions based on BSD
software. For more information, send us an
<a href="mailto:info@sheridancomputers.co.uk">email</a> or visit
our <a href="http://www.sheridancomputers.co.uk">website</a>.
We operate in the United Kingdom.
</description>
</entry>
<entry id="ceintec" category="europe">
<name>Ceintec</name>
<url>http://www.ceintec.com</url>
<description>
Ceintec provides FreeBSD and unix-like operating systems
learning courses in Spain (Instructor-Led courses). We also
provide FreeBSD consulting and technical support for enterprises
in Spain. For more information visit
<a href="http://www.ceintec.com/empresas.html">http://www.ceintec.com/empresas.html</a>
</description>
</entry>
<entry id="UnitedWare" category="namerica">
<name>UnitedWare, LLC</name>
<url>http://united-ware.com/</url>
<description>
UnitedWare, LLC is a Cincinnati, Ohio based company that
provides FreeBSD server setup and custom web and desktop
applications. We perform IT audits and solutions to identify
and manage the information needs of any business. To contact us
visit our <a href="http://united-ware.com/">website</a> or give
us a call at (513) 563-0897.
</description>
</entry>
<entry id="Triona" category="europe">
<name>Triona - Information und Technologie GmbH</name>
<url>http://www.triona.de</url>
<description>
Triona - Information und Technologie GmbH offers FreeBSD
installation and administration services, individual software
development, web-, application- and database-servers. The
company is based in Mainz, Germany. For more information
contact us via email
<a href="mailto:bsd@triona.de">bsd@triona.de</a> or visit our
web site.
</description>
</entry>
<entry id="ActivSupport" category="namerica">
<name>ActivSupport, Inc.</name>
<url>http://www.activsupport.com/</url>
<description>
ActivSupport is a network consulting firm located in the San
Francisco Bay Area specializing in cross-platform environment
support including FreeBSD. ActivSupport also provides network
security, and business continuity consulting. Whether you are
looking for a certified consultant or specific technical support
solutions please contact us at 1-877.228.4863 for immediate
assistance with your technical needs, or visit our
<a href="http://www.activsupport.com/">web site</a> for more
information about services we are providing.
</description>
</entry>
<entry id="BSDPIE" category="europe">
<name>BSD Professionals In Europe (BSDPIE)</name>
<url>http://bsdpie.com/</url>
<description>
We are BSD based co-operating consultants offering Consultancy,
Support, Development, Installation and Internet Services located
in Munich, Germany.
</description>
</entry>
<entry id="venture37" category="europe">
<name>Venture 37 Ltd.</name>
<url>http://www.venture37.com/</url>
<description>
We provide consultancy and support for Mail, Web, and DNS
services served on FreeBSD or other open source UNIX-like
operating systems. Visit our
<a href="http://www.venture37.com/" shape="rect">web site</a>
or contact us at
<a href="mailto:info@venture37.com">info@venture37.com</a>.
</description>
</entry>
<entry id="cts" category="europe">
<name>CTS Consulting and Trade Service</name>
<url>http://www.ctseuro.com</url>
<description>
CTS Consulting & Trade Service is a full service Consultant
and Supplier for pre-installed FreeBSD Servers. We ship
Firewalls, Internet Gateways, Mail Systems with virus
protection, realtime http scanner, File and Print Servers.
Network planning and implementation of WANS with IPSEC
tunneling, Samba and Hylafax installations. Founded in 1985
with Unix and Mainframe experience since 1978. We are based in
Salzburg and Vienna, Austria and have customer references
throughout Europe and Eastern Europe ranging from 5 to 60000
Users. We are also shipping pre-installed Asterisk Telephone
Systems and have best the references with it.
</description>
</entry>
<entry id="fortuitous" category="namerica">
<name>Fortuitous Technologies</name>
<url>http://fortuitous.com</url>
<description>
Fortuitous Technologies provides Performance Tuning, Capacity
Planning, System Design, Network Design and security services
for FreeBSD, Linux, and Unix systems worldwide. We cover Cloud,
Grid, and Multi-tiered systems of all types. Contact us at
<a href="http://fortuitous.com">http://Fortuitous.com</a> for
further information.
</description>
</entry>
<entry id="netfence" category="europe">
<name>NetFence</name>
<url>http://www.netfence.it</url>
<description>
NetFence deploys and maintains Internet/intranet servers based
on FreeBSD and other open source software (including Apache web
server, Squid, Samba, Cyrus IMAP, PostgreSQL, OpenVPN and
others). Network and client-side hardware/software/support is
also offered, as well as custom programming and security
coverage. It is located in Bologna, Italy and can be reached at
<a href="mailto:freebsd@netfence.it">freebsd@netfence.it</a>.
</description>
</entry>
<entry id="unixconsulting" category="europe">
<name>Unix Consulting</name>
<url>http://www.unixconsulting.info</url>
<description>
Based in London, England, we are focused on BSD/Linux and Open
Source consultancy and support. Whether your business already
runs Linux/FreeBSD/NetBSD/OpenBSD or you are considering the
introduction of Open Source technology,
<a href="http://www.unixconsulting.info/">Unix Consulting</a>
can help you every step of the way.
</description>
</entry>
<entry id="ironkeep" category="namerica">
<name>Ironkeep Technologies L.L.C.</name>
<url>http://www.ironkeep.net</url>
<description>
Ironkeep Technologies is a Traverse City based consulting firm,
specializing in internet solutions, networks, vpns, software
development, programming, web development, web design,
application development, web hosting, consulting, and open
source software including FreeBSD.
</description>
</entry>
<entry id="ethon" category="europe">
<name>Ethon Technologies GmbH</name>
<url>http://www.ethon.de</url>
<description>
Ethon Technologies GmbH -- located in Munich, Germany -- has a
strong focus on BSD driven solutions. We offer professional
consulting services as well as BSD based telecommunication
systems, ranging from basic PBX to telco solutions up to
10.000.000 users. Feel free to contact us at
<a href="mailto:info@ethon.de">info@ethon.de</a> or drop us a
voicemail: +49.89.255456.0
</description>
</entry>
<entry id="hamburgnet" category="europe">
<name>Hamburgnet</name>
<url>http://www.hamburgnet.de</url>
<description>
Hamburgnet provides you with experience in FreeBSD and OpenBSD
based projects. From low-end webservers to high-end firewall
and database clusters. Storage, server, Unix, cluster &
consulting. You can visit our
<a href="http://www.hamburgnet.de">website</a>,
<a href="mailto:info@hamburgnet.de">mail us</a>, phone us at +49
(40) 73672322 or contact us via fax at +49 (40) 73672321.
</description>
</entry>
<entry id="tecno21" category="samerica">
<name>Tecno21 - Openservices</name>
<url>http://www.tecno21.com.br/FreeBSD/</url>
<description>
We provide setup and support for FreeBSD, OpenBSD and Linux. We
have 10+ years experience with open source software on corporate
and SMB customers. We offer custom applications
(C/C++/Java/C#), network infrastructure design, security, audit
and smartcard solutions. Contact us via
<a href="mailto:suporte@tecno21.com.br">e-mail</a> or by phone
at +55 (11) 3825-2472.
</description>
</entry>
<entry id="pate" category="namerica">
<name>Pate Consulting, Inc.</name>
<url>http://www.pateconsulting.com/</url>
<description>
We specialize in providing solid open source solutions for
businesses using OpenBSD, FreeBSD, and Linux. 6 years in
business. 12 years of experience - MCSE, CCNA, RHCE
certifications - Also MySQL, PostgreSQL. VPNs, firewalls,
wireless, DNS, squidGuard, mail - even training with FreeBSD.
You can contact us via
<a href="mailto:info@pateconsulting.com">e-mail</a>, call us at
713.333.5468 or send us a fax at 713.333.5494.
</description>
</entry>
<entry id="remsys" category="asia">
<name>REMSYS</name>
<url>http://www.remsys.net</url>
<description>
<a href="http://www.remsys.net">REMSYS</a>, based in Chisinau,
Moldova, provides and specializes in support and consulting for
FreeBSD, BSDi, Linux and other Unix variants. We are dedicated
to offering solutions for desktop and server environments. We
can help installing, configuring, system administration (Exim,
SMTP, Database, Webhosting, DNS, Apache Webstats etc.) Our
experience covers the most important branches of current IT
industry, from routine of server management, security audits and
updates, to high performance computing, mitigating attacks and
recovering data from crashed file systems. We offer you up to
date solutions for remote systems management, keeping your
network equipment up and operational 24 hours a day. For more
information please visit our
<a href="http://www.remsys.net">web site</a> or contact us at
<a href="mailto:info@remsys.net">info@remsys.net</a> or call us
at +373 22 23-20-70, +373 79-40-63-09.
</description>
</entry>
<entry id="firmbit" category="namerica">
<name>FirmbIT</name>
<url>http://www.firmbit.com/index.php</url>
<description>
FirmbIT is a high quality server management and security company
providing friendly reliable support specializing in high
security installations and scalable solutions with support for
FreeBSD, OpenBSD, NetBSD, Redhat, Fedora, CentOS, Debian,
Slackware, Gentoo, SuSe, Mandrake and Sun Solaris servers.
</description>
</entry>
<entry id="eden-fx" category="asia">
<name>EDEN-FX</name>
<url>http://www.eden-fx.com</url>
<description>
EDEN-FX is a company which develops high class technology.
Founded in 1999, we are working with a team of highly qualified
professionals specializing in hard and software engineering. We
have broad experience with the FreeBSD operating system.
EDEN-FX solutions manufactures firewalls, wireless engineering
and develops network technologies.
</description>
</entry>
<entry id="osre" category="namerica">
<name>Open Software Research and Education (OSRE)</name>
<url>http://www.osre.org/</url>
<description>
Open Software Research and Education (OSRE) is a comprehensive
entity providing open infrastructure design, development,
deployment, maintenance and training. We have extensive
experience with FreeBSD and most other open source operating
systems. We are located in Longview, Texas and provide both
on-site and remote support at affordable rates. Please visit
our <a href="http://www.osre.org">website</a> for more
information or call us toll-free at 1.866.235.1288.
</description>
</entry>
<entry id="oullet" category="namerica">
<name>Ouellet Consulting Inc.</name>
<url>http://sirius.danosoft.com/oci/index.html</url>
<description>
OCI specialize in systems/networks design, implementation and
security solutions, including solutions meeting HIPPA
requirements. We spec out, configure and support firewalls,
proxy-arrays, servers, switches, mail systems, web servers,
databases, etc. We are familiar with and support most Windows
and Unix/Linux systems including FreeBSD. We offer remote
administration services worldwide, on all supported platforms.
We plan and assist with Active Directory migrations. For more
information please contact us via
<a href="mailto:info@danosoft.com">e-mail</a> or call us
+1-850-510-6162. Please see
<a href="http://sirius.danosoft.com/oci/index.html">our website</a>
for complete details on what we offer.
</description>
</entry>
<entry id="corbesero" category="namerica">
<name>Stephen Corbesero</name>
<url>mailto:corbesero@fast.net</url>
<description>
Stephen Corbesero has over 20 years of software and hardware
computing experience in various flavors of Unix (FreeBSD since
2.2, SunOS, Solaris, ...), C and C++, Perl, databases,
networking, etc. He can provide system and network
configuration and administration, some custom programming in the
above languages, troubleshooting and repair. He is located in
Eastern Pennsylvania. Please email
<a href="mailto:corbesero@fast.net">him</a> for more
information.
</description>
</entry>
<entry id="corezone" category="europe">
<name>CORE ZONE s.r.o.</name>
<url>http://corezone.cz</url>
<description>
CORE ZONE s.r.o. is an outsourcing and consulting company
focused on delivering the best IT solutions to its customers.
We can take care of your IT infrastructure or help you with
your IT projects. We install, administer and support systems
based on FreeBSD, OpenBSD, or Linux (CentOS, Debian, Ubuntu).
We are located in Prague, Czech Republic. Visit our webpage or
contact us by <a href="mailto:info@corezone.cz">e-mail</a>.
</description>
</entry>
<entry id="hahnefeld" category="europe">
<name>björn hahnefeld IT</name>
<url>http://www.hahnefeld.de</url>
<description>
We are a company for Software-Engineering and a Hosting- and
Server-Solutions provider (Web-, Application-, Database-servers)
for Germany, Austria and Switzerland. We are experienced in the
installation and administration of BSD and Linux systems. Our
software experience is with PHP, Perl and SQL and we speak
English and German. We are located in Regensburg, Germany.
Please email
<a href="mailto:info@hahnefeld.de">info@hahnefeld.de</a> for
more information.
</description>
</entry>
<entry id="paxym" category="namerica">
<name>Paxym</name>
<url>http://www.paxym.com</url>
<description>
Paxym's Highly Skilled team provides software development and
consulting services in the areas of Kernels, Bootloaders for new
CPUs & Boards, Network Security Applications, Storage
Appliances and Performance tuning of embedded SW and
Network/Storage/Security Applications. Paxym provides FreeBSD
SMP for OCTEON (Multicore Mips64 CPU from Cavium Networks). The
port is extensively tested with OpenPosix, Apache WebBench,
UnixBench, MySQL Sysbench, OHCP, Netperf, FreeNAS for stability
and functional completeness. Stable port based on FreeBSD 7.0
is targeted for Network, Security and Storage Applications.
Multiple cores, from 1-16 can be used in SMP mode. Supports
Dynamic & Static Linking models, o32, n64 & n32 ABI.
Root filesystem can be embedded in kernel memory or put on
Compact-Flash/NFS. libthr for POSIX pthreads. Paxym's team has
had extensive experience with Multi-core Mips (Octeon), PPC and
x86 CPUs. Working on these from Rom-Monitors, boot-loaders,
Operating Systems, Network Stacks, Storage protocols, Device
Drivers, Security Algorithms and Embedded Applications. Paxym
has been working closely on FreeBSD, Linux and proprietary OS
environments. For more information, visit
<a href="http://www.paxym.com">http://www.paxym.com/</a>
</description>
</entry>
<entry id="mejojose" category="asia">
<name>Mejo Jose</name>
<url>http://www.kannayath.com</url>
<description>
Open source technology consultant based in Dubai, UAE. More
information on the website -
<a href="http://www.kannayath.com">www.kannayath.com</a>
</description>
</entry>
<entry id="interfuture" category="europe">
<name>Interfuture Systems Ltd</name>
<url>http://www.interfuture.co.uk</url>
<description>
Interfuture is an UK company offering a full range of UNIX
consultancy, from desktop installation and support through to
mission-critical server support and troubleshooting. One of our
specialist areas and preferred operating systems is FreeBSD.
Visit our website for more information or call +44 203 002 2111.
</description>
</entry>
<entry id="senseofsecurity" category="australia">
<name>Sense of Security Pty Ltd</name>
<url>http://www.senseofsecurity.com.au/</url>
<description>
Sense of Security is an Australian provider of Free BSD and Unix
consulting services. We have a strong focus on building secure
networks and systems, including firewalls, VPNs, web servers,
etc. We are also experts at conducting security review, audit,
penetration testing, and assessment services.
</description>
</entry>
<entry id="jmbg" category="namerica">
<name>The JMBG Network</name>
<url>http://www.jmbg.net</url>
<description>
We believe in quality, reliable and innovative solutions –
so naturally we love FreeBSD. We are a Canadian electronic
solutions provider servicing mainly South-Western Ontario. We
also provide some solutions to clients in Canada and the United
States. We offer a wide range of electronic solutions including
consulting services and we most definitely support and recommend
FreeBSD.
</description>
</entry>
<entry id="imayatech" category="samerica">
<name>ImayaTech</name>
<url>http://www.soportesoftwarelibre.com</url>
<description>
We offer professional services to companies implementing open
source in their IT infrastructure main in Argentina. Our
solutions use OpenBSD firewalls, edge servers and authentication
servers. FreeBSD used mainly in data servers. We have over 20
years experience in BSD. We offer: professional services,
technical support, project development and infrastructure
analysis. Visit our
<a href="http://www.soportesoftwarelibre.com/">website</a> for
more information.
</description>
</entry>
<entry id="backwatcher" category="namerica">
<name>BackWatcher, Inc.</name>
<url>http://www.backwatcher.com</url>
<description>
While specialising in security, BackWatcher handles installation
and configuration, systems integration, performance tuning,
disaster recovery, network architecture, programming, and
general systems administration of FreeBSD, NetBSD, OpenBSD,
DragonFly BSD, Linux and many commercial UNIX flavors. For
additional information, please visit our website at
<a href="http:www.backwatcher.com">http:www.backwatcher.com</a>,
email
<a href="mailto:info@backwatcher.com">info@backwatcher.com</a>,
or call +1-425-584-UNIX (US) or +1-778-819-UNIX (CA).
</description>
</entry>
<entry id="thishosting" category="namerica">
<name>ThisHosting.Rocks</name>
<url>https://thishosting.rocks/support</url>
<description>
THR Support offers 24/7 FreeBSD Support services. Including, but
not limited to: setup, maintenance, configuration, updates, security
patches and fixes, monitoring and more. Contact us at
<a href="mailto:support@thishosting.rocks">support@thishosting.rocks</a>
to request a quote.
</description>
</entry>
</entries>
|