If you would like to hire me for the purpose of security consulting, web development, server, network support, or penetration testing. I can telecommute or if you are near the Bowling Green area, I can commute. If you just need to know what direction to take your IT you can get a free consultation. For a resume or phone number:
bsdpunk@gmail.com
Unix and Linux Servers
Windows Servers
Active Directory
General LAN and WAN problems
Backups and Disaster Recovery Plans
Cisco Routers and Switches
Web Development( Perl PHP Javascript )
Wireless Networks
PC troubleshooting
A+ Certified
Network+ Certified
MCP
Friday, October 17, 2008
Bowling Green, Kentucky Security / Networking / IT Support and Consulting
Friday, February 15, 2008
Simple Machine Forums, install
So my number one admin for my never released forum wanted something other than phpbb3, he wanted smf. So I deleted the phpbb3 directory and made a new mysql db for smf, and through the smf dir on the server, I went to the dir to see if the install would work, sure enough it was complaining about not having language folder in a certain directory an that some ftp clients were to blame. I blame smart ftp by the way. So I placed the missing language directory where it was supposed to be, and then went back to the install.php and sure enough everything worked like a charm so much so and so quickly that I got scared, but the Forum seems to be working perfectly. If any of you can see otherwise let me know.
Monday, February 11, 2008
FreeBSD beggining server set up
Everything you need is in the FreeBSD hand book but not everything in the hand book is something you need, so assuming you have a basic FreeBSD with ports installed. Let's go through the first things you need done after the install. First your going to want to make sure you have connectivity. Ping google.com and see if you have that, if you do you may not need to set up anything for connectivity, but if you don't it is time to crack open the rc.conf.
You can use vi to edit the rc.conf and you need to be root.
vi /etc/rc.conf
add this line for dhcp
ifconfig_fxp0="DHCP"
Replace fxp0 with the name of your network card which can be obtained through a standard ifconfig.
Let's say you want a static IP for your server:
ifconfig_fxp0="inet 192.168.0.2 netmask 255.255.255.0"
Is similar to what you would put in your rc.conf replacing fxp0 again and the ip# and netmask# to match yours.
Next you need to make sure you have a route to the internet:
Add this to your rc.conf:
defaultrouter="10.20.30.1"
You can do this by a command:
# route add default 10.20.30.1
Next you need to make sure that you have name resolution
Make a file /etc/resolv.conf which contains:
nameserver ipofyournameserver
nameserver ipofbackupnameserver
Make sure those are both IP's and not DNS names
****WAIT WAIT***
A little shiznit on rc.conf, rc.conf will only load these settings on restart because rc.conf only exists to set up the settings when the computer is turned on, you can do all of these by command but they won't "stick"
Ok your first port install:
cd /usr/ports/security/nmap
make
And when that is done:
make install
Then you have nmap which is often overyplayed as a hacking tool but it is really a good troubleshooting tool as well, anyway happy hacking.