101TECH is a South Florida based I.T Solution Provider.
We Deliver Enterprise Class I.T Solutions For Small , Mid-Market Business and Startup Companies.

We Can help you :
  • Maintain Your Existing Computers and Network.
  • Evaluate & recommend technology solutions.
  • Secure your vital business information and infrastructure.
  • Assist in establishing business continuity plans.
  • Monitor and Tune your Servers and Applications
  • Design and Maintain your Web site.
  • Host your Servers , Email and Other Web Services.

Apache SSL

June 13th, 2007 No comments

Notes on creating an apache SSL cert

Read more…

FreeBSD – Configure sendmail masquerading

June 5th, 2007 No comments

Notes on masquerading your domain name , I needed that since one SMS gateway will not accept my nagios@server.domain.com emails , this setting allowed nagios to send the email as nagios@domain.com

Read more…

Perl maintenance tips

May 13th, 2007 No comments

Some perl module notes

upgrade modules :

#perl -MCPAN -e ‘CPAN::Shell->install(CPAN::Shell->r)’

create bundle:

#perl -MCPAN -e shell
cpan>autobundle

Install bundle:

cpan>install Bundle::Snapshot_2003_10_01_00

Windows 2003 – Move dhcp scopes

February 9th, 2007 No comments

How to move a dhcp scope from one windows 2003 server to another.

1. Export SCOPES from original server ( scopes 10.1.1.1 and 10.2.2.2 )
netsh dhcp server export scopes.txt 10.1.1.1 and 10.2.2.2

2. Import scopes on new server
netsh dhcp server import scopes.txt all

3. Change DHCP scope options
for %i in (10.1.1.1 10.2.2.2 ) do netsh dhcp server \\servername scope %i set optionvalue 006 IPADDRESS new_dns_ip new_dns2_ip ( DNS )

for %i in (10.1.1.1 10.2.2.2 ) do netsh dhcp server \\servername scope %i set optionvalue 044 IPADDRESS new_wins_ip new_wins2_ip ( WINS )

4. Disable scopes on old server
for %i in (10.1.1.1 10.2.2.2 ) do netsh dhcp server \\servername scope set state 0

5. Enable scopes on new server
for %i in (10.1.1.1 10.2.2.2 ) do netsh dhcp server \\servername scope set state 0

6. Delete scopes on old server ( BACKUP FIRST !!! )
for %i in (10.1.1.1 10.2.2.2 ) do netsh dhcp server \\servername delete scope %i

Control Panel Items – Cli version

January 29th, 2007 No comments

Sometimes , the mouse is the hardware item you want to install….
here’s how to get to those control panel items via the “run” prompt
 

Read more…