<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; network administration</title> <atom:link href="http://www.ghacks.net/tag/network-administration/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sat, 11 Feb 2012 09:52:46 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>How To Calculate a TCP-IP Subnet Mask</title><link>http://www.ghacks.net/2011/09/03/how-to-calculate-a-tcp-ip-subnet-mask/</link> <comments>http://www.ghacks.net/2011/09/03/how-to-calculate-a-tcp-ip-subnet-mask/#comments</comments> <pubDate>Sat, 03 Sep 2011 07:42:58 +0000</pubDate> <dc:creator>Melanie Gross</dc:creator> <category><![CDATA[Networks]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[ip]]></category> <category><![CDATA[network address]]></category> <category><![CDATA[network administration]]></category> <category><![CDATA[subnet]]></category> <category><![CDATA[tcp]]></category> <category><![CDATA[tcp/ip]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=50039</guid> <description><![CDATA[If you’re a network administrator, chances are at some point you may need to set up a number of different networks on your IP range. In order to do this, you will need to know how to create different subnets. There are two main things to remember when trying to calculate subnets. The first is [...]]]></description> <content:encoded><![CDATA[<p>If you’re a network administrator, chances are at some point you may need to set up a number of different networks on your IP range. In order to do this, you will need to know how to create different subnets.</p><p>There are two main things to remember when trying to calculate subnets. The first is that that default subnet for a range is 255.255.255.0. This subnet, that we all recognize gives you one network with 255 different addresses from 1 to 255. Fairly easy stuff so far. The second thing to remember is the formula needed to calculate a new subnet. For this we have to go back to basics and remember that the number 255 is made up in binary of 8 bits. To get the number 255, all those 8 bits would be set to 1, each one representing a number in decimal in the following sequence. (1, 2, 4, 8, 16, 32, 64, 128). If you add all these numbers together you get 255.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/09/tcp-ip-subnet.gif" alt="tcp-ip-subnet" title="tcp-ip-subnet" width="403" height="162" class="alignnone size-full wp-image-50040" /></p><p>In order to create our subnet mask we need to “borrow” a certain number of bits from our host address. The host address is the last number in the group of four that makes up our subnet. So in the subnet 255.255.255.0, the 0 is the host address.</p><p>We can use the formula (2^n – 2) to figure out how many networks we can make by borrowing certain number of bits. Lets say for example we wanted to make six networks; we would need to borrow 3 bits, because (2^3 – 2 = 6). So we take the three bits from the left of our binary sequence and add them together. (128 + 64 + 32 = 224). So the subnet we need to use for our 6-network system is 255.255.255.224.</p><p>Now we’ve calculated our subnet, the next thing we need to do is work out the ranges of our new networks. This is a fairly easy thing to do if you remember one rule. The lowest number in the bits we borrowed from our host address is our guide. In this case, the bits we borrowed were 128, 64 and 32. The lowest of these is 32, so this is our guide number we’re going to use to set up our network ranges.</p><p>What you want to do is start off with your guide number, and that gives you the first address of our first network. For example &#8211; 192.168.0.32. To get the starting address of the second network, you just add on 32. So the second network will begin at 192.168.0.64. Keep adding the number 32 to find the other network starting points, and you’ll end up with this network address range map:</p><ul><li>Network 1: 192.168.0.32 – 192.168.0.63</li><li>Network 2: 192.168.0.64 – 192.168.0.95</li><li> Network 3: 192.168.0.96 – 192.168.0.127</li><li>Network 4: 192.168.0.128 – 192.168.0.159</li><li>Network 5: 192.168.0.160 – 192.168.0.191</li><li>Network 6: 192.168.0.192 – 192.168.0.223</li></ul><p>Note that you cannot use the first 32 or last 32 addresses of the entire 255 address range, (unless you’re using specific equipment that allows it). And there you have it, we’ve calculated our subnet mask, and we’ve worked out the ranges our networks will use. Remember the formula (2^n – 2) and your binary numbers, and you’ll be able to work out any configuration of subnets and networks.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/09/03/how-to-calculate-a-tcp-ip-subnet-mask/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Configure Static IP Address in Ubuntu Server 8.10</title><link>http://www.ghacks.net/2009/03/30/configure-static-ip-address-in-ubuntu-server-810/</link> <comments>http://www.ghacks.net/2009/03/30/configure-static-ip-address-in-ubuntu-server-810/#comments</comments> <pubDate>Mon, 30 Mar 2009 13:34:20 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Advice]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Networks]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[dns]]></category> <category><![CDATA[network administration]]></category> <category><![CDATA[static ip address]]></category> <category><![CDATA[ubuntu]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=11550</guid> <description><![CDATA[If you have a need for a server OS that is robust, reliable, and as flexible as any other server available, then Ubuntu 8.10 should be in serious consideration. There is only one drawback to this server &#8211; no GUI. Oh sure you could install a GUI (you&#8217;d be doing it from the command line [...]]]></description> <content:encoded><![CDATA[<p>If you have a need for a server OS that is robust, reliable, and as flexible as any other server available, then Ubuntu 8.10 should be in serious consideration. There is only one drawback to this server &#8211; no GUI. Oh sure you could install a GUI (you&#8217;d be doing it from the command line of course), but that would defeat the purpose of having a headless server that is going to suffer from serious loneliness as it sits alone doing its job.</p><p>Naturally if you have such a server, you have to have the ability to configure that server. One of the configurations you most likely will need to undertake is the configuring of network settings for a static IP address on your headless, GUI-less server. Fortunately, when using Ubuntu Server 8.10 &#8211; that is a piece of cake.</p><p><span
id="more-11550"></span>In reality there are two files that <em>must</em> be configured and one file that <em>can</em> be configured. The &#8220;must files&#8221; are <strong>/etc/network/interfaces </strong>and <strong>/etc/resolv.conf</strong>. The &#8220;can file&#8221; is <strong>/etc/hosts</strong>. We will deal with the former two files in this article. The latter file (a file that deals with local IP to name mapping) has already been covered in my article &#8220;<a
title="Ease Linux Networking with /etc/hosts" href="http://www.ghacks.net/2009/01/15/ease-linux-networking-with-etchosts/" target="_blank">Ease Linux Networking with /etc/host</a>s&#8221; here on gHacks.</p><p>So let&#8217;s first take a look at the most important file, <strong>/etc/network/interfaces</strong>. Open that file up in your favorite editor (mine being <strong>nano</strong>).? What you will most likely see is this:</p><p><code># This file describes the network interfaces available on your system<br
/> # and how to activate them. For more information, see interfaces(5).<br
/> # The loopback network interface<br
/> auto lo<br
/> iface lo inet loopback<br
/> # The primary network interface<br
/> auto eth0<br
/> iface eth0 inet dhcp</code></p><p>The last line is what you need to edit (and add to.) To configure eth0 (your network device) for a static IP address that last line should resemble:</p><p><code>iface eth0 inet static<br
/> address 192.168.1.10<br
/> netmask 255.255.255.0<br
/> gateway 192.168.1.1</code></p><p>Naturally you will need to change the last three lines to reflect your own networking setup.</p><p>Once that file has been edited you can restart your network connection with the command:</p><p><em>sudo /etc/init.d/networking restart</em></p><p>Your Ubuntu Server 8.10 should now be up and running with a static IP address.</p><p><strong>DNS</strong></p><p>There is one last file you will need to take care of. That file is <strong>/etc/resolv.conf</strong>. This file is in charge of holding your DNS server addresses. Open this file up in your editor. What you need are two lines:</p><p><em>nameserver 208.67.220.220</em></p><p><em>nameserver 208.67.222.222</em></p><p>The above example reflects using the OpenDNS servers. Your network will obviously have its own requirements for DNS addresses. Once you have edited that file save it and you&#8217;re done (no need to restart networking for the change in DNS addresses to take effect.)</p><p><strong>Final Thoughts</strong></p><p>That&#8217;s it. How simple is it to configure your Ubuntu Server with a static IP address &#8211; even when said server is a headless, GUI-less server. Of course there is much more you can do than simple Static IP address configuration, but this just highlights how easy a Linux server can actually be to administer.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/03/30/configure-static-ip-address-in-ubuntu-server-810/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Windows Process Blocker</title><link>http://www.ghacks.net/2009/03/18/windows-process-blocker/</link> <comments>http://www.ghacks.net/2009/03/18/windows-process-blocker/#comments</comments> <pubDate>Wed, 18 Mar 2009 08:16:49 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[block processes]]></category> <category><![CDATA[monitor processes]]></category> <category><![CDATA[network administration]]></category> <category><![CDATA[process blocker]]></category> <category><![CDATA[process lasso]]></category> <category><![CDATA[process manager]]></category> <category><![CDATA[windows network]]></category> <category><![CDATA[windows process]]></category> <category><![CDATA[windows security]]></category> <category><![CDATA[windows services]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=11287</guid> <description><![CDATA[The Windows application Process Blocker has been designed to provide system administrators and computer technicians with a security tool that can be easily distributed on a computer network to prevent unauthorized program starts. The program is currently in beta stage and has not completed the goal yet but it comes with a functional feature set [...]]]></description> <content:encoded><![CDATA[<p>The Windows application Process Blocker has been designed to provide system administrators and computer technicians with a security tool that can be easily distributed on a computer network to prevent unauthorized program starts. The program is currently in beta stage and has not completed the goal yet but it comes with a functional feature set that makes it interesting for many users.</p><p>Monitored Windows processes get killed at the moment after they are started instead of being blocked outright so that even a start is not possible anymore. A few small scripts can slip through at the moment because of this behavior as it takes some time to recognize a newly launched application and send the kill command to the computer system.</p><p>Process Blocker uses a simple text file that is placed in the same installation directory as the main application. This text file contains names of executables that are not allowed to be launched on a computer system. The program itself is added as a Windows Service to the system which has to be restarted after making changes to the text file.</p><p><span
id="more-11287"></span><img
src="http://www.ghacks.net/wp-content/uploads/2009/03/windows_process_blocker.jpg" alt="windows_process_blocker" title="windows_process_blocker" width="255" height="168" class="alignnone size-full wp-image-11303" /></p><p><a
href="http://www.processblocker.com/">Process Blocker</a> will display a user notification in the Windows System Tray whenever a process has been blocked by the service. A similar application that provides a better user experience is the process manager <a
href="http://www.ghacks.net/2007/08/26/process-lasso-a-process-manager/">Process Lasso</a>. The developers of Process Blocker on the other hand are not even halfway through their roadmap. The next step will move the management of processes from the text file to a Group Policy administrative template. Other planned features are killing processes and applications using its crc (in case they get renamed) or full path, recording process errors and information in Windows Event log, allowing users to only run applications from specified folders (e.g. program files and Windows) and changing process killing to process execution prevention.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/03/18/windows-process-blocker/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> </channel> </rss>
