Category Archives: Networking

Java Networking Goodness

I just gave myself a mini refresher course on networking with Java, anyway here are some links I found pretty useful.

Clojure

Sockets

Datagrams

Network Interfaces

Exchanging files

Cookies

Keytool Information

Coursera

Coursera is up and running. It’s a collection of free online classes provide by institutions such as Princeton, Stanford, Berkley, University of Michigan, and University of Pennsylvania. I’ve only just browsed what computer science courses they offer but it looks like there are plenty to choose from.

https://www.coursera.org/

If you’re intersted in this style of learn also check out Harvard’s OpenCourseWare classes.

http://ocw.mit.edu/index.htm

How to Configure IBGP

This one comes from my CCNP lab manual and shows how to configure IBGP.
Continue reading

Command Line & PowerShell Cmdlet List

This is just a random list of command line commands I wanted to double check where available in PowerShell. I ran accress a couple 6of commands that didn’t seem to be supported but there is always a another way to do.  Read the man if you want additional information or use Google, either works.
Continue reading

Administrator’s Guide to Powershell Remoting

This article on remoting in PowerShell was an awesome read, defintaly worth the bookmark.  Fan-Out was one of my favorite parts.

http://powershell.com/cs/media/p/7257.aspx

OWASP Web Application Tool: Hatkit

I just learned about this one not that long ago and it’s looks very promising.  If anyone used WebScarab you should like this one.

 

Also here is a presentation I found useful that help me understand how to use this tool.

[youtube:http://www.youtube.com/watch?feature=player_detailpage&v=qAnh_1pURCU%5D

PowerShell Cheat Sheet – Part One

This part of cheat sheet I’ve putting together for myself.

Continue reading

PowerShell Pipelining Example

Alright pipelining in PowerShell proved to be helpful tonight. Here a quick example to get you combining multiple cmdlets.

First of lets look at a single cmdlet. Type this into your PowerShell terminal.

get-process *

That cmdlet uses a wild card that will list off all process on your local machine. Now lets add another cmdlet into the mix.

get-process * | stop-process

This isn’t a very hard syntax to decode, if you hadn’t notice yet, the pipe command is the “|” character.

Essential what we would be doing is using a stop-process command on each process. Not vary smart thing to do but you can also do something like a foreach loop and target specific processes to either stop or start them with a single line of code.

The built in help has some good infomation on pipelines, type this into your shell.

get-help about_pipeline

Additional help can be found from the PowerShell Team,
http://blogs.msdn.com/powershell/

Citrix Learning Videos

These videos are all hosted on citrix’s website.  I’m in the process of going through them now and collected most of the links to quickly hammer them out.  There are re-post of links in different sections, you can also visit http://support.citrix.com/product/ to find them and other resources like white-papers and best practices.
Continue reading

Citrix Best Practices

I’ve been picking up a little bit of Citrix on the side here are some best practices I’ve found.

Continue reading

Old DNS and Resource Records Notes

Here are some of my old notes when I was going through my MSCE Guide to MS Windows Server 2003 Active Directory.
Continue reading

Outdated DNS Zones Notes

Here are some of my old notes from my MCSE guide on planning a MS Windows Server 2003 network.  I have no idea how outdated this information is but I imagine there not a lot of changes going on in a forest.  Also if your in the DIY mood, check out BIND.

http://www.isc.org/software/bind Continue reading

Active Directory Notes – Flexible Single Master Operations

Here are some of my notes on Flexible Single Master Operations (FSMO).
Continue reading

MySQL Transactional Databases Resources

SHOW INNODB STATUS Walk Through
By: Peter Zaitsev
http://www.mysqlperformanceblog.com/2006/07/17/show-innodb-status-walk-through/

I found Peter’s blog from a StackOverflow question about deadlocking. It’s well documented and looks promoising. Here is the link for the orginal SO question.

http://stackoverflow.com/questions/1851528/mysql-deadlock-explanation-needed

MySQL 5.0 Reference Manual – The InnoDB Transaction Model and Locking
http://dev.mysql.com/doc/refman/5.0/en/innodb-transaction-model.html

Manuals are always good reads.

Load Balancing Resources

Books

DNS & Bind
By: Paul Albitz & Cricket Liu

 
DNS & BIND Cookbook
By: Cricket Liu
 

Internet Links

BIND 9 Administrator Reference Manual
http://www.bind9.net/manual/bind/9.3.2/Bv9ARM.ch01.html
 
TechNet Article on Load Balancing with .NET Framework
http://msdn.microsoft.com/en-us/library/ms730128.aspx