<?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 &#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 blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 15:18:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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[Tutorials Basic]]></category>
		<category><![CDATA[software]]></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>

	Tags: <a href="http://www.ghacks.net/tag/dns/" title="dns" rel="tag">dns</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/network-administration/" title="network administration" rel="tag">network administration</a>, <a href="http://www.ghacks.net/tag/static-ip-address/" title="static ip address" rel="tag">static ip address</a>, <a href="http://www.ghacks.net/tag/ubuntu/" title="ubuntu" rel="tag">ubuntu</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
	<li><a href="http://www.ghacks.net/2009/04/02/which-ubuntu-derivative-is-right-for-you/" title="Which Ubuntu Derivative Is Right For You? (April 2, 2009)">Which Ubuntu Derivative Is Right For You?</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/10/06/what-makes-ubuntu-so-user-friendly/" title="What makes Ubuntu so user friendly? (October 6, 2009)">What makes Ubuntu so user friendly?</a> (47)</li>
	<li><a href="http://www.ghacks.net/2007/02/16/use-soundjuicer-to-rip-mp3-directly-in-linux/" title="Use SoundJuicer to rip mp3 directly in Linux (February 16, 2007)">Use SoundJuicer to rip mp3 directly in Linux</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/30/configure-static-ip-address-in-ubuntu-server-810/feed/</wfw:commentRss>
		<slash:comments>3</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</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></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>

	Tags: <a href="http://www.ghacks.net/tag/block-processes/" title="block processes" rel="tag">block processes</a>, <a href="http://www.ghacks.net/tag/monitor-processes/" title="monitor processes" rel="tag">monitor processes</a>, <a href="http://www.ghacks.net/tag/network-administration/" title="network administration" rel="tag">network administration</a>, <a href="http://www.ghacks.net/tag/process-blocker/" title="process blocker" rel="tag">process blocker</a>, <a href="http://www.ghacks.net/tag/process-lasso/" title="process lasso" rel="tag">process lasso</a>, <a href="http://www.ghacks.net/tag/process-manager/" title="process manager" rel="tag">process manager</a>, <a href="http://www.ghacks.net/tag/windows-network/" title="windows network" rel="tag">windows network</a>, <a href="http://www.ghacks.net/tag/windows-process/" title="windows process" rel="tag">windows process</a>, <a href="http://www.ghacks.net/tag/windows-security/" title="windows security" rel="tag">windows security</a>, <a href="http://www.ghacks.net/tag/windows-services/" title="windows services" rel="tag">windows services</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/22/windows-process-blocker-spkiller/" title="Windows Process Blocker SPKiller (March 22, 2009)">Windows Process Blocker SPKiller</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/08/26/process-lasso-a-process-manager/" title="Process Lasso a Process Manager (August 26, 2007)">Process Lasso a Process Manager</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/07/01/windows-services-manager/" title="Windows Services Manager (July 1, 2009)">Windows Services Manager</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/12/30/vista-services-optimizer/" title="Vista Services Optimizer (December 30, 2008)">Vista Services Optimizer</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/12/21/security-and-privacy-complete-2/" title="Security and Privacy Complete (December 21, 2007)">Security and Privacy Complete</a> (2)</li>
</ul>

]]></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>
