<?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>Brady Consulting</title>
	<atom:link href="http://www.bradyconsult.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.bradyconsult.com/blog</link>
	<description>Tech &#38; Social Media Blog</description>
	<lastBuildDate>Fri, 27 Aug 2010 23:34:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SSH Security</title>
		<link>http://www.bradyconsult.com/blog/?p=164</link>
		<comments>http://www.bradyconsult.com/blog/?p=164#comments</comments>
		<pubDate>Fri, 27 Aug 2010 23:34:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=164</guid>
		<description><![CDATA[Securing SSH Sessions The Easy Way
By: Terry Bytheway
Recently I&#8217;ve had a good deal of people ask me about SSH connections, and how they can better secure them, and I&#8217;ve been shocked at the sheer number of people that still use keyboard-interactive password authentication to log into SSH daemons. This article will explain the use of [...]]]></description>
			<content:encoded><![CDATA[<h1>Securing SSH Sessions The Easy Way</h1>
<p><strong>By: <a title="Terry Bytheway's Articles" href="http://www.articlesbase.com/authors/terry-bytheway/10541">Terry Bytheway</a></strong></p>
<p>Recently I&#8217;ve had a good deal of people ask me about SSH connections, and how they can better secure them, and I&#8217;ve been shocked at the sheer number of people that still use keyboard-interactive password authentication to log into SSH daemons. This article will explain the use of SSH keys and OpenSSH options to speed up and secure your SSH connection.</p>
<p>SSH options</p>
<p>There are a few useful options you can pass to OpenSSH to increase your verbosity, compress and speed up your ssh connection, and change your SSH cipher to something faster and more secure;</p>
<p>&#8216;-v&#8217; switch. This option will allow you to see debug output for outgoing SSH connections. Specifying &#8216;-v&#8217; multiple times increases the verbosity level (maximum level 3).</p>
<p>&#8216;-C&#8217; switch. This option compresses all of your SSH data. Passing this option to OpenSSH may speed things up dramatically on slow networks, but on high-speed networks it will only slow things down.</p>
<p>&#8216;-c&#8217; switch. This option will allow you to change your cipher method. The default is 3des, which is a 3-way encryption method that is believed to be secure &#8211; however, blowfish is also available, which is a fast block cipher which also believed to be very secure and is far faster than 3des.</p>
<p>For example, let&#8217;s say I want to log in as user &#8216;foo&#8217; to an ssh daemon on host &#8216;example.com&#8217;. I want maximum verbosity level, I want to compress all my data, and I want to change my SSH cipher to blowfish. The command would look like this:</p>
<p>ssh -vvv -C -c blowfish -l foo example.com</p>
<p>(Note: the higher your verbosity level, the more text you will get on your terminal while OpenSSH goes through the process of logging in to the remote SSH daemon. Even specifying only one -v can get you a veritable flood of information. Fiddle around with -v until you find a debug level that you&#8217;re comfortable with.)</p>
<p>SSH keys</p>
<p>OpenSSH supports a method of authentication far more secure than keyboard-interactive password authentication using a combination of public/private key cryptography. A pair of keys is generated, one on the remote machine to authenticate you and let you in. The other is a private key to match the key on the remote machine.</p>
<p>To generate a pair of cryptographic keys, you would use the ssh-keygen(1) utility on both the machine you intend to log in to, and the machine you intend to log in from. For example;</p>
<p>ssh-keygen -t rsa</p>
<p>The -t option specifies the type of key to be generated. Available options are dsa and rsa.</p>
<p>Inputting this command on either of your UNIX machines should give you an output like this:</p>
<p>$ ssh-keygen -t rsa</p>
<p>Generating public/private rsa key pair.</p>
<p>Enter file in which to save the key (/home/example/.ssh/id_rsa):</p>
<p>Enter passphrase (empty for no passphrase):</p>
<p>Enter same passphrase again:</p>
<p>Your identification has been saved in /home/example/.ssh/id_rsa.</p>
<p>Your public key has been saved in /home/example/.ssh/id_rsa.pub.</p>
<p>Setting a passphrase is highly recommended to maximize security. Good passphrases are between 10 and 30 characters long, and are not easily guessable in any way. If you do not enter a passphrase, you will be able to login to your remote system without entering any password on login.</p>
<p>The next step is to authorize your keys on the remote machine you intend to log in to. You can do this using a file named authorized_keys on your target machine. Copy your ~/.ssh/id_rsa.pub file onto your remote machine using scp(1)</p>
<p>scp ~/.ssh/id_rsa.pub example.com:.ssh/authorized_keys</p>
<p>Now log in to your target machine using ssh(1) with a debug level of 1</p>
<p>as previously shown;</p>
<p>ssh -v -C -c blowfish -l foo example.com</p>
<p>You will see debug messages like so;</p>
<p>debug1: Authentications that can continue: publickey,keyboard-interactive</p>
<p>debug1: Next authentication method: publickey</p>
<p>debug1: Offering public key: /home/example/.ssh/id_rsa</p>
<p>debug1: Server accepts key: pkalg ssh-dss blen 435</p>
<p>debug1: read PEM private key done: type rsa</p>
<p>You should then be prompted for your key passphrase (if you entered one) and then let into the system. If you didn&#8217;t enter a passphrase upon generating your public/private keys, you will be passed through without having to enter any. If you encounter errors, you should check the permissions of your ~/.ssh directories on both machines.</p>
<p>If you wish to change your key passphrase at any time, you can do so by passing the -p flag to the ssh-keygen utility;</p>
<p>ssh-keygen -p</p>
<p><strong>About the Author</strong></p>
<p>LinksJuice <a href="http://www.linksjuice.com/89/Security/">Security Directory</a> for related websites with tips &amp; advice on security. The security directory is located under the <a href="http://www.linksjuice.com/3/Computers_Internet/">Computers &amp; Internet directory</a>.</p>
<p class="tracker">(ArticlesBase SC #172422)</p>
<p>Article Source: <a href="http://www.articlesbase.com/">http://www.articlesbase.com/</a> &#8211; <a title="Securing SSH Sessions The Easy Way" href="http://www.articlesbase.com/computers-articles/securing-ssh-sessions-the-easy-way-172422.html">Securing SSH Sessions The Easy Way</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=164</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential Tips for Configuring a Linux Server</title>
		<link>http://www.bradyconsult.com/blog/?p=109</link>
		<comments>http://www.bradyconsult.com/blog/?p=109#comments</comments>
		<pubDate>Sat, 14 Aug 2010 15:56:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=109</guid>
		<description><![CDATA[Author: Paul Brady
Selecting a Linux Distribution
The first important step in setting up and configuring a Linux server is to select the proper Linux distribution. There are numerous Linux distros available and some serve a particular niche. However, this article will address a Linux distribution that serves a wider audience: Debian Linux.
Debian is a general purpose [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Author</strong>: Paul Brady</p>
<h1>Selecting a Linux Distribution</h1>
<p>The first important step in setting up and configuring a Linux server is to select the proper Linux distribution. There are numerous Linux <a href="http://en.wikipedia.org/wiki/Comparison_of_Linux_distributions" target="_blank"><span style="color: #000000;">distros</span></a> available and some serve a particular niche. However, this article will address a Linux distribution that serves a wider audience: Debian Linux.</p>
<p>Debian is a general purpose Linux distribution (Operating System) that provides stable, reliable operation as both a server and desktop system. As a server, Debian is easy to install, backup, secure, and restore. Although it does not have some of the newer features found in some distros, it is nonetheless, an extremely safe and reliable operating system.</p>
<p>Once Debian is installed on a server, it is important to immediately address:</p>
<ul>
<li>backup tool selection and installation</li>
<li>security setup</li>
</ul>
<h2>Backup Tool Selection and Installation</h2>
<p>The Debian Linux Server setup is extremely flexible in almost all respects. This flexibility is excellent, but also presents a challenge. Flexibility often equates to complexity and even an experienced user could be overwhelmed by the selection and installation of a backup tool for a Linux server. Debian Linux, however, attempts to mitigate most of this complexity with an excellent package manager called Advanced Package Tool or APT. APT enables users to easily install or update applications. In addition, application dependencies are automatically handled by APT.  Consequently, APT is essential for installing a backup tool as part of an overall strategy to safeguard system data.</p>
<p>The backup tool users select ultimately depends on what they want. Most system administrators will recommend an automated, command-line backup. Although there are several choices, the best choice for automated backups is rsnapshot. This backup utility enables users to schedule incremental backups of their system.</p>
<h2>Security Setup</h2>
<p>One of the most important issues to consider when configuring a Linux Server is system security. Debian Linux is a powerful operating system, but out of the box Debian has inadequate security to protect the web-based and local applications. To protect the system, users must perform at least three specific tasks:</p>
<ul>
<li>disable or replace all unnecessary applications</li>
<li>secure the Linux server with ssh</li>
<li>install and configure ModSecurity</li>
</ul>
<h3>Disable or Replace all Unnecessary Applications</h3>
<p>After installing Debian, it is highly recommended that users disable telnet, ftp, and other methods for accessing the Debian server. In addition, users should replace the system mail application with nullmailer. System mail servers like Exim or Sendmail are inherently insecure. Nullmailer is an easy way to secure a Debian server by forwarding mail to remote mail servers that require authentication. This is more secure than having a local mail server installed on the Linux server.</p>
<h3>Secure the Linux Server with SSH</h3>
<p>One of the best methods for securing a Linux server is configuring key-based Secure Shell (SSH) authentication. SSH provides an encrypted connection between two end points. SSH keys provide even more security by only allowing access to the server by someone with a password and valid key.</p>
<h3>Install and Configure ModSecurity</h3>
<p>One of the most effective ways to secure Debian web-based applications is to install and configure ModSecurity. ModSecurity is a web application firewall that detects and prevents attacks against Debian web-based applications. The latest version of Debian supports installing ModSecurity using APT. Once installed, users will need to tweak the ModSecurity configuration to disable false positives for normal application operations.</p>
<h1>Conclusion</h1>
<p>Backing up and securing a Debian server are two of the most important aspects for protecting data and applications. There are, of course, many more tasks users could tackle to configure Debian fully, but backing up and securing the system are some of the first tasks users must accomplish.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=109</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding Hosting Options: Linux &amp; Windows</title>
		<link>http://www.bradyconsult.com/blog/?p=107</link>
		<comments>http://www.bradyconsult.com/blog/?p=107#comments</comments>
		<pubDate>Sat, 27 Mar 2010 18:16:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[all categories]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=107</guid>
		<description><![CDATA[Understanding Linux and Windows Towards Web Hosting
Author: WebHostingGeek
A Linux based hosting service can be appreciated if you have a true understanding about it. Linux is an open source operating system. There are no licensing fees for it. So, compared to windows, Linux is very cheap. Windows have software activation rights. A single copy of windows [...]]]></description>
			<content:encoded><![CDATA[<h2>Understanding Linux and Windows Towards Web Hosting</h2>
<p><strong>Author: <a title="WebHostingGeek" href="authors/webhostinggeek/46533">WebHostingGeek</a></strong></p>
<p>A Linux based hosting service can be appreciated if you have a true understanding about it. Linux is an open source operating system. There are no licensing fees for it. So, compared to windows, Linux is very cheap. Windows have software activation rights. A single copy of windows can be installed only on one computer. In the case of Linux once you have owned the software copy, you are free to install the software as many times as you wish on various computers.</p>
<p>On the other hand, Windows has a monolithic design, whereby it creates a sort of interdependence between the various parts of the server. A practical example can be seen in windows media player and Microsoft Internet explorer. In the case of Linux, it is known for its open source community development. Due to its group oriented approach method, Linux can easily oppose the monolithic based design concept by creating an operating system made up of parts that are freely independent of each other.</p>
<p>Linux and windows can successfully run popular web technologies such as HTML, CSS DHTML, XHTML, XML, JAVA Script, JAVA, CGI and Perl. They can also support Email, FTP, reporting and other basic features too. Also, both the operating systems (Linux and windows ) can do a good job when it comes to interfacing with Microsoft front page. Linux deals with open source development method, such as PHP nad RUBY on rails. Mostly, the Linux based databases use MYSQL. On  the other hand, windows deal with ASP and other Microsoft proprietary applications such as Microsoft exchange. Window based databases mostly rely on MS SQL. When it comes to talking about the security risks involved on servers, one must be aware of the fact that one cannot ensure a 100 % risk free security service. I am saying this because even today there exist unskilled server administrators; people involved in brute force password crackers, unsecured PHP or ASP scripts etc.</p>
<p>In a windows based system, it becomes easy for hackers to compromise and entire server. The IIS web server is deeply interconnected with the core of the windows. Hence, if a security threat is found in the IIS web server, it could lead to compromising the entire windows server. That is why, external browsers such as Mozilla, Fire Fox are considered to be safer for a window PC than the integrated Microsoft Internet Explorer. Now in the case of a Linux security based system, there exists a large as well as an educated security team. However, one must also be aware of the fact that there exists a group of educated community of hackers too.</p>
<p>Linux is mainly used for database servers and Internet servers. Many companies prefer to use Linux on their servers as an alternative to other operating systems. Linux can be considered as a very efficient, multi-user multitasking operating system. Linux is popular on the internet as well as by many small companies. Linux is very stable and it uses the resources very efficiently. Linux is compatible with Microsoft windows, whereby it can support fully access to windows file system. Linux runs efficiently on your present hardware. Your older machines can also work on Linux.</p>
<p>In other words, your old hardware which might have discarded just because it was in adequate for the latest software upgrades can now be a valuable resource for your company. You can put your hardware back in service with Linux. Web hosting service based on Linux is easy and cheaper than windows hosting. It is a better choice over windows.</p>
<p>Article Source: <a title="Understanding Linux and Windows Towards Web Hosting" href="http://www.articlesbase.com/web-hosting-articles/understanding-linux-and-windows-towards-web-hosting-383663.html">http://www.articlesbase.com/web-hosting-articles/understanding-linux-and-windows-towards-web-hosting-383663.html</a></p>
<p><strong>About the Author</strong></p>
<p><a href="http://webhostingrating.com/">Web Hosting Rating</a> &#8211; the <a href="http://webhostingrating.com/">top web hosting</a> on internet have <a href="http://webhostingrating.com/">web hosting reviews</a> and scores of stuff on hosting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=107</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media and Your Small Business Operation</title>
		<link>http://www.bradyconsult.com/blog/?p=101</link>
		<comments>http://www.bradyconsult.com/blog/?p=101#comments</comments>
		<pubDate>Fri, 26 Mar 2010 22:53:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[all categories]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[revenue]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=101</guid>
		<description><![CDATA[Integrating Social Media Into Your Small Businesses?
Author: Skye King
Growing link between social media and small businesses
A new study by Smith School of Business at The University of Maryland on the relationship between small business and social media has concluded that Social Media rates in the U.S. have reached 24%, primarily through Facebook and LinkedIn, an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Integrating Social Media Into Your Small Businesses?</strong></p>
<p><strong>Author: <a title="Skye King" href="authors/skye-king/228642">Skye King</a></strong></p>
<h2>Growing link between social media and small businesses</h2>
<p>A new study by Smith School of Business at The University of Maryland on the relationship between small business and social media has concluded that Social Media rates in the U.S. have reached 24%, primarily through Facebook and LinkedIn, an increase of 8% from 2008.</p>
<p>The December 2009 report surveyed 500 small business owners and found that one in five small businesses are have integrated social media into their marketing mix. In fact, 45% of surveyed respondents even believe their social media initiatives will pay off financially in 12 months or less.</p>
<p>As the graphic below details, the small business owners who are using social media are <strong>primarily engaging in social media through company pages (75%) and status updates (69%) on Facebook or LinkedIn</strong>. However only 16% of the business owners surveyed admitted to using <a href="http://www.twitter.com/skyeking" target="_blank">Twitter </a>as a customer service channel.</p>
<p><img src="http://img696.imageshack.us/img696/5344/smallbusinesssocialmedi.jpg" alt="" width="380" height="234" /></p>
<p>The report also shows that small business owners now believe social media can help them <a href="http://www.growsuccesstoday.com" target="_blank">generate leads</a>. While half of surveyed respondents found the time it takes to use social media sites more daunting than expected, 61% are still putting in the hours and making active efforts to identify new customers.</p>
<p>Despite there still being a need for traditional advertising and press releases, social sites such as Twitter and Facebook allow a whole new type of communication to take place that has previously been unknown to most businesses. Because of this it is even more important for business to not only get a large number of fans or followers, but also follow through on the opportunity to make more genuine and direct connections with customers.</p>
<p>We are now in the age of <a href="http://www.globalinternetsuccess.com" target="_blank">open communication</a>, engaged dialogue, and transparency and business success may now have less to do with the size of ad budgets, but on the quality of interactions with customers – especially before these customers forge relationships with your competitors.</p>
<p>Article Source: <a title="Integrating Social Media Into Your Small Businesses?" href="http://www.articlesbase.com/social-marketing-articles/integrating-social-media-into-your-small-businesses-1931586.html">http://www.articlesbase.com/social-marketing-articles/integrating-social-media-into-your-small-businesses-1931586.html</a></p>
<p><strong>About the Author</strong></p>
<p>Skye King is an Internet Marketing Adviser, the founder of <a href="http://www.GrowSuccessToday.com">Grow Success Today</a>, a Lifestyle Marketing Company that spans 160 countries in 40 different languages. She specialized in Social Media, Branding &amp; SEO Strategies. King is the Editor of Home Based Business at <a href="http://businesstm.com/about/skye-king">BusinessTM.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=101</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media for Your Business</title>
		<link>http://www.bradyconsult.com/blog/?p=99</link>
		<comments>http://www.bradyconsult.com/blog/?p=99#comments</comments>
		<pubDate>Fri, 26 Mar 2010 22:50:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[all categories]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=99</guid>
		<description><![CDATA[With so many businesses of all sizes being aware of the benefits of social media optimization and implanting strategies to become more connected, social media is helping to forge a new era in business transparency and engagement, creating both new challenges and opportunities.]]></description>
			<content:encoded><![CDATA[<p><strong>Business Transparency &amp; Social Media</strong></p>
<p><strong>Author: <a title="Skye King" href="authors/skye-king/228642">Skye King</a></strong></p>
<p>With so many businesses of all sizes being aware of the benefits of social media optimization and implanting strategies to become more connected, social media is helping to forge a new era in business transparency and engagement, creating both new challenges and opportunities.</p>
<p><img src="http://www.ithoughtz.com/images/smo1.jpg" alt="" width="361" height="268" /></p>
<p>The days when companies could rely on carefully crafted press releases or flashy ad campaigns to communicate with their customers are long gone. Especially futile is an attempt to convince people that your products are the best in the field. In the age of social media, the rules have changed drastically, and people today demand a more honest and direct relationship with the companies with which they do business.</p>
<p>Companies now face a clear choice: wall themselves in and become increasingly controlled and hidden, or use social media and other means to reveal their human side, welcome transparency, and forge <a href="http://www.twitter.com/skyeking" target="_blank">new relationships</a> with their customers.</p>
<p>Below are the top four shifts that businesses are making due to social media optimization (SMO).</p>
<h2>1. From &#8220;Trying to Sell&#8221; to &#8220;Making Connections&#8221;</h2>
<p>The goal with SMO in most cases is not to sell more but to <a href="http://globalinternetsuccess.com/6-high-profit-blog-redesign-priorities" target="_blank">engage and connect</a> with customers on a deeper level — and, as a result, through such engagement people feel more comfortable doing business with those companies.</p>
<p>The most popular brands in social media tend to post less about their products or services and more about things that help their customers get to know the people and personality of a company. Jeff Swartz, who is the President and CEO of the Timberland Company, is a great example of this. Swartz uses his Twitter account to show his personality by tweeting about his life and the social issues he is passionate about, rather than the shoes his company makes. He also links from his Twitter bio to Timberland&#8217;s Earthkeeper project that supports environmental awareness, rather than to the company homepage, in an effort to make a connection with people around something that goes beyond just the products Timberland sells.</p>
<p>Lesson: Rely less on PR tactics and grab at the opportunity to interact with your customers sincerely.</p>
<h2>2. From &#8220;Large Campaigns&#8221; to &#8220;Small Acts&#8221;</h2>
<p>Being able to communicate on such a wide-spanning platform also allows for small acts that express gratitude and a commitment to customer satisfaction. Sites like Facebook and Twitter provide businesses and their followers a broadcasting network, and businesses are beginning to see that rather than spending millions of dollars on traditional ad campaigns, small acts can be more valuable because people will inevitably share such experiences through the social web.</p>
<p>In the past, if we had a very bad or very good experience with a company, it could take days or weeks to tell all of our friends and relatives about it. Today, in a matter of minutes, we can let all our friends on Facebook or followers on Twitter know about what happened. When every customer experience can be easily and widely broadcast, small issues become extremely important.</p>
<p>Since bad experiences are broadcast just as fast and just as easily as the good, it pays for companies to pay attention to the one-on-one customer relationships forged via social media.</p>
<p>Lesson: Instead of only relying on big campaigns, make authentic, helpful relationships and communication the new campaign.</p>
<h2>3. From &#8220;Controlling Our Image&#8221; to &#8220;Being Ourselves&#8221;</h2>
<p>For generations businesses have stressed over the concept of image and maintaining a carefully crafted public persona. Of course companies need to have employee policies, and there is such a thing as bad press, but look at the most popular companies in the era of social media, and you&#8217;ll generally find the ones that give their employees freedom to be themselves in online spaces. The goal should no longer be to create a very controlled and polished image that everyone in a company tries to reinforce, but rather to give employees the means necessary to be human beings that can put a friendly face on the corporation.</p>
<p>Also important is being aware of what online perceptions of your <a href="www.growsuccesstoday.com" target="_blank">business </a>are. How people connect with your business dictates to a great extent the longevity and reliability of their association with your brand and service. Therefore, it&#8217;s not just about what you tell them about the business, it&#8217;s also about what political stances you take and what information you share and</p>
<p>Lesson: Leave the dated concept of company image behind and embrace your business&#8217;s differences and human qualities.</p>
<h2>4. From &#8220;Hard to Reach&#8221; to &#8220;Available Everywhere&#8221;</h2>
<p>To engage with customers, it is no longer enough to have an email address and customer service number on one&#8217;s website. Today, people want to interact with and engage businesses via their chosen means of communication, whether that is Twitter, Facebook, discussion forums, or a feedback site like Get Satisfaction.</p>
<p>However, this omnipresence also presents an added challenge: listening to what your customers want and implementing suggestions. Any expansive platform also adds extra responsibility to use the information gathered in a way that is both purposeful and helpful. This means that just as it is extremely important to reach this audience, it is also important to make the changes they are asking for. Keeping lines of communication open during this process is also helpful since feedback is available with every step.</p>
<p>Article Source: <a title="Business Transparency &amp; Social Media" href="http://www.articlesbase.com/smo-articles/business-transparency-amp-social-media-1932110.html">http://www.articlesbase.com/smo-articles/business-transparency-amp-social-media-1932110.html</a></p>
<p><strong>About the Author</strong></p>
<p>Skye King is an Internet Marketing Adviser, the founder of <a href="http://www.GrowSuccessToday.com">Grow Success Today,</a> a Lifestyle Marketing Company that spans 160 countries in 40 different languages. She is the Editor for Home Based Business at <a href="http://businesstm.com/about/skye-king">BusinessTM.com</a>. King specializes in Social Media Marketing, SEO and Personal Branding.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=99</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Marketing</title>
		<link>http://www.bradyconsult.com/blog/?p=97</link>
		<comments>http://www.bradyconsult.com/blog/?p=97#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:02:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[all categories]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=97</guid>
		<description><![CDATA[Twitter is a relatively new web 2.0 site that is starting to gain a lot of popularity. That means that a lot of people have heard of it but it is also quite common to run into people who haven't heard of it.. yet. Twitter.com is this social site that encourages users to post often about what they are currently doing.]]></description>
			<content:encoded><![CDATA[<h1>How to Use Twitter for Marketing</h1>
<p><strong>By: <a title="Darren Olander's Articles" href="http://www.articlesbase.com/authors/darren-olander/51551">Darren Olander</a></strong></p>
<p>Twitter is a relatively new web 2.0 site that is starting to gain a lot of popularity. That means that a lot of people have heard of it but it is also quite common to run into people who haven&#8217;t heard of it.. yet. Twitter.com is this social site that encourages users to post often about what they are currently doing.</p>
<p>A lot of people are using it to improve their marketing reach, by being an active twitterer they gain followers who are interested in what they got going on. This means people being exposed to their updates on a regular basis. For example, if you have hundreds of followers in Twitter and you decide to post an affiliate link, that means that hundreds of people have instantly been exposed to your offer. In this article I will discuss ways to maximize Twitter for your marketing, and also a big mistake to be aware of.</p>
<p>In order to have a fan base per say of followers in Twitter you must be able to keep their interest in you and what you are doing now. &#8220;What are you doing?&#8221; is the whole foundation of what Twitter is about in the first place. Make sure to post daily if not several times throughout the day updates about what you are doing. The magical thing behind this is that many of your contacts will be able to feel like they know you so much better, will trust you more, and feel much more comfortable about working with you. On the other hand, when you follow others you can learn about them and their possible needs.</p>
<p>The big mistake to watch out for is only posting affiliate links or offers on your Twitter page. This looks like Spam and many people will see you as just abusing Twitter for your own personal gain. Think of it this way, if you would not want to invite your friends or family to keep up with you via Twitter then you are going about it all wrong. As with anything you send out or provide, ninety percent should be content and ten percent (at most) advertising. So this concept is quite simple&#8230; constantly post throughout the day what you are doing.. it is usually very simple and only takes a few seconds to post! Secondly, if you write articles or provide content online, provide a link for those in your Twitter posts. You may post many things within one day, but the last thing you post for the day is usually the most important because it will be there the longest. This means that your last post for the day should very well contain a link that you want your followers to see before your start Twittering again the next day!</p>
<p>Another part of Twitter is contributing. As with any social site it should be a give and take relationship. Notice that give comes first&#8230; the more you give the more people will want to work with you and the more attention you will receive. Make sure to read and follow other users in Twitter. If you read something interesting or helpful then make sure to reply and say so, or even put a link for it on your Twitter so that you are directing others to more quality content. This can also be as simple as connecting with other users, if they know you are reading their Twitter page they will be much more likely to check out what you have going on too.</p>
<p>To get started in Twitter you should first invite contacts who aren&#8217;t using Twitter and also find contacts who are already using Twitter so that you can start following them and also start getting people to follow you. Twitter has a nice invite and find feature that makes this incredibly easy. To grow your reach even more you can start following people who follow or are followed by the people who follow you.. or that you follow. You might need to read that sentence again.. but basically you can find other users to connect with that are already connected to other users.</p>
<p>Now for a big tip. If you really want to maximize the potential with Twitter, you should make sure to take advantage of any plug-ins or sites that support Twitter. Here are three, but I&#8217;m sure there will be many more in the future if not already. Squidoo allows you to input your Twitter account info into your Squidoo account and then it can automatically post updates to your Twitter account when you create or update Squidoo lenses. Facebook has an application called Twitter, it automatically updates your Facebook status when you make a Twitter post. The other tool is a free WordPress plug-in called TweetMyBlog that allows you to create a two-way connection from your blogs to Twitter. TweetMyBlog allows you to use a widget on your Wordpress blogs that will display your current Twitter feed.. that way all visitors to your blog can look at the widget and see a running feed of your latest Twitter posts. If they click on that they will be brought to your Twitter page. In addition, when you make a new post to your blog, TweetMyBlog will automatically make a post to your Twitter page with a link to your latest blog post. Imagine the extra exposure you can receive by using these tools that help people see more of what you are doing.</p>
<p>Lastly, have fun! Twitter is a social site&#8230; so interact and enjoy!</p>
<p><strong>About the Author</strong></p>
<p>Darren Olander is dedicated to teaching others how to create a success online through internet network marketing strategies. He is a site owner, article writer, coach &amp; marketing consultant enjoying the benefits of working full time from home. Learn more about him at <a href="http://www.darrenolander.com/">http://www.darrenolander.com</a></p>
<p class="tracker">(ArticlesBase SC #491205)</p>
<p>Article Source: <a href="http://www.articlesbase.com/">http://www.articlesbase.com/</a> &#8211; <a title="How to Use Twitter for Marketing" href="http://www.articlesbase.com/internet-articles/how-to-use-twitter-for-marketing-491205.html">How to Use Twitter for Marketing</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=97</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Donate: A List of Ways to Donate to Haitian Relief Fund</title>
		<link>http://www.bradyconsult.com/blog/?p=92</link>
		<comments>http://www.bradyconsult.com/blog/?p=92#comments</comments>
		<pubDate>Fri, 15 Jan 2010 15:26:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Haitian Relief]]></category>
		<category><![CDATA[all categories]]></category>
		<category><![CDATA[haitian relief fund]]></category>
		<category><![CDATA[how to donate to Haiti]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=92</guid>
		<description><![CDATA[Please donate to the Haitian Relief effort. This is a list I compiled of all the various ways to donate, including: phone call, SMS, online form, instant messenger, etc.]]></description>
			<content:encoded><![CDATA[<p>Please help out with the Haitian relief effort by donating today. Here&#8217;s what I&#8217;ve been able to pull together from all the relief sites:</p>
<h2>SMS Donations:</h2>
<ul>
<li>Text HAITI to 90999 to donate $10 to the American Red Cross</li>
<li>Text HAITI to 25383 to donate $5 to International Rescue Committee</li>
<li>Text HAITI to 45678 to donate $5 to the Salvation Army in Canada</li>
<li>Text YELE to 501501 to donation $5 to Yele</li>
<li>Text RELIEF to 30644 to get automatically connected to Catholic Relief Services and donate money with your credit card</li>
<li>Text HAITI to 864833 to donate $5 to The United Way</li>
<li>Text CERF to 90999 to donate $5 to The United Nations Foundation</li>
<li>Text DISASTER to 90999 to donate $10 to Compassion International</li>
</ul>
<h2>Phone Call Donations:</h2>
<ul>
<li>1-800-RED CROSS (1-800-435-7669 &#8211; English Speaking)</li>
<li>1-800-257-7575 (Spanish Speaking)</li>
</ul>
<h2>Internet Donations:</h2>
<ul>
<li><a href="http://tinyurl.com/ycp9pjr" target="_blank">American Red Cross</a> (online form direct Haitian Relief Link)</li>
</ul>
<h2>American Red Cross List of Ways to Donate:</h2>
<ul>
<li><a href="http://is.gd/6jK4j" target="_blank">American Red Cross </a>(all methods to donate &#8211; including several electronic methods)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=92</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Analytics Tutorial</title>
		<link>http://www.bradyconsult.com/blog/?p=89</link>
		<comments>http://www.bradyconsult.com/blog/?p=89#comments</comments>
		<pubDate>Fri, 18 Dec 2009 05:23:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[all categories]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=89</guid>
		<description><![CDATA[Analytics engine is one such simple to use and free tool that gives you web statistics. Here is a short tutorial that will help you harness the true potential of Google.]]></description>
			<content:encoded><![CDATA[<h1>Google Analytics Tutorial: Getting The Best Out Of Your Web Site</h1>
<p><strong>Author: <a title="Katia Lorenzen" href="http://www.articlesbase.com/authors/katia-lorenzen/38547.htm">Katia Lorenzen</a></strong></p>
<p>Businesses are all about decisions, and informed decisions are the thin line of difference between success and confusion. This concept goes for the Internet and websites too, and any tool that provides you with information about your website is a Godsend. Analytics engine is one such simple to use and free tool that gives you web statistics. Here is a short tutorial that will help you harness the true potential of Google.</p>
<p>Step 1 # 1: Making an Account</p>
<p>Analytics software system is a free tool provided by Google. Making an account is convenient and simple. All you need to make a Analytics engine account is a Gmail e-mail id. Once your Gmail e-mail id is set up, you can go to the Analytics engine website and sign up your website for Google Analytics.</p>
<p>Step # 2: Installing the Tracking Code</p>
<p>Once you have signed into Analytics engine, you will be redirected to a page which has links to the analytics reports of your website. If you have not installed the tracking code on your websites, click on the Add Website Profile link.</p>
<p>If this is your first time on Analytics engine, and you have not installed the tracking code on your website or any of its pages, choose the &#8220;Add a profile for a new domain&#8221; option. Once that is done, scroll down and type in the URL of the home page that you wish to install the tracker to.</p>
<p>Select the time zone you are in and click Continue. Once this is done, the Analytics engine will automatically detect whether the tracking code has been installed on the website or page that you provided them with. Choose any of the code given below (best way is to press Ctrl+A and Ctrl+C) and paste the copied code into the website and webpage that you would want Analytics engine to analyze.</p>
<p>Make sure that you install the code anywhere before the End Body (/body) tag. Click Continue. The pa</p>
<p>ge will now show the webpage, website or websites that you have installed the tracker code to. Click on the View Reports link to go to the The System Dashboard.</p>
<p>Step 3 # 3: The Dashboard</p>
<p>The Dashboard is your Google homepage. Through this page, you can access almost any information you would require about your website, or even any page within the website. Once you have signed into the The System website, you will be redirected to the list of website profiles, that is, the analytics reports of any and all websites that you have installed the Google Analytics tracker code.</p>
<p>Once you are on the Dashboard, you can view the following analytics about your website:</p>
<p>Site Usage: The site usage column gives you the relevant information about the traffic for your website. The Visits column tells you the number of visits and unique visits in a given time frame. You can also know about the number of page views per visit at the Dashboard.</p>
<p>You can also find out the Bounce rate of your website or webpage. Bounce rate is the number of visitors to your websites who browsed away from your website directly from the landing page or the home page. Analytics engine also tells you the exact amount of time one particular user has spent on your website. It can also calculate the percentage of new and unique visits on your website.</p>
<p>Traffic Sources Section: The Traffic Sources Section tells you more about the traffic of your website, and explains it further. You can get information about all the traffic sources for your website. You can also divide your traffic from direct traffic, Search Engine traffic and Referring sites. Google Analytics can also give you traffic related information regarding your AdSense account if you have one.</p>
<p><strong>About the Author:</strong></p>
<p>Katia Lorenzen discovered <a href="http://www.Analytics411.com">Google Analytics</a> while doing research for a new article. More information about this indispensable tool and a <a href="http://www.Analytics411.com">Google Analytics tutorial</a> can be found here: <a href="http://www.Analytics411.com." target="_blank">http://www.Analytics411.com.</a></p>
<p>Article Source: <a href="http://www.articlesbase.com/">ArticlesBase.com</a> &#8211; <a title="Google Analytics Tutorial: Getting The Best Out Of Your Web Site" href="http://www.articlesbase.com/seo-articles/google-analytics-tutorial-getting-the-best-out-of-your-web-site-360951.html">Google Analytics Tutorial: Getting The Best Out Of Your Web Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=89</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Email and Web-Based Threats</title>
		<link>http://www.bradyconsult.com/blog/?p=84</link>
		<comments>http://www.bradyconsult.com/blog/?p=84#comments</comments>
		<pubDate>Fri, 11 Dec 2009 01:27:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[all categories]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=84</guid>
		<description><![CDATA[Securing your company boundaries: The Changing Nature of Email and Web-based Threats
Author: MFrizzi
Securing your company boundaries: The changing nature of email and web-based threats
Growing pressure on the enterprise gateway means email viruses and worms are giving way to subtler forms of malicious spam, and a rise in web-based malware.
The changing email threat
Malware-infected email has decreased [...]]]></description>
			<content:encoded><![CDATA[<h2>Securing your company boundaries: The Changing Nature of Email and Web-based Threats</h2>
<p><strong>Author: <a title="MFrizzi" href="http://www.articlesbase.com/authors/mfrizzi/275505.htm">MFrizzi</a></strong></p>
<p><strong>Securing your company boundaries: The changing nature of email and web-based threats</strong></p>
<p>Growing pressure on the enterprise gateway means email viruses and worms are giving way to subtler forms of malicious spam, and a rise in web-based malware.</p>
<p><strong>The changing email threat</strong></p>
<p>Malware-infected email has decreased as cybercriminals have found more efficient ways to get the information they want. Instead of sending the malware itself as an attachment which has to be constantly rewritten to avoid detection they spam out emails with links to websites from which viruses and other malware are inadvertently downloaded by unsuspecting visitors. For example, a spammed email in November 2006 offered free explicit images and videos, in an attempt to trick users into downloading a malicious Trojan horse.</p>
<p>“<em>Up to 30 percent of companies with 500 or more staff have been infected as a result of internet surfing, while only  20-25 percent of the same companies experienced viruses and worm from emails.”</em><em></em><br />
IDC.</p>
<p><strong>The growing web threat</strong></p>
<p>There is a low level of threat awareness among surfers, and web security within corporate networks is often overlooked. Users are inadvertently downloading spyware and unwanted applications. At the same time, employees&#8217; uncontrolled browsing is having a significant impact on productivity and network bandwidth, and the security of confidential data.</p>
<p><strong>Our expert solutions</strong></p>
<p>We have a range of solutions to help you meet the challenge of protecting your organization from infection and legal risk, while also meeting end user demands for performance and accessibility. Scanning billions of web pages a day, proactively discovering thousands of new malicious URLs a week, and performing round-the-clock threat analysis, SophosLabs™ delivers focused security and performance, and rapid, proactive protection against known and unknown threats.</p>
<p>This article was provided by Sophos and is published here with their full permission. Sophos provides full data protection services including: <a href="http://www.sophos.com/"><span style="text-decoration: underline;">security software</span></a>, <a href="http://www.sophos.com/products/enterprise/encryption/"><span style="text-decoration: underline;">encryption software</span></a>, <a href="http://www.sophos.com/"><span style="text-decoration: underline;">antivirus</span></a>, and malware protection.</p>
<p>Keywords: anti-virus, malware, firewall, spam, spyware, internet security, data protection, network access control, virus protection, compliance, encryption, network security, spyware removal, anti-spyware, hippa, aes, nac, computer security, hitech, data loss</p>
<p><strong>About the Author:</strong></p>
<p>This article was provided by Sophos and is reproduced here with their full permission. Sophos provides full data protection services including: <a href="http://www.sophos.com">security software</a>, encryption software, <a href="http://www.sophos.com">antivirus</a>, and <a href="http://www.sophos.com/products/malware-protection/">malware</a>.</p>
<p>Article Source: <a href="http://www.articlesbase.com/">ArticlesBase.com</a> &#8211; <a title="Securing your company boundaries: The changing nature of email and web-based threats" href="http://www.articlesbase.com/security-articles/securing-your-company-boundaries-the-changing-nature-of-email-and-webbased-threats-1565790.html">Securing your company boundaries: The changing nature of email and web-based threats</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=84</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing SSH: A Tutorial</title>
		<link>http://www.bradyconsult.com/blog/?p=82</link>
		<comments>http://www.bradyconsult.com/blog/?p=82#comments</comments>
		<pubDate>Fri, 04 Dec 2009 17:24:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[all categories]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.bradyconsult.com/blog/?p=82</guid>
		<description><![CDATA[Installing and Configuring the Secure Shell Server
Author: Christopher Pace
The Secure Shell (SSH) Server is a secure replacement for telnet and rlogin, etc. SSH uses encryption from the point the client connects to a server, to the time the connection is terminated. SSH uses encryption to hide passwords, usernames, and other sensitive information that is normally [...]]]></description>
			<content:encoded><![CDATA[<h1>Installing and Configuring the Secure Shell Server</h1>
<p><strong>Author: <a title="Christopher Pace" href="http://www.articlesbase.com/authors/christopher-pace/171463.htm">Christopher Pace</a></strong></p>
<p>The Secure Shell (SSH) Server is a secure replacement for telnet and rlogin, etc. SSH uses encryption from the point the client connects to a server, to the time the connection is terminated. SSH uses encryption to hide passwords, usernames, and other sensitive information that is normally sent &#8220;in the clear&#8221; in servers such as telnet and rlogin. SSH as of this writing supports the following encryption algorithms: 3DES, Twofish, Blowfish, Arcfour, CAST128, AES (Rijndael), and DES. SSH now comes with a variety of distributions, so downloading the server and the client should be a pinch. If, however, your distribution lacks a SSH server package, you may download it from the SSH website. SSH is one of the more easier to install packages, so installation should be a breeze. Install the package from your distribution using the appropriate package manager (for example use rpm -i packagename for Redhat-based systems, and dpkg -i packagename for Debian-based systems).</p>
<p>Once installed, SSH should work properly. To test it, you may login to your server by issuing the following command:</p>
<p>ssh -l username 127.0.0.1</p>
<p>Replace &#8220;username&#8221; with your desired user name. If all is working correctly, you will be prompted for a password, and then connected. If this does not work, if you installed SSH from source, and don&#8217;t have an /etc/init.d or /etc/rc.d file for the SSH daemon, you can build one from scratch following the guidelines for Pro-FTPD. The SSH config file (normally located in /etc/ssh or /etc/ssh2) is sshd_config or sshd2_config. An example configuration file looks like the following:</p>
<p># sshd2_config<br />
# SSH 2.0 Server Configuration File</p>
<p>*:<br />
Port 22<br />
ListenAddress 0.0.0.0<br />
Ciphers AnyStd<br />
# Ciphers AnyCipher<br />
# Ciphers AnyStdCipher<br />
# Ciphers 3des<br />
IdentityFile identification<br />
AuthorizationFile authorization<br />
HostKeyFile hostkey<br />
PublicHostKeyFile hostkey.pub<br />
RandomSeedFile random_seed<br />
ForwardAgent yes<br />
ForwardX11 yes<br />
PasswordGuesses 1<br />
MaxConnections 50<br />
PermitRootLogin no<br />
# AllowedAuthentications publickey,password,hostbased<br />
AllowedAuthentications publickey,password<br />
# RequiredAuthentications publickey,password<br />
ForcePTTYAllocation no<br />
VerboseMode no<br />
PrintMotd yes<br />
CheckMail yes<br />
UserConfigDirectory &#8220;%D/.ssh2&#8243;<br />
SyslogFacility AUTH<br />
# SyslogFacility LOCAL7<br />
Ssh1Compatibility yes<br />
Sshd1Path /usr/sbin/sshd1<br />
# AllowHosts localhost, foobar.com, friendly.org<br />
# DenyHosts evil.org, aol.com<br />
# AllowSHosts trusted.host.org<br />
# DenySHosts not.quite.trusted.org<br />
# NoDelay yes<br />
KeepAlive yes<br />
RequireReverseMapping yes<br />
/ UserKnownHosts yes<br />
# subsystem definitions<br />
subsystem-sftp sftp-server</p>
<p>Most of these settings you shouldn&#8217;t have to change from the default. One notable exception is the port that SSH will use. You can change this to any port within the 65535 limit. Also, you might want to change PasswordGuesses from its default (3) to 1. The reason for this is that it deters cracking attempts (the cracker has to make a new connection for each failed password). MaxConnections is a very important setting if this server is going to have any other services on it. MaxConnections helps keep your connections down, so that SSH requests and processes don&#8217;t take up 90% of the server&#8217;s resources. However, there is a downside to it- someone can login to your server the amount of times allowed in MaxConnections, then just leave the sessions logged in, which will prevent other users from logging in. PermitRootLogin is also an important setting, *ALWAYS* set this to no (the default is yes). If you need to login as root, simply create a user with a GID of 0 and UID of 0. This is known as a suid root account. Leaving root with the ability to login leaves a small chance that someone may crack root. SSH1 compatibility is crucial, many people have not yet upgraded (or are aware of the upgrade) to SSH2. AllowHosts and DenyHosts really shouldn&#8217;t be used as a security measure in my opinion. Instead, ipchains or a similar kernel-level firewall should be used instead. However, you may elect to use them, but be warned that when using a application level security measure, exploits in the application can allow denied (or blocked) hosts from connecting anyways. One great thing about SSH is that it comes with the sftp server, which allows encrypting of FTP sessions. Also, no FTP daemons are needed on the server, just the SSH daemon. However, the client must have a SSH package, in order to take advantage of the sftp server.</p>
<p>SSH is an extremely valuable service. It allows encryption of what were traditionally non-traditional services (such as telnet and FTP). This section has only briefly touched on the subject of the SSH server. For more information, read the FAQs and HOW-TOs available at ssh.org, or feel free to visit my website below.</p>
<p><strong>About the Author:</strong></p>
<p><a href="http://hnsg.net">Christopher J. Pace</a> is a <a href="http://linuxconsultant.info">freelance Linux consultant</a> who has worked with Linux since 2001.  He provides <a href="http://linuxconsultant.info/services.html">remote Linux consulting services</a> for Linux servers.</p>
<p>Article Source: <a href="http://www.articlesbase.com/">ArticlesBase.com</a> &#8211; <a title="Installing and Configuring the Secure Shell Server" href="http://www.articlesbase.com/information-technology-articles/installing-and-configuring-the-secure-shell-server-975033.html">Installing and Configuring the Secure Shell Server</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradyconsult.com/blog/?feed=rss2&amp;p=82</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
