<?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>Unix Networks</title>
	<atom:link href="http://www.unixnetworks.org/feed" rel="self" type="application/rss+xml" />
	<link>http://www.unixnetworks.org</link>
	<description>All about Unix Networks</description>
	<lastBuildDate>Wed, 14 Mar 2012 09:43:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How Can I List the Logged-In Users in UNIX?</title>
		<link>http://www.unixnetworks.org/how-can-i-list-the-logged-in-users-in-unix.shtml</link>
		<comments>http://www.unixnetworks.org/how-can-i-list-the-logged-in-users-in-unix.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:39:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Logged]]></category>
		<category><![CDATA[Login]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=41</guid>
		<description><![CDATA[UNIX uses different commands to perform different actions. The following table provides a list of commands that provide information about users currently logged into a UNIX machine, with their descriptions. Name Description w Shows who all are logged in and what they are doing. It displays in summary format the processes of the current users <a href="http://www.unixnetworks.org/how-can-i-list-the-logged-in-users-in-unix.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p><ins><ins id="google_ads_frame2_anchor"></ins></ins>UNIX uses different commands to perform different actions. The  following table provides a list of commands that provide information  about users currently logged into   a UNIX machine, with their  descriptions.</p>
<table border="1">
<tbody>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td>w</td>
<td>Shows who all are logged in and what they are doing. It displays in  summary format the processes of the current users using the machine and  the load being exerted on the machine. It shows the  current  time, how   long  the  system  has  been running, how many users are currently  logged on, and the system load averages for the past 1, 5, and 15   minutes, in that order. It also shows the login name and idle time of  logged-in users</td>
</tr>
<tr>
<td>who</td>
<td>Shows   who all are logged in and where they are logged in. This  command is especially useful in knowing the location of the person  logged into a particular machine. It specifies the username, login time,  terminal, process id, and the time since the last activity. The Single  Unix Specification (SUS) specifies that the  who command should list  information about accessible users. The who command can be invoked with  the arguments am and I; for example, who am I.</td>
</tr>
<tr>
<td>finger username</td>
<td>This command displays information about a particular user. For  instance, whether the user is currently logged in, the last time the  user opened a certain program, etc. Any information that was stored in  the .plan file of the user will also be displayed.</td>
</tr>
<tr>
<td>last &#8211; l username</td>
<td>This command displays the last time the user logged on and off and  their location at the time of logon. The last command by itself gives a  list of all logins.</td>
</tr>
</tbody>
</table>
<p>You can therefore use either the w, who, or users command to know who all are logged into the system.</p>
<p>An example output of the w command may be as follows:<br />
$ w<br />
10:33am up 608 day(s), 19:56,  5 users,  load average:<br />
0.36, 0.36, 0.37<br />
User     tty       login@  idle  what<br />
jamesf   pts/5      8:52am       w<br />
maureenm   pts/23    20Apr08    28 -bash<br />
henryj    pts/18     9:01am     9 pine<br />
peterb   pts/19    21Apr08       emacs -nw html/index.html<br />
meganr pts/8     10:12am 3days -csh<br />
andrewf    pts/12    16Apr08  5:29 /usr/bin/perl -w<br />
perl/test/program.pl</p>
<p>An example output of the who command:<br />
$ who<br />
jamesf ttyp0 Apr 26 08:11 (66.164.235.73)<br />
maureenm ttyp3 Apr 26 20:26 (66.164.235.73)</p>
<p>An example output of the users command:<br />
$ users<br />
jamesf maureenm henryj peterb meganr andrewf</p>
<p>You can also list all UNIX users, including those who are not logged  in; you can use the /etc/passwd file and the finger username or last &#8211; l  username commands to get specific information about them. A typical  entry in the /etc/passwd file looks like this:<br />
root:*:0:0:System Administrator:/var/root:/bin/sh</p>
<p>You can then use the awk or cut utilities to trim this information to exactly what you want.</p>
<p>For example, to just see the Unix user names, use the command $ cat /etc/passwd | cut -d: -f1.<br />
$ cat /etc/passwd | cut -d: -f1<br />
&#8230;<br />
jamesf<br />
maureenm<br />
&#8230;</p>
<p>Or, to only see their real names:<br />
$ cat /etc/passwd | cut -d: -f5<br />
&#8230;<br />
James Forlon<br />
Maureen Major</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/how-can-i-list-the-logged-in-users-in-unix.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where can I download Unix?</title>
		<link>http://www.unixnetworks.org/download-unix.shtml</link>
		<comments>http://www.unixnetworks.org/download-unix.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:38:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=39</guid>
		<description><![CDATA[UNIX is an operating system that embraces a multi-user environment. It was developed on a number of platforms. However, UNIX is not so much of a single, unified system, but more of a benchmark upon which organizations build their foundation. It is also an &#8220;open Source&#8221; application, which means that you can get it at <a href="http://www.unixnetworks.org/download-unix.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>UNIX is an operating system that embraces a multi-user environment.  It was developed on a number of platforms. However, UNIX is not so much  of a single, unified system, but more of a benchmark upon which  organizations build their foundation.  It is also an &#8220;open Source&#8221;  application, which means that you can get it at a nominal cost or at no  cost. One way of getting it is by downloading it from the Internet. The  popularity of UNIX has largely been driven by the increasing prominence  of other operating systems which have an element of UNIX in their make  up, something almost all OS&#8217;s have, with the exception of Microsoft  Windows. Some of the platforms that are based on UNIX system include  FreeBSD, OpenBSD, Ubuntu Linux,   Red Hat Fedora Linux, Debian Linux and  Sun Solaris among others. Here&#8217;s how to download some of these operating  systems:</p>
<h2>Downloading FreeBSD UNIX</h2>
<p>This is an operating system that is a derivative of BSD. It was  developed at UCLA, Berkeley and is mainly for x86 compatible (which also  embraces Pentium and Athlon), amd64 compatible, Alpha/AXP, IA-64, PC-98  and Ultras ARC architecture. You can download this operating system by  copying and pasting this link to your browser: <a href="http://mirrorlist.freebsd.org/FBSDsites.php" target="blank">Freebsd.org</a></p>
<h2>Downloading OpenBSD UNIX</h2>
<p>This system offers a free, multi-platform operating system that is  4.4BSD based. Correctness, portability, proactive security,  standardization and integrated cryptography are some of the  cross-cutting themes that underpin the   system. OpenBSD also sustains  binary emulation of systems like SVR4 Solaris, Linux, and Sun OS among  others. You can easily download OpenBSD from the Internet by going to <a href="http://www.openbsd.org/ftp.html" target="blank">Openbsd.org</a> and choosing your preferences.</p>
<h2>Downloading Solaris UNIX</h2>
<p>Sun&#8217;s Solaris Operating System is considered by many as one of the  top UNIX environment-based systems with a little over 600 features for  the latest release, the Solaris 10 OS. Many Open Source disciples will  be pleased to know that many applications are ready to run on Solaris  platform and this saves time which would have been taken up by  deployment. This amazing software can be downloaded from <a href="http://www.sun.com/software/solaris/get.jsp" target="blank">Sun.com</a></p>
<h2>Downloading Fedora Linux</h2>
<p>This is a system developed by Redhat which aims to develop a  complete, general purpose operating system that is all done in a public  platform. This system can be downloaded on <a href="http://fedoraproject.org/wiki/Distribution/Download" target="blank">Fedoraproject.org</a></p>
<h2>Downloading Debian Linux</h2>
<p>This is a free operating system that uses Linux Kernel (which is the  core of the OS) but most of it&#8217;s tools are from the GNU project, which  is why it is also called Debian GNU/Linux. This OS comes with 8710  packages which are precompiled to facilitate easy installation. Debian  Linux can be downloaded on this site: <a href="http://www.debian.org/CD/" target="blank">Debian.org</a></p>
<h2>Downloading Ubuntu License</h2>
<p>Ubuntu is a community-based open source operating system that can be  used on desktops, notebooks and servers as well. It can be downloaded  for free, and depending upon where you are located , you can apply for a  copy of this free software to be shipped to you by Canonical, the  company behind the project. You can also download Ubuntu by going to  this site: <a href="http://www.ubuntu.com/getubuntu/download" target="blank">Ubuntu.com</a></p>
<h2>Additional Reading on Downloading Unix</h2>
<ul>
<li><a href="http://www.tech-faq.com/download-unix.shtml" target="_blank">Download Unix</a></li>
<li><a href="http://www.cookinglinux.org/linux-download.html" target="_blank">Linux Download</a></li>
<li><a href="http://www.rolo.org/download-unix.html" target="_blank">Download Unix</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/download-unix.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a SSID?</title>
		<link>http://www.unixnetworks.org/ssid.shtml</link>
		<comments>http://www.unixnetworks.org/ssid.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:37:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[SSID]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=37</guid>
		<description><![CDATA[SSID, ellipsis for Service Set Identifier, is a name of a Wireless Local Area Network. Another name for it is the network name. It is usually an alphanumeric (meaning it has a combination of letters and numbers), with a maximum of 32 characters and is case sensitive. All wireless devices that are to be part <a href="http://www.unixnetworks.org/ssid.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>SSID, ellipsis for Service Set Identifier, is a name of a Wireless  Local Area Network. Another name for it is the network name. It is  usually an alphanumeric (meaning it has a combination of letters and  numbers), with a maximum of 32 characters and is case sensitive. All  wireless devices that are to be part of a given network must employ a  particular SSID in order for them to communicate with each other. The  nomenclature helps in excluding devices that do not have a similar SSID  from a given network. Based on the vendor, the access points of WLAN may  be configured   with factory settings, or default settings. Access points  from Cisco Systems, for example, have a default SSID called &#8216;tsunami&#8217;.  Some network administrators set the access points to distribute SSID to  other wireless devices around it, which is known as &#8220;broadcasting&#8221; SSID.  If your access point is at default settings, and the access point is  set at &#8220;Allow Broadcast of SSID&#8221;, some devices (authorized or otherwise)  might automatically associate with your network.</p>
<p>There are those who believe that one can prevent unauthorized access  by disabling the broadcast SSID feature.  This method is ineffective,  because in the process of reconnecting to the network, the user will  have to enter the correct SSID in order to access, and an eavesdropper  can then use some sniff (using something like Kismet) out the SSID which  will be transmitted in clear text, and then access the network himself.  Most NETGEAR products with the site survey feature can help you look  for networks SSID&#8217;s. Actually, the SSID itself is not a very strong  feature, and for enhanced security, needs to be used in conjunction with  other security measures like Wired Equivalent Privacy (WEP) or Wi-Fi  Protected Access (WPA), the latter being the most accepted .</p>
<p>There are   two kinds of SSID. These are Extended Service Set  Identifier (ESSID) and Basic Service Set Identification (BSSID). The  difference between the two is that ESSID requires an access point  whereas, BSSID, which is really an ad hoc SSID, doesn&#8217;t. When  considering which SSID is best for you, consider the following:</p>
<ol>
<li>Many companies like having their names as the SSID for their public  WLAN&#8217;s. It would be ill advised to do that for a private WLAN though, as  malicious elements may relish launching a denial of service attach  against the owners of the network.</li>
<li>A scrambled SSID (that is, one using characters such as  d*&amp;%$#G?!!) may again prompt a presumptuous hacker to do something  unpleasant to your network, if he decides that you could be hiding  something. In addition, such characters make network administration  unwieldy. Not many people can remember an SSID which looks like  d*&amp;%$#G?!! off the top of their heads.</li>
<li>Perhaps the best solution is to use a pseudo name. It makes it  difficult for others to guess your SSID, and in addition, your network  doesn&#8217;t give away your identity.</li>
</ol>
<p>Choosing SSID calls for careful consideration on how it will affect  the effectiveness of your WLAN in terms of manageability, security and  functionality.</p>
<h2>Additional Reading on SSID&#8217;s</h2>
<ul>
<li><a href="http://www.tech-faq.com/ssid.shtml" target="_blank">SSID</a></li>
<li><a href="http://www.symatech.net/ssid" target="_blank">SSID</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/ssid.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I get free VoIP?</title>
		<link>http://www.unixnetworks.org/free-voip.shtml</link>
		<comments>http://www.unixnetworks.org/free-voip.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:37:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[distributions]]></category>
		<category><![CDATA[free VOIP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open source]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=35</guid>
		<description><![CDATA[Voice over Internet Protocol (VoIP) is the technology that enables voice data to be carried over the Internet in packets. In plain words, it involves making calls over the Internet. There are many organizations offering VoIP services and most of these services are not absolutely free. It is entirely possible to make Internet calls without <a href="http://www.unixnetworks.org/free-voip.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Voice over Internet Protocol (VoIP) is the technology that enables  voice data to be carried over the Internet in packets. In plain words,  it involves making calls over the Internet. There are many organizations  offering VoIP services and most of these services are not absolutely  free. It is entirely possible to make Internet calls without being  charged for that service, although as the Internet user, you will still  have to pay for the Internet connection. Before you choose your VoIP  provider, consider the conditions each provider places on you before you  choose their services and then factor in your needs. Your choice should  be determined primarily by the way the provider&#8217;s terms of service fit  your communication needs. There are no hard and fast rules about this.   Some of the VoIP providers and a brief discussion of their main tenets,  which may help you make your choice, are outlined below:</p>
<h2>Skype.</h2>
<p>Skype is one of the pioneers of VoIP calls. Skype provides unlimited  free calls if you make them from one computer or device to another.  These are known in the industry as PC-to-PC calls. Both the caller and  the recipient have to have the Skype software installed, which can be  downloaded for free.  Its status as the most popular VoIP platform means  there are many users out there, making it possible to reach millions of  people. However, remember most VoIP providers allow free calls only  within their platforms. If you are interested in calling a landline  through Skype, you will have to buy Skype credit. Users in North America  can make unlimited calls to landlines for about $30 a year, which is  not exactly an arm and a leg.</p>
<h2>Raketu.</h2>
<p>Apart from the $9.95 &#8220;deposit&#8221; that will be required when  registering, Raketu is otherwise an impressive VoIP provider. One can  make not just free PC-to-PC calls, but also free calls to landlines and  mobile phones to around 42 countries. The deposit you made when you  registered will probably be spent if you call a destination that is not  included in the free calls package.</p>
<h2>VoiceCheap.</h2>
<p>This service allows users to make free calls, and unlike Skype, one  can make free calls to landlines and unlike Raketu, the free calls  package includes many more countries.   Their software is also free to  download. The downside for this service is that the   free calls are  limited to 300 minutes per week, making it slightly unattractive for the  most loquacious of us.</p>
<h2>Gizmo.</h2>
<p>If you are a Gizmo user, you might benefit from their &#8220;All Calls  Free&#8221; plan, where free calls can be made to the PC&#8217;s, mobiles and  landlines of other Gizmo users. The software for the service is free and  can be downloaded, installed and used with ease. However, the laborious  procedure one has to undergo to enjoy free calls to mobile/landlines  really raises questions about the genuineness of this service. The rules  are absent when making PC-to-PC calls, and anyone who tries to cut  corners when calling mobile/landline even slightly, is likely to be  slapped with some bill for calls that, on the face of it, are supposed  to be free.</p>
<p>There are many more VoIP providers than can be discussed here in a  resources-friendly manner (time and space) but it is evident from that  all of these services have their quirks, so you need to examine each  carefully  before deciding which one of them is your best choice.</p>
<h2>Additional Reading on Free VoIP</h2>
<ul>
<li><a href="http://www.tech-faq.com/free-voip.shtml" target="_blank">Free VoIP</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/free-voip.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I Change my IP Address?</title>
		<link>http://www.unixnetworks.org/change-ip-address.shtml</link>
		<comments>http://www.unixnetworks.org/change-ip-address.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:36:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[IP address]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=33</guid>
		<description><![CDATA[Before you change your Internet Protocol (IP) address, you need to find out whether your IP address is static or dynamic. A static IP is assigned to a particular computer and is stable, that is, it does not change at any time unless someone changes it. Many broadband users have a static IP address assigned <a href="http://www.unixnetworks.org/change-ip-address.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Before you change your Internet Protocol (IP) address, you need to  find out whether your IP address is static or dynamic. A static IP is  assigned to a particular computer and is stable, that is, it does not  change at any time unless someone changes it. Many broadband users have a  static IP address assigned to their devices by their service providers.  Static IP addresses are assigned to host names which make them easy for  the servers to remember.  Now, precisely because of the huge numbers of   IP addresses, and also because these numbers are limited as the  Internet attracts more and more users, most Internet Service Providers  now provide  dynamic IP addresses using DHCP (Dynamic Host Configuration  Protocol). Unlike, the static IP address, the dynamic address changes  every time the user connects to the Internet. So  before trying out some    other ways of changing the IP address, you may want to try the most  basic way of doing that by simply unplugging your cable or modem for  five to ten minutes. If that doesn&#8217;t work, you can still repeat the  process for a slightly longer time, say 10 hours, or overnight or when  no one is using the computer. If none of these methods succeed, you may  have to undertake the (slightly) painstaking process of having to  manually change the IP by using any of the processes outlined below.</p>
<p>Different platforms have different ways of changing Internet protocol  addresses. If you are using Microsoft&#8217;s Windows Operating system, you  may follow the instructions outlined below. The   procedure for different  versions of Windows OS may differ, but retain major similarities. This  is how you would change an IP address for your own Local Area Network  (LAN):</p>
<ol>
<li>Go to the desktop and click on &#8220;Start&#8221;, and then go to &#8220;My Network Places&#8221;.</li>
<li>Alternately, after clicking on &#8220;Start&#8221;, you can go to &#8220;Network Neighborhood&#8221;, and in either case, go to &#8220;Properties&#8221;.</li>
<li>Right-lick on LAN and select &#8220;Properties&#8221;.</li>
<li>Click on the Internet Protocol (TCP/IP) and then select &#8220;Properties&#8221;.</li>
<li>On the Internet Protocol (TCP/IP) properties section, Choose, &#8220;use the following IP address&#8221;.</li>
<li>Write down the old IP address before removing it (you might  need it if you have problems with the new one), and then insert the new  IP address.</li>
<li>Specify the suitable subnet mask for your network. Remember  here that the leftmost bits have to be set to &#8217;1&#8242; and the ones on the  rightmost have to be set to &#8217;0&#8242;.</li>
<li>Specify the &#8220;Default Gateway&#8221; in the appropriate box. This  amounts to adding the IP address of the computer or device that connects  other computers to the Internet, including the one that you are about  to change.</li>
<li>You will also need to specify the IP address of the computer  that distributes host names to IP addresses on the &#8220;Preferred DNS  Server&#8221; box.</li>
<li>Finish the process by clicking Ok on all dialogue boxes.</li>
</ol>
<h2>Linux Users</h2>
<p>You will need a root access to change IP address for this platform.  And if you already have it, then go to the command prompt and move to  the /etc/sysconfig/network directory. Make the appropriate changes to  the interfaces file, including adjusting your network settings.</p>
<h2>Additional Reading on Changing Your IP Address</h2>
<ul>
<li><a href="http://www.tech-faq.com/change-ip-address.shtml" target="_blank">Change IP Address</a></li>
<li><a href="http://www.rolo.org/change-your-ip-address.html" target="_blank">Change Your IP Address</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/change-ip-address.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Do I find my DNS servers?</title>
		<link>http://www.unixnetworks.org/find-dns-server.shtml</link>
		<comments>http://www.unixnetworks.org/find-dns-server.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:35:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[DNS Servers]]></category>
		<category><![CDATA[IP address]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=31</guid>
		<description><![CDATA[Domain Name Servers are responsible for translating domain names into IP addresses. Hypothetically, when someone tries to visit any website like www.blahblahblah.com, the Internet Service Provider (ISP) then &#8220;calls&#8221; the DNS server with a query in the computer language, of course &#8220;where do I find www.blahblahblah.com?&#8221; the DNS server will then look up in its <a href="http://www.unixnetworks.org/find-dns-server.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Domain Name Servers are responsible for translating domain names into  IP addresses. Hypothetically, when someone tries to visit any website  like www.blahblahblah.com, the Internet Service Provider (ISP) then  &#8220;calls&#8221; the DNS server with a query in the computer language, of course  &#8220;where do I find www.blahblahblah.com?&#8221; the DNS server will then look up  in its database and soon responds; &#8220;Find it at 198.145.214.6&#8243;. If you  are using a static Internet Protocol (IP) address, chances are that you  already know the DNS server address. On the other hand, if you are using  a dynamic IP address and your LRP box is in working state, you may take  the following steps to find the DNS Server:</p>
<p>Boot up the computer, log-in as root, go to the # prompt, and then type the cat    /etc/resolv.conf</p>
<p>The results will turn up the domain suffix on the first row and the DNS IP on the second.</p>
<p>If for some reason the LRP box is malfunctioning and you are running  Windows (95 or 98) which is using a cable/modem or DSL, follow the  following steps:</p>
<ol>
<li>Go to the &#8220;Start&#8221; button, and  then go to &#8220;Run&#8221;, and  type &#8220;winipcfg&#8221;.</li>
<li>Choose the appropriate &#8220;Network Adapter&#8221;.</li>
<li>Then click on &#8220;More Info&#8221; button and there you shall find your primary DNS.</li>
</ol>
<p>The following instructions may be used to find DNS server by those  who are using Windows NT/2000/XP operating systems, and who are using a  cable, modem or a DSL:</p>
<ol>
<li>Go   to the &#8220;Start&#8221; button, click on the &#8220;Run&#8221; button, and then go to the command prompt by typing in there &#8220;cmd&#8221;.</li>
<li>After c black screen opens, type in there &#8220;ipconfig   /all&#8221;.</li>
<li>And there you shall have your DNS servers for your location.</li>
</ol>
<p>If on the other hand, if you are on Windows ME that is already using a  cable, Modem or on DLS, this is how to find your DNS server location:</p>
<ol>
<li>Go to the &#8220;Start&#8221; button, go to &#8220;Run&#8221; and go to the command prompt once again.</li>
<li>Type the following; &#8220;ipconfig /all&#8221;</li>
<li>Press the space bar to move forward and your problem will have been solved.</li>
</ol>
<p>Alternately, you may still locate your DNS server by this procedure.</p>
<ol>
<li>Go to the Control Panel and click on the domain Icon.</li>
<li>If you have more than one domain, select the appropriate one from the domain list.</li>
<li>The resulting window will show both the primary and secondary Domain Name Servers.</li>
</ol>
<p>It has to be said though that, although you don&#8217;t have to be a nerd  to follow the steps outlined above, some people would find the exercise  of finding the DNS server to be a little complicated and even for them,  there is still an alternative. If for some reason or out of curiosity  they would just like to know, they need to call their ISP, who in most  cases will be glad to help. That has to be the easiest way to find  the  DNS Server.</p>
<h2>Additional Reading on Finding Your DNS Servers</h2>
<ul>
<li><a href="http://www.tech-faq.com/find-dns-servers.shtml" target="_blank">Find DNS Servers</a></li>
<li><a href="http://www.rolo.org/find-dns-servers.html"   target="_blank">Find DNS Servers</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/find-dns-server.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is 192.168.1.1?</title>
		<link>http://www.unixnetworks.org/192-168-1-1.shtml</link>
		<comments>http://www.unixnetworks.org/192-168-1-1.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:27:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[dns server]]></category>
		<category><![CDATA[IP address]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[What is 192.168.1.1]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=28</guid>
		<description><![CDATA[192.168.1.1 is a private Internet Protocol (IP) address that is between the range of 192.168.0.0 &#8211; 192.168.255.255. In computer speak, a private address is used to run private networks whereas computers are allocated their own IP addresses to communicate with each other on an internal network that doesn&#8217;t involve the Internet. The rising prominence of <a href="http://www.unixnetworks.org/192-168-1-1.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>192.168.1.1 is a private Internet Protocol (IP) address that is between the range of 192.168.0.0 &#8211; 192.168.255.255. In computer speak, a private address is used to run private networks whereas computers are allocated their own IP addresses to communicate with each other on an internal network that doesn&#8217;t involve the Internet. The rising prominence of private addresses is attributed partly due to the shortage of publicly-registered IP addresses, and this gave rise to the emergence of IPv6 to deal with the shortage. The private address is usually set at the factory by the manufacturer, although it can be changed at any time via the network router on the administrative console. Private addresses are a unique type of IP addresses since they can be used and reused over and over again on different networks. It&#8217;s possible to use more than one private IP address at the same time with no IP conflict issues. The catch about private IP addresses is that one cannot use them to communicate over the Internet without the use of Network Address Translation (NAT). This is because routers on the Internet are usually set in a way that does away with any traffic that is using private address. This fact turns out to be some sort of a blessing in disguise, as the outside world cannot connect to the private network, affording it formidable protection against intrusion by other networks. The reason why it is possible to have identical IP addresses in different IP networks, is because these networks will never connect to each other and thus conflict issues do not arise.</p>
<p>If for some reason the device using a private address such as <a title="192.168.1.1" href="http://www.19216811.net/">192.168.1.1</a>, wishes to communicate with other networks, an interceding gateway is required so that the external network will be presented with a &#8220;reachable&#8221; IP address and that the routers will allow the traffic between the two networks to be transmitted. This &#8220;intercessor gateway&#8221; usually turns out to be the NAT or a proxy server. There is a caveat though. If two private networks were to contact each other, there is a possibility of network conflict if the private IP&#8217;s turn out to be identical, and in this case not even NAT would help.</p>
<p>Sometimes it becomes impossible to access the router through <a title="192.168.1.1" href="http://www.19216811.org/">192.168.1.1</a>. This can be caused by invalid browser settings or an invalid IP address from the router. This can be dealt with by clearing the browser settings and disabling all the antivirus and firewall software. Linksys routers use 192.168.1.1 as their default IP address. Care should be taken not to have identical IP addresses in a network that has such devices as network conflict is most likely to occur. One thing should be clear about private IP addresses 192.168.1.1; whereas two different networks may use IP addresses that can be found in another network, no two identical private IP&#8217;s should be in any given network. When adding a new device to your network, be certain that its default IP address is not already in use on your network.</p>
<h2>Additional Reading on 192.168.1.1</h2>
<ul>
<li><a href="http://www.tech-faq.com/192.168.1.1.shtml" target="_blank">192.168.1.1</a></li>
<li><a href="http://www.symatech.net/192.168.1.1" target="_blank">192.168.1.1</a></li>
<li><a href="http://www.19216811.org">192.168.1.1</a></li>
<li><a href="http://www.rolo.org/192-168-1-1.html" target="_blank">192.168.1.1</a></li>
<li><a href="http://www.19216811.net" target="_blank">192.168.1.1</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/192-168-1-1.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a VLAN?</title>
		<link>http://www.unixnetworks.org/vlan.shtml</link>
		<comments>http://www.unixnetworks.org/vlan.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:26:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[VLAN]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=26</guid>
		<description><![CDATA[VLAN, which stands for Virtual Local Area Network, is a logical Local Area Network (LAN) which goes beyond the single traditional LAN to and comprises a group of LAN segments that have specific settings. These settings enable communication between different hosts in the same way they would communicate had they been in the same LAN <a href="http://www.unixnetworks.org/vlan.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>VLAN, which stands for Virtual Local Area Network, is a logical Local  Area Network (LAN) which goes beyond the single traditional LAN to and  comprises a group of LAN segments that have specific settings. These  settings enable communication between different hosts in the same way  they would communicate had they been in the same LAN setting,  irrespective of their physical location. But instead of the  configuration being done through the physical relocation devices, in the  case of VLANs it is done through software. Thus a VLAN is first and  foremost a software concept, and as such, identifiers and configuration  must be prepared just as required if the network is going to perform as  intended. VLAN members or groups are identified through flame coloring,  where packets are given a VLAN ID at the source so that they can be  processed as appropriate as they travel through the network. Ultimately,  the VLAN ID helps switching and making of the appropriate decisions as  required in the VLAN configurations.</p>
<h2>Why use VLANs?</h2>
<p>VLANs avoid some of the problems encountered while using the  traditional LANs of requiring additional bandwidth. This is because the  packets are required to pass through multiple levels of network  connections as the network is usually fragmented. Secondly   the  traditional LAN&#8217;s have tended to focus too much on the physical location  on the equipment and personnel. And this has its drawbacks. When it  comes to VLAN&#8217;s, someone in New York can access and make a computer  printout using a printer in London!   Further, a properly designed VLAN  can ensure that only devices on the network can send o0r receive packets  intended as a source or destination.</p>
<h2>Types of VLAN&#8217;s.</h2>
<p>There are several types of VLAN&#8217;s as defined. These include; Port  Based VLANs, MAC Based VLANs, Protocol Based VLANs and IP Subnet Based  VLANs.</p>
<h2>Port Based VLANs.</h2>
<p>Here, all the Internet traffic that arrives at a certain port of a  switch is linked to a particular VLAN. In this way, several VLAN&#8217;s can  be connected through a single switch and run concurrently without any  hitches. This would work optimally in a static environment, where member  of different VLAN&#8217;s remain the same over a prolonged period of time and  seldom change.</p>
<h2>MAC Based VLANs.</h2>
<p>In this case, the incoming traffic is inspected for the source and  destination MAC addresses and the respective VLAN&#8217;s are determined. By  working like that, the VLAN connects to all computers to all the ports  and a switch will then associate the respective computers with the  appropriate VLAN as configured.</p>
<h2>Protocol Based VLANs.</h2>
<p>As the name suggests, the VLAN is protocol that is used to transmit  data, and the each protocol is assigned on a different port. This method  allows for the logical segmentation of a network.</p>
<h2>IP Subnet Based VLANs.</h2>
<p>All the traffic in this type of VLAN is split, depending on the  Internet Protocol (IP) subnet of each source or destination. In this  type of VLAN, users can physically move the computers from one place to  another and still retain the same VLAN settings intact.</p>
<h2>Additional Reading on VLAN&#8217;s</h2>
<ul>
<li><a href="http://www.tech-faq.com/vlan.shtml" target="_blank">VLAN</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/vlan.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Cisco VPN Error 412?</title>
		<link>http://www.unixnetworks.org/cisco-vpn-error-412.shtml</link>
		<comments>http://www.unixnetworks.org/cisco-vpn-error-412.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:25:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Error 412]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=23</guid>
		<description><![CDATA[This kind of error happens when the peer is not responding, and it occurs when using Cisco VPN client-side software. The error message, which may differ depending on which version of Cisco VPN client is in use, will typically read like, &#8220;Error Secure VPN Connection terminated locally by the Client. Reason 412: The remote peer <a href="http://www.unixnetworks.org/cisco-vpn-error-412.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This kind of error happens when the peer is not responding, and it  occurs when using Cisco VPN client-side software. The error message,  which may differ depending on which version of Cisco VPN client is in  use, will typically read like, &#8220;Error Secure VPN Connection terminated  locally by the Client. Reason 412: The remote peer is no longer  responding&#8221;. Reasons for the cause of Cisco VPN Error 412 could be;</p>
<ol>
<li>There could be a firewall that is obstructing VPN traffic by blocking the ports UDP 4500/500 and/or ESP</li>
<li>A sloppy connection which may precipitate packet not reaching  the VPN concentrator or server. It could also be that the replies from  the server are not reaching the client, making the client assume that  the service is unavailable.</li>
<li>It could also be that the VPN client is behind a NAT device but  that the VPN server is not NAT-T enabled, in which case the user will  neither send nor receive any data. If this persists for a while, the  software client will erase the VPN tunnel.</li>
<li>Another possibility could be that the VPN client is used to connect through TCP which now is blocked.</li>
</ol>
<p>Once you establish that the reason for the error message is a  firewall which is blocking the VPN traffic (and this usually happens  when one is using Windows XP firewall), you can try to resolve this by  configuring the firewall to permit UDP ports 500 and ESP which are  required for Cisco VPN client. Alternately, you could try disabling any  firewall that is installed on the PC, and once you have done that, try  again and see if it works. Besides that, you could also try to confirm  that the device that you are using is actually transmitting packets. To  do this, start a cmd windows and key in the following command: ( netstat  -s -p ip 60)</p>
<p>From there, you shall see the packets sent and received from the IP.  In case your device is behind a NAT device as described in (3) above,  try to resolve that by using an NAT-friendly VPN scheme. The default    setting of IP/ESP does not work with many NAT devices. You can also use  the following commands to have a glimpse of what is going on. You could  try to &#8216;ping&#8217; the   remote peer and check on why they are not responding  to the client.</p>
<p>C:Program FilesCisco SystemsVPN Clientvpnclient stat traffic</p>
<p>C:Program FilesCisco SystemsVPN Clientvpnclient stat tunnel</p>
<p>The problem can also be dealt with by removing and reapplying the  crypto map on the interface to connect to the VPN. Also try setting the  speed at around 100Mbps/Full duplex on the private interface. Also by  setting your MTU to up to 1300 helps to prevent packets from being  fragmented, this goes a long way toward increasing performance.  Always  ensure that the group name is identical to the VPN server group name.  This can be done by going to &#8220;Start&#8221;, then to &#8220;All Programs&#8221; then  to  &#8220;Cisco Systems VPN Client&#8221;, and then to &#8221; Set MTU&#8217;.</p>
<h2>Additional Reading on Cisco VPN Error 412</h2>
<ul>
<li><a href="http://www.tech-faq.com/cisco-vpn-error-412.shtml" target="_blank">Cisco VPN Error 412</a></li>
<li><a href="http://www.symatech.net/cisco-vpn-error-412" target="_blank">Cisco VPN Error 412</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/cisco-vpn-error-412.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Do I Install Telephone Wiring?</title>
		<link>http://www.unixnetworks.org/install-telephone-wiring.shtml</link>
		<comments>http://www.unixnetworks.org/install-telephone-wiring.shtml#comments</comments>
		<pubDate>Wed, 27 Oct 2010 11:24:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix Networks]]></category>
		<category><![CDATA[Telephone]]></category>
		<category><![CDATA[Wiring]]></category>

		<guid isPermaLink="false">http://www.unixnetworks.org/?p=21</guid>
		<description><![CDATA[&#160; In the United States during the good old days, the telephone company used to not connect your house to their network and they also did the wiring for you. Well those days are long gone, and most people do the wiring part for themselves after the phone company puts the Network Interface Device (NID) <a href="http://www.unixnetworks.org/install-telephone-wiring.shtml"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>In the United States during the good old days, the telephone company used to not connect your house to their network and they also did the wiring for you. Well those days are long gone, and most people do the wiring part for themselves after the phone company puts the Network Interface Device (NID) in your basement. Unlike the dreaded power lines, telephone lines are safer to install by a non-expert because of the low voltages they carry. That does not mean that you may do telephone wiring while barefooted on a wet floor. If you are a stickler for rules and standards, you might find it a bit harder to comply with many industry standards for installing telephone wires in your home. First, those standards are too many and it&#8217;s a bit confusing to keep up with the current ones. But if are moving into a new facility, the most current standards you may want to use are EIA/TIA T586A.</p>
<p>The work begins at the Network Interface Device, and it has a customer access compartment which one may open and check the lines for a dial tone. You can use a previously-tested corded phone to test the phone lines; as this is the only way you can be certain you are testing the lines, and not the phone. Any phone head that gives a dial tone can be used to test the lines. If on testing no dial tone can be detected, it is likely you have a phone problem. The phone company may be willing to help you with this though they may charge you for the repairs. On the customer compartment on the NID, you will see a line of phone jacks lined up vertically. After testing the lines and finding out that they are fine, the next thing you should do is to label the NID lid so that you can tell which jack is associated with which phone line.</p>
<p>To guard yourself against a possible electrical jolt that you may get from a telephone line, especially when there is an incoming call, it may be a good idea to disconnect your house from the NID before you start wiring (this is particularly important for those with pacemakers which can be interfered with even by a minor shock). And it is not advisable to do your wiring during thunderstorms. For new telephone wiring, use a Cat-5 cable and when attaching this on the NID, you will need to make the appropriate color conversions. This means you will swap black for green, and yellow for red. Note that although it would still work perfectly if you consistently swap the wires the other way around, that is black for red and yellow for green, that this is not considered to be the standard. The four strand wire supports up to two lines and if you want to install more than three or four lines, you will need to buy the eight strand wire, or six strand wire, which is similar to eight strand wire but without the brown wires.</p>
<p>If every thing is hooked up and you still have problems such as one or more phone lines that have no dial tone, there are several possibilities. The fault could be yours or the phone company&#8217;s. Just make sure the problem is not yours before calling the company, for you may be asked to pay for their trouble should it be found to be your fault.</p>
<h2>Additional Reading on Telephone Wiring</h2>
<ul>
<li><a href="http://www.tech-faq.com/telephone-wiring.shtml" target="_blank">Telephone Wiring</a></li>
<li><a href="http://www.telephonewiring.org/" target="_blank">Telephone Wiring</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnetworks.org/install-telephone-wiring.shtml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

