jump to navigation

VNC Server Configuration June 27, 2010

Posted by networknuts in Uncategorized.
add a comment

VNC Server Configuration and concept explained in the latest topic on Network NUTS Forum.

http://networknuts.net/phpBB3/viewtopic.php?f=3&t=297&sid=e88a228584a71c21b14a926294ee61c9

DNS Round Robin Configuration. June 21, 2010

Posted by networknuts in Uncategorized.
Tags: , , , , , , , , , , , , , , , ,
add a comment

If you are hosting a popular site, you will face a problem in which your server simply can’t serve any more requests.

In the web server world, this is called theĀ Slashdot effect.

One way to overcome the limits of the monolithic server is to distribute the load across many machines. By adding a second (or third) server to the available pool of machines, you can not only increase performance but also add to the stability of the network. If you have a hot spare (or three) running all of the time, then if one develops trouble, the others can take over for it without any downtime.

The easiest way to distribute the load of public traffic is to use the magic of round-robin DNS, inbound requests to a single host name can be directed to come from any number of IP addresses.

We use this in the zone file for our network zone “networknuts.net”:

www 60 IN A 172.24.0.254
www 60 IN A 172.24.0.111

Now, when a hosts looks up www.networknuts.net in DNS, about half of the time they will see:

$ host www.networknuts.net

http://www.networknuts.net has address 172.24.0.254
http://www.networknuts.net has address 172.24.0.111

(172.24.0.254 and 172.24.0.111 are my name-servers hostingĀ http://www.networknuts.net)

and the rest of the time, they get:

$ host www.networknuts.net

http://www.networknuts.net has address 172.24.0.111
http://www.networknuts.net has address 172.24.0.254

Check the video of this post at -

God Bless.

Turbo Charged SSH!!! June 1, 2010

Posted by networknuts in Uncategorized.
Tags: , , , , , , , , , , , , , ,
add a comment

Video showing how to make SSH work real FAST.

For more interesting post, tips and tricks visit — www.networknuts.net

God Bless

Follow

Get every new post delivered to your Inbox.

Join 484 other followers