<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.xmission.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Deadguy</id>
	<title>XMission Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.xmission.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Deadguy"/>
	<link rel="alternate" type="text/html" href="https://wiki.xmission.com/Special:Contributions/Deadguy"/>
	<updated>2026-05-19T11:06:59Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Template:Important_Announcements&amp;diff=2285</id>
		<title>Template:Important Announcements</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Template:Important_Announcements&amp;diff=2285"/>
		<updated>2009-03-06T23:13:12Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|style=&amp;quot;width:100%; background: #FFF8DD; border: 2px solid #ffcc00; padding: 1em; color: #000000);&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&#039;&#039;&#039;Important Announcements:&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Effective as of March 1st, you must include the area code when dialing local numbers.  XMission dial-up calls will require the area code, so please update your dial up connections immediately.&lt;br /&gt;
|-&lt;br /&gt;
|Visit [[Ten Digit Dialing]] for directions on how to make this important change.&lt;br /&gt;
|-&lt;br /&gt;
|For additional details, visit the [http://www.publicutilities.utah.gov/area-code-overlay.html Utah PSC website.]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=1776</id>
		<title>MySQL FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=1776"/>
		<updated>2008-04-09T20:56:24Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: /* How do I log in to my database? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{archived}}&lt;br /&gt;
==What is SQL?==&lt;br /&gt;
SQL stands for &amp;quot;Structured Query Language&amp;quot;. SQL is the most common  standardized language used to access databases.&lt;br /&gt;
&lt;br /&gt;
XMission uses MySQL, which is a very popular open-source database  management system. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What version of MySQL does XMission use?==&lt;br /&gt;
XMission currently has two versions of MySQL running: version 5.0.24a and version 4.1.11. The current version is also displayed when you log in to the MySQL server. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How much does a database at XMission cost?==&lt;br /&gt;
If you have a Deluxe Hosting or Pro Hosting account, an SQL database  is included in your account package. For any other account type, the charge is $5 per month.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I get a database set up for my account?==&lt;br /&gt;
To add a database to your account, either [mailto:sql@xmission.com email sql@xmission.com] or contact sales. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I log in to my database?==&lt;br /&gt;
Depending on your MySQL version, you will need to connect to a different host. For MySQL version 4.x, the server name is &#039;&#039;mysql-41.xmission.com&#039;&#039;&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: &#039;&#039;mysql.xmission.com&#039;&#039; is the same machine, and will work for legacy purposes.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For MySQL version 5.x the server name is &#039;&#039;mysql-50.xmission.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To use a web interface to access your database, visit https://phpmyadmin.xmission.com/&lt;br /&gt;
&lt;br /&gt;
To connect directly to the database from our shell server:&lt;br /&gt;
#telnet or ssh to &#039;&#039;shell.xmission.com&#039;&#039;&lt;br /&gt;
#&amp;lt;tt&amp;gt;mysql -u acctname -h servername -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
#This will prompt you for a password, which is not necessarily the same as your login password.&lt;br /&gt;
&lt;br /&gt;
For example: to connect to a MySQL version 5.x database, you would use:&lt;br /&gt;
&amp;lt;tt&amp;gt;mysql -u acctname -h mysql-50.xmission.com -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==What can I use to access my database?==&lt;br /&gt;
There isn&#039;t a &amp;quot;recommended&amp;quot; method to access your database, but here  is a list of the more popular programing languages connection methods  which we support. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;perl&#039;&#039;&#039; : DBI module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;python&#039;&#039;&#039; : mysql module or MySQLdb module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;php&#039;&#039;&#039; : php has been compiled with the mysql functions built in &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C&#039;&#039;&#039; : The header and libraries for mysql are installed so #include  &amp;lt;mysql/mysql.h&amp;gt; will need to be present in your source files. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C++&#039;&#039;&#039; : same as C, but we also have mysql++ headers and libraries on  XMission servers. To use this, #include &amp;lt;sqlplus&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Java&#039;&#039;&#039; : JDBC classes are available &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What do I do if I forgot my password?==&lt;br /&gt;
[mailto:sql@xmission.com Email sql@xmission.com] to have  your password reset. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Do I have a size limit (quota) for my database?==&lt;br /&gt;
&lt;br /&gt;
Yes. The size of your database counts against your /home quota, which is  100MB default for most account types. Pro Hosting accounts get 200MB /home  storage, and additional storage can be purchased.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I use stored routines?==&lt;br /&gt;
&lt;br /&gt;
Our MySQL 5.0 server support stored functions, procedures, triggers, and other such routines.  Since it is a shared server, we do not allow users to create or edit their own routines.  If you would like to have a routine installed, please contact support, providing a full copy of the routine you&#039;d like installed.  We will install the routine if we decide the code does not cause any problems or cause an unreasonable support burden.  If you would like more complete control over database routines, please consider our [[VPS]] or [[Colocate]] products.&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about using MySQL?==&lt;br /&gt;
&lt;br /&gt;
Thorough documentation can be found at [http://www.mysql.com MySQL.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Footer}}&lt;br /&gt;
[[Category:Hosting Archives|MySQL FAQ]]&lt;br /&gt;
[[Category:FAQ|MySQL]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Connections&amp;diff=1000</id>
		<title>Connections</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Connections&amp;diff=1000"/>
		<updated>2008-02-29T23:39:07Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://wiki.xmission.com/index.php/Connectivity_Quick_Setup_Information http://wiki.xmission.com/images/0/04/Quicksetup-connectivity.png]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://wiki.xmission.com/index.php/Utopia http://wiki.xmission.com/images/d/d2/Utopia.png]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://wiki.xmission.com/index.php/DSL http://wiki.xmission.com/images/a/ad/Dsl.png]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://wiki.xmission.com/index.php/Dialup http://wiki.xmission.com/images/6/6a/Dialup.png]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{footer}}&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Connections&amp;diff=999</id>
		<title>Connections</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Connections&amp;diff=999"/>
		<updated>2008-02-29T23:38:34Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://wiki.xmission.com/index.php/Connectivity_Quick_Setup_Information http://wiki.xmission.com/images/0/04/Quicksetup-connectivity.png]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://wiki.xmission.com/index.php/Utopia http://wiki.xmission.com/images/d/d2/Utopia.png]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://wiki.xmission.com/index.php/Dialup http://wiki.xmission.com/images/6/6a/Dialup.png]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{footer}}&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Webmail_Filtering&amp;diff=534</id>
		<title>Webmail Filtering</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Webmail_Filtering&amp;diff=534"/>
		<updated>2008-02-13T18:57:53Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==XMission Spam Filtering==&lt;br /&gt;
&lt;br /&gt;
As part of our continued effort in helping XMission customers reduce spam, we have redesigned our user controllable filtering system.  While customers still have the ability to create and customize their own email filters, we have designed four levels of filtering which are easily accessed by visiting the filters page in webmail at https://webmail.xmission.com/filters/ (requires login). We have also created a Spam Quarantine section in webmail where customers can view email recently deleted by their filter rules, to verify that nothing important has been deleted.       &lt;br /&gt;
&lt;br /&gt;
The four levels of filtering available are Whitelist, High, Low, and Off.  Most XMission email accounts are set to the &amp;amp;quot;Low&amp;amp;quot;  filter by default.  While this is helpful, often customers find they want more restrictive filtering enabled. This can now easily be done by selecting the level that best suits their needs.  Each of the levels is described in detail below. Should you wish more control over your filters, you may want to [[Advanced_Filter_Creation|read about creating filters by hand]]. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: It is strongly advised that when making adjustments to your filters you closely watch your Spam Quarantine to view what is being deleted.  If you find mail from a particular sender is being deleted which you wish to receive, you can simply restore their email from the Spam Quarantine and whitelist them by clicking on the &amp;amp;ldquo;whitelist&amp;amp;rdquo; option when you open the email.  Email is stored in Spam Quarantine and can be restored for up to 15 days.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Whitelist&lt;br /&gt;
&lt;br /&gt;
:The whitelist filter is the most aggressive form of filtering available through XMission.  This filter will reject email from any sender whose email address is not listed in your whitelist or your webmail address book.  Whitelisting is a very effective way of filtering spam, but you also run a much higher risk of losing legitimate email when you have this filter enabled.  It requires the most attention and maintenance, as you continually need to make sure people you want to receive mail from are either in your webmail address book or whitelist.  This filter works best for those who receive mail from a small number of individuals.&lt;br /&gt;
&lt;br /&gt;
;High&lt;br /&gt;
&lt;br /&gt;
:The high level filter is a very strict form of filtering.  It will automatically save email from anyone in your webmail address book or whitelist to your inbox, then it applies several filtering rules to eliminate emails which match it&#039;s criteria for spam.  This filter is an effective way of filtering spam but it is recommended that you closely watch the Spam Quarantine for at least the first few weeks you have it enabled.  This will allow you become comfortable with the email it filters, and whitelist any senders you wish to receive mail from whose emails are inadvertently being filtered.        &lt;br /&gt;
&lt;br /&gt;
;Low&lt;br /&gt;
&lt;br /&gt;
:This is the default level of filtering which is turned on for new XMission accounts, if you&amp;amp;rsquo;ve had your account for a number of years, this may not be activated for you already.  The Low level filter catches mostly obvious spam and deletes it.  With this filter you are much less likely to have legitimate email deleted, but more likely to receive some spam.        &lt;br /&gt;
&lt;br /&gt;
:This is a good starting place if you have never used our spam filters before.  By turning on the low level filter you will be able to use the Spam Quarantine to review emails that are being filtered,  and make adjustments as needed.        &lt;br /&gt;
&lt;br /&gt;
;Off&lt;br /&gt;
&lt;br /&gt;
:Turning filtering off is only recommended for advanced users who plan on doing their own spam filtering.  Keep in mind that this only turns per-user filtering off, server-wide filters are still applied.&lt;br /&gt;
&lt;br /&gt;
We also offer a page for with [[What_is_Spam|more info and resources about spam]].&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Webmail_Filtering&amp;diff=533</id>
		<title>Webmail Filtering</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Webmail_Filtering&amp;diff=533"/>
		<updated>2008-02-13T18:56:00Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: New page: ==XMission Spam Filtering==  As part of our continued effort in helping XMission customers reduce spam, we have redesigned our user controllable filtering system.  While customers still ha...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==XMission Spam Filtering==&lt;br /&gt;
&lt;br /&gt;
As part of our continued effort in helping XMission customers reduce spam, we have redesigned our user controllable filtering system.  While customers still have the ability to create and customize their own email filters, we have designed four levels of filtering which are easily accessed by visiting the filters page in webmail at https://webmail.xmission.com/filters/ (requires login). We have also created a Spam Quarantine section in webmail where customers can view email recently deleted by their filter rules, to verify that nothing important has been deleted.&amp;lt;/p&amp;gt;        &lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;The four levels of filtering available are Whitelist, High, Low, and Off.  Most XMission email accounts are set to the &amp;amp;quot;Low&amp;amp;quot;  filter by default.  While this is helpful, often customers find they want more restrictive filtering enabled. This can now easily be done by selecting the level that best suits their needs.  Each of the levels is described in detail below. Should you wish more control over your filters, you may want to [[Advanced_Filter_Creation|read about creating filters by hand]]. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: It is strongly advised that when making adjustments to your filters you closely watch your Spam Quarantine to view what is being deleted.  If you find mail from a particular sender is being deleted which you wish to receive, you can simply restore their email from the Spam Quarantine and whitelist them by clicking on the &amp;amp;ldquo;whitelist&amp;amp;rdquo; option when you open the email.  Email is stored in Spam Quarantine and can be restored for up to 15 days.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Whitelist&lt;br /&gt;
&lt;br /&gt;
:The whitelist filter is the most aggressive form of filtering available through XMission.  This filter will reject email from any sender whose email address is not listed in your whitelist or your webmail address book.  Whitelisting is a very effective way of filtering spam, but you also run a much higher risk of losing legitimate email when you have this filter enabled.  It requires the most attention and maintenance, as you continually need to make sure people you want to receive mail from are either in your webmail address book or whitelist.  This filter works best for those who receive mail from a small number of individuals.&lt;br /&gt;
&lt;br /&gt;
;High&lt;br /&gt;
&lt;br /&gt;
:The high level filter is a very strict form of filtering.  It will automatically save email from anyone in your webmail address book or whitelist to your inbox, then it applies several filtering rules to eliminate emails which match it&#039;s criteria for spam.  This filter is an effective way of filtering spam but it is recommended that you closely watch the Spam Quarantine for at least the first few weeks you have it enabled.  This will allow you become comfortable with the email it filters, and whitelist any senders you wish to receive mail from whose emails are inadvertently being filtered.        &lt;br /&gt;
&lt;br /&gt;
;Low&lt;br /&gt;
&lt;br /&gt;
:This is the default level of filtering which is turned on for new XMission accounts, if you&amp;amp;rsquo;ve had your account for a number of years, this may not be activated for you already.  The Low level filter catches mostly obvious spam and deletes it.  With this filter you are much less likely to have legitimate email deleted, but more likely to receive some spam.&amp;lt;/dd&amp;gt;        &lt;br /&gt;
&lt;br /&gt;
:This is a good starting place if you have never used our spam filters before.  By turning on the low level filter you will be able to use the Spam Quarantine to review emails that are being filtered,  and make adjustments as needed.        &lt;br /&gt;
&lt;br /&gt;
;Off&lt;br /&gt;
&lt;br /&gt;
:Turning filtering off is only recommended for advanced users who plan on doing their own spam filtering.  Keep in mind that this only turns per-user filtering off, server-wide filters are still applied.&lt;br /&gt;
&lt;br /&gt;
We also offer a page for with [[What_is_Spam|more info and resources about spam]].&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=How_Secure_Web_(SSL)_Works&amp;diff=459</id>
		<title>How Secure Web (SSL) Works</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=How_Secure_Web_(SSL)_Works&amp;diff=459"/>
		<updated>2008-02-01T20:16:49Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: Replaced form link with request info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
Most web sites will use SSL encryption for collecting personal  or confidential information. You&#039;ll most often see the use of SSL encryption when purchasing something online or viewing private statistics or documents. You&#039;ll notice that the URL (or web address) will start with https:// instead of http://. Your browser will recognize this is secure. The process is usually very smooth on the client&#039;s side. This may be an option that you&#039;re looking into for your web site hosted by XMission.&lt;br /&gt;
&lt;br /&gt;
In more detail, SSL, Secure Sockets Layer, is the leading security protocol on the Internet. When an SSL session is started, the browser sends its public key to the server so that the server can securely send a secret key to the browser. The browser and server exchange data via secret key encryption during that session.&lt;br /&gt;
&lt;br /&gt;
An SSL certificate is a unique digital ID that can be used to verify the identity of a person, web site, or JavaScript/Java Applet. The certificate always includes a public key, the name of the entity it identifies, an expiration date, the name of the certificate authority (CA) that issued the certificate, the digital signature of the CA, and a serial number. These certificates use public key cryptography to sign and authenticate signatures and are protected by public and private key pairs linked by cryptographic algorithms. These keys have the ability to encrypt and decrypt information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Your Options==&lt;br /&gt;
If you&#039;d like to use SSL encryption for your web site/domain hosted on XMission, you have a few options.&lt;br /&gt;
&lt;br /&gt;
The first, and easiest, would be to use XMission&#039;s certificate. To do this, change the URL&#039;s of the pages you wish to secure to https://www.xmission.com/~username/securepage.html where you replace user name with your XMission user name and securepage.html with the page you wish to secure. This could, however, be a problem for you if you have your own domain name. Reason being, you must use the XMission domain in the URL instead of www.yourdomain.com. For more details about using this method, please refer to the [[SSL Tutorial]]. &lt;br /&gt;
&lt;br /&gt;
If you have your own domain and you do not wish to use the XMission domain in the pages you wish to secure, you may get a certificate signed by XMission. A certificate signed by XMission is free of charge to any XMission customer. Once again, however, there is a problem with this method. Your visitors will be prompted with &amp;quot;Unknown Authority&amp;quot; (or something similar, depending on the browser used) when they first visit the secured pages. This has the possibility of scaring off potential clients or customers that are easily spooked by &amp;quot;hackers&amp;quot; or viruses. A certificate signed by XMission, however, is just as secure as a certificate signed by a public CA. You can request a certificate signed by XMission by filling out the request form.&lt;br /&gt;
&lt;br /&gt;
The last means of using SSL with XMission would be to purchase a signed certificate and key from Verisign or another public CA. When this is done, you will need to upload the signed certificate (public key) and the RSA key (private key) in PEM format. To make this process more secure, you may request that XMission generate the RSA key to be kept on XMission and send you the unsigned certificate. You can then have the certificate signed and returned to XMission with less threat of the RSA key (which will won&#039;t leave XMission&#039;s hands) to be seen by another party.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To request an SSL Certificate, please send an email to [mailto:ssl@xmission.com ssl@xmission.com] with the following information:&lt;br /&gt;
&lt;br /&gt;
* Do you want a certificate signed by XMission, or signed by another CA?&lt;br /&gt;
* Your XMission account name.&lt;br /&gt;
* Name of organization.&lt;br /&gt;
* Which department of this organization is this for?&lt;br /&gt;
* Website to be certified (i.e. www.domain.com)&lt;br /&gt;
* Contact email for website (i.e. webmaster@domain.com)&lt;br /&gt;
* City&lt;br /&gt;
* State&lt;br /&gt;
* Country&lt;br /&gt;
* SSL Certificate notice email address? (this does not have to be the contact address above)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: If you requested that XMission send you a blank certificate to be signed by another CA, the certificate will be emailed to the account you specified as your XMission account name. You&#039;ll need to upload the signed certificate to your home directory and notify us at [mailto:ssl@xmission.com ssl@xmission.com] to complete the process.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Public CA&#039;s===&lt;br /&gt;
Here is a small list of public CA&#039;s you can purchase certificates from (in alphabetical order).&lt;br /&gt;
&lt;br /&gt;
*[http://www.abaecom.com/ ABAecom]&lt;br /&gt;
*[http://www.digsigtrust.com/ Digital Signature Trust Co.]&lt;br /&gt;
*[http://www.e-certify.com/ E-Certify]&lt;br /&gt;
*[http://www.entrust.net/ Entrust]&lt;br /&gt;
*[http://www.equifax.com/ Equifax]&lt;br /&gt;
*[http://www.globalsign.com/ GlobalSign]&lt;br /&gt;
*[http://www.tc-trustcenter.com/ TC Trustcenter]&lt;br /&gt;
*[http://www.thawte.com/ Thawte]&lt;br /&gt;
*[http://www.valicert.com/ Valicert]&lt;br /&gt;
*[http://www.verisign.com/ Verisign]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=General_DSL_Questions&amp;diff=457</id>
		<title>General DSL Questions</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=General_DSL_Questions&amp;diff=457"/>
		<updated>2008-01-24T22:06:28Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: /* Is DSL really on the same line as my phone? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General DSL Questions==&lt;br /&gt;
&lt;br /&gt;
===What is DSL?===&lt;br /&gt;
&lt;br /&gt;
From [http://www.techweb.com/ CMP&#039;s Tech Web], (&#039;&#039;&#039;D&#039;&#039;&#039;igital &#039;&#039;&#039;S&#039;&#039;&#039;ubscriber &#039;&#039;&#039;L&#039;&#039;&#039;ine) A technology that dramatically increases the digital capacity of ordinary telephone lines (the local loops) into the home or office. DSL speeds are very much tied to the distance between the customer and the telco central office. The technology is geared to Internet access with its asymmetric versions (faster downstream than upstream) and short haul connections with symmetric versions (same rate coming and going).&lt;br /&gt;
&lt;br /&gt;
Unlike ISDN, which is also digital but travels through the switched telephone network, DSL provides &amp;quot;always-on&amp;quot; operation. At the telco central office, DSL traffic is aggregated in a unit called the DSL Access Multiplexor (DSLAM) and forwarded to the appropriate ISP or data network.&lt;br /&gt;
&lt;br /&gt;
[[DSL Glossary]]&lt;br /&gt;
&lt;br /&gt;
===What do DSL subscribers gain?===&lt;br /&gt;
&lt;br /&gt;
*High access speeds at an affordable price&lt;br /&gt;
*Avoid voice vs. data conflict on a single line&lt;br /&gt;
*&amp;quot;Always on&amp;quot; connection to the internet&lt;br /&gt;
*Relief from local busy signal&lt;br /&gt;
*Easy to use&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Exactly how fast is DSL?===&lt;br /&gt;
&lt;br /&gt;
Hard to say as it depends on so many factors: Qwest&#039;s implementation of the technology in real world situations, the speed of machines on each end of a connection, bottlenecks along the way, etc. XMission won&#039;t max out our parts of the equation though since we have control over it and its cost-effective technology for us (i.e., no phone line charges and we don&#039;t need to purchase hardware each time we add new customers since it&#039;s all handled over an ATM that we already have in-house). It won&#039;t likely be a full 256kbps (or whatever speed you purchased from Qwest) any more than any other technology reaches its full capacity.&lt;br /&gt;
&lt;br /&gt;
One thing to keep in mind though is this: most people won&#039;t use a fraction of their bandwidth since browsing web pages and using email are sporadic uses of bandwidth and not too bandwidth intensive.&lt;br /&gt;
&lt;br /&gt;
Also, since basic DSL account users aren&#039;t allowed to use server services (even over a DSL Business account), their bandwidth usage will stay down. Some people will get DSL because of the larger, &amp;quot;burstable&amp;quot; capacity so that when they need to download a file or want to browse the web any slowdown won&#039;t be on their side. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL the same speed for upload as it is for download?===&lt;br /&gt;
&lt;br /&gt;
No. This depends upon the type of DSL used but RADSL (Rate Adaptive Digital Subscriber Line), the type available currently in our area, is asymmetric, which means that you can transfer data more quickly in one direction (down) than in the other. At 256k, this difference isn&#039;t very high, but on the top end they reach a 700% disparity. For example, the maximum transfer rates (if you qualify for them) are 7 Megabit downstream and 1 megabit upstream.&lt;br /&gt;
&lt;br /&gt;
This discrepancy illustrates one of the most obvious differences between DSL and frame relay. Obviously, even if you or your company qualifies for the higher bandwidth DSL options, server services over DSL peak at lower upstream rates than frame relay. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL really on the same line as my phone?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yes. The DSL digital signal is running at a much higher frequency on your phone line. We recommend you use filters on your telephones to help prevent any possible interference, though. These filters are available for free with your DSL line service from Qwest.&lt;br /&gt;
&lt;br /&gt;
===Is DSL OS/Platform-limited? (i.e., is it only for Windows)?===&lt;br /&gt;
&lt;br /&gt;
No. While the internal DSL adapter will only work with Windows, the external DSL modem will work with nearly any properly configured network card installed on nearly any operating system.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What are my hardware options?===&lt;br /&gt;
&lt;br /&gt;
You have three options for DSL hardware when ordering your DSL line through Qwest:&lt;br /&gt;
&lt;br /&gt;
Actiontec GT701&lt;br /&gt;
&lt;br /&gt;
Actiontec M1000&lt;br /&gt;
&lt;br /&gt;
2Wire 2700&lt;br /&gt;
&lt;br /&gt;
Some other brands/models are known to work, such as the Zoom X6, and while XMission may have the needed settings listed, we are not able to troubleshoot specific configuration issues.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Getting DSL==&lt;br /&gt;
&lt;br /&gt;
==If DSL is available in my area, does that mean I can get it?==&lt;br /&gt;
&lt;br /&gt;
No. Even if your prefix is serviced, that doesn&#039;t mean your line will qualify. DSL is distance-prohibitive (maximum 15,000-18,000 feet). To find out if your line qualifies, call XMission Sales at 801-539-0852, or Qwest at 1-800-348-1688. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What exactly does &amp;quot;loop-qualify&amp;quot; mean?===&lt;br /&gt;
&lt;br /&gt;
To &amp;quot;Loop Qualify&amp;quot;, your phone line needs to be tested to see if it can pass the strict requirements necessary to pass DSL signals. Currently, the limitations for DSL are:&lt;br /&gt;
*The line cannot have any load coils on it&lt;br /&gt;
*All bridge taps should be counted since too many of these prevent the signal&lt;br /&gt;
*Maximum length of any bridge tap not to exceed 2,000 ft&lt;br /&gt;
*Total bridge tap length not to exceed 6,000 ft&lt;br /&gt;
*You cannot have a DLC(Digital Loop Carrier) between you and your CO (Central Office)&lt;br /&gt;
*You need to be within 15,000 ft of your CO, although you can be up to 18,000 ft if higher quality wire is used in your area&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What is DLC and why can&#039;t I get DSL because of it?===&lt;br /&gt;
&lt;br /&gt;
DSL may not be available in some areas due to digital-loop-carrier (DLC); deployed by your local phone company to make the most out of copper lines already layed out in the streets. DLC is also known by the terms: line concentrator, channel bank, PairGain, SLiC96, SLiC2000 and UDC. Ask your local telephone company repair engineer if this applies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===If already have DSL with another ISP, how can I switch to XMission?===&lt;br /&gt;
&lt;br /&gt;
You&#039;ll need to call Qwest at 1-800-348-1688 and tell them you&#039;d like to switch ISP&#039;s.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Your XMission DSL Account==&lt;br /&gt;
&lt;br /&gt;
===Can I have normal (analog) dial-up with a DSL account too?===&lt;br /&gt;
&lt;br /&gt;
No, you would need to purchase an additional account for this. We are able to offer this service at such low prices because we don&#039;t need to add new phone lines or dial-up hardware. As well, we assign your connection a static IP address but this would prevent you connecting to your account twice. If your DSL line goes down because of technical problems, though, you would be able to connect to XMission while your DSL line is down.&lt;br /&gt;
&lt;br /&gt;
Business DSL accounts cannot use a 2nd line during business hours, as they would normally be allowed, but they can have uncapped DSL line speeds at no additional charge and IP addressing, up to a size 16 subnet, is available upon request. &lt;br /&gt;
&lt;br /&gt;
If you travel, or occasionally connect from more than one place, you can get a $19/month Individual account or a $10/month Email-only account, which includes dial-up. You can, however, disconnect your DSL (by turning off the computer with the &amp;quot;modem&amp;quot; in it or unplugging your router) before you leave and dial up with your DSL account.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What is meant by the term, &amp;quot;shared bandwidth&amp;quot;?===&lt;br /&gt;
&lt;br /&gt;
People will be sharing it in a way that doesn&#039;t guarantee a full pipe to each user all the time. For example, a T1 is comparable to 6 256k connections (6 x 256k = 1.5 MB) but we&#039;ll be selling the equivalent of more than 6 DSL lines for a T1. This isn&#039;t an entirely accurate example but it&#039;s an easy way to get the idea across. For those who have demanding bandwidth needs, frame relay or T1 is highly recommended.&lt;br /&gt;
&lt;br /&gt;
With shared DSL service, you&#039;re not guaranteed bandwidth. We&#039;re not going to oversell DSL services since bandwidth to Our DSL bandwidth is spread across multiple DS3&#039;s, allowing us to readily control growth and avoid saturation. Qwest isn&#039;t price-prohibitive and outgoing traffic from XMission has plenty of headroom. Our router stats page indicates this fact.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How many people will share the bandwidth?===&lt;br /&gt;
&lt;br /&gt;
We [http://stats.xmission.com/routers/public/ monitor] this and simply add bandwidth (up to 45 MegaBit) as needed. Expect to see statistics available online that publicly show our bandwidth usage. But remember that basic DSL is not a guaranteed bandwidth service. We can only offer guaranteed bandwidth with Dedicated Bandwidth accounts such as a Frame Relay. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What, exactly, are &amp;quot;client&amp;quot; and &amp;quot;server&amp;quot; services?===&lt;br /&gt;
&lt;br /&gt;
On the internet, machines generally connect to each other as clients and servers. Client services are what you use when you check email, download a web page or file from FTP, run CUSeeMe or just about any Internet software. Server services describe a situation where a server feeds information out to the Internet. An example of a server would be mail.xmission.com. This is the server XMission clients connect to when they check their email. Server services include the following, for example: web, ftp, game, mail, etc. Should you have further questions as to what qualifies as a server service please give us a call or email support@xmission.com. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Can I run server services over my DSL connection?===&lt;br /&gt;
&lt;br /&gt;
One of the first questions we concerned ourselves about dealt with this issue since XMission has always sought to provide value-added services to its customers and not restrict anything. While the abuses of some can spoil things for everybody, we have found a compromise that allows high bandwidth for all ports but with heavy monitoring. We will be closely monitoring dsl statistics reports and those who go over their bandwidth quota, as mentioned above, will be sent a warning, then restricted. We recommend if you&#039;re running a server for personal use, that you limit the simultaneous connections to just two or three. This allows people to access their machines for work, to do various server services for personal use but prevents saturation of the DSL bandwidth.&lt;br /&gt;
&lt;br /&gt;
If we didn&#039;t closely monitor our DSL accounts then a few people would very likely use the majority of bandwidth allocated to all of our DSL customers. By restricting server traffic, we are able to provide dedicated services at previously unheard of prices. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Will &amp;quot;server services&amp;quot; be blocked or monitored?===&lt;br /&gt;
&lt;br /&gt;
Those concerned about abuse need not worry as we will be closely monitoring bandwidth usage on a per-customer basis. If it&#039;s noted that a certain customer is using more bandwith than they need for personal needs, they will be warned once, and restricted if the high-bandwidth usage doesn&#039;t cease. For most people, DSL offers a larger, burstable pipe that will remove the bottleneck on their end. As most Internet users mainly browse the web and use email, such intermittent use will generally allow for a lot of burstable bandwidth even if many people are sharing the same pipe. As you can well imagine, if XMission didn&#039;t maintain a close eye on server services, a few people running unrestricted web and or ftp servers could quickly hog a large percentage of our DSL bandwidth and ruin it for everyone else. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Will my DSL account be considered a dedicated connection?===&lt;br /&gt;
&lt;br /&gt;
No. DSL accounts are considered burstable to your purchased bandwidth from Qwest, but is not considered a dedicated account. Information on business-level dedicated accounts can be found at http://www.xmission.com/dedicated&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Can I associate a Domain Name with my DSL account?===&lt;br /&gt;
&lt;br /&gt;
You can do this with a business account at no additional charge. If you have a personal DSL account, XMission charges an additional $7 a month for primary and secondary DNS for one domain. If you&#039;re just looking to have a name associated with your IP address, though, you can have your own machine name associated with XMission&#039;s domain like this: &amp;lt;tt&amp;gt;name.dsl.xmission.com&amp;lt;/tt&amp;gt;. You can choose whichever name you&#039;d like but it defaults to your account name if you don&#039;t have a preference. Contact support@xmission.com for more details. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using DSL/Help==&lt;br /&gt;
&lt;br /&gt;
===What are some useful phone numbers in case I have line problems?===&lt;br /&gt;
&lt;br /&gt;
While we can&#039;t guarantee that these numbers will remain in service, or work for your particular needs, they should be helpful for many:&lt;br /&gt;
:Qwest installation: 1-800-348-1688&lt;br /&gt;
:Qwest line repair: 1-800-234-XDSL&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I FTP through a non-standard port through a firewall?===&lt;br /&gt;
&lt;br /&gt;
To ftp to a non-standard port with cute-ftp, select:ftp, settings, options, firewall tab, check PASV mode and check the &#039;firewall access&#039; box. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I use ICQ through a socks5 proxy?===&lt;br /&gt;
&lt;br /&gt;
Using XMission&#039;s socks5 proxy server will make it easier for people to reach you via ICQ. To use it, simply follow these steps:&lt;br /&gt;
#Go to preferences&lt;br /&gt;
#Open the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connection&amp;lt;/span&amp;gt; tab&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;I am behind a firewall or proxy&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Firewall Settings&amp;lt;/span&amp;gt; button&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;I am using a SOCKS5 proxy server&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#Enter SOCKS5 Host: socks.xmission.com&lt;br /&gt;
#Enter SOCKS5 Port: 1080&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Check My FIREWALL/Proxy Setting&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Done&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also use this with AOL Instant Mesanger. Under &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Options&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connection&amp;lt;/span&amp;gt;, set the proxy protocal to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;SOCKS5&amp;lt;/span&amp;gt;, the proxy to &amp;quot;socks.xmission.com&amp;quot;, and the port to &amp;quot;1080&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you are using an IRC client like mIRC that supports firewalls, you can again use the socks proxy server. In mIRC you goto &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Setup&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Firewall&amp;lt;/span&amp;gt;. Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Use SOCKS firewall&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Socks5&amp;lt;/span&amp;gt;, put &amp;quot;socks.xmission.com&amp;quot; for the host, &amp;quot;1080&amp;quot; for the port, and check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Initiate DCCs through firewall&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I set up my own firewall?===&lt;br /&gt;
&lt;br /&gt;
If you have the external Cisco 678, there are filtering options that come with it. There are instructions in the manual that came with the router for doing this. &lt;br /&gt;
&lt;br /&gt;
Another resource that might be helpful is located at http://www.users.uswest.net/~rlutton/ADSL/. This is a good, concise resource for some basic info about the Cisco 675 and its NAT capabilities. It also explains basic security features that the casual home user can implement if so inclined.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I play games through my DSL router (Cisco 678) when I have NAT enabled?===&lt;br /&gt;
&lt;br /&gt;
Many customers have found out that the Network Address Translation (NAT) functions of the Cisco 675 External DSL Router interfere with interactive internet games. Cisco has overcome this problem with the release of the v2.4.8 CBOS operating system. You can download this update from ftp.xmission.com (using your XMission username/password), and then going to /archive/dsl.&lt;br /&gt;
&lt;br /&gt;
Download the code, read the &amp;quot;readme&amp;quot; file, upgrade your router, and then send the following command for games to work:&lt;br /&gt;
&amp;lt;tt&amp;gt;set nat entry add 10.0.0.2&amp;lt;/tt&amp;gt;&lt;br /&gt;
(or the IP address of the machine you&#039;re playing games on).&lt;br /&gt;
&amp;lt;tt&amp;gt;set nat timeout udp 360&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
More information about NAT entry commands can be found here in the CBOS section:&lt;br /&gt;
http://www.cisco.com/univercd/cc/td/doc/product/dsl_prod/c600s/index.htm&lt;br /&gt;
&lt;br /&gt;
===Why do I see a lot of ICMP traffic hitting my DSL line?===&lt;br /&gt;
&lt;br /&gt;
ICMP provides error reporting, congesting reporting and first-hop gateway redirection. In addition to being used for ping, ICMP is used to as a message control and error-reporting protocol between a host server and a gateway to the Internet. It is normal to see ICMP traffic. However, if you&#039;re noticing a great deal of echo/echo-reply traffic (echo/echo-reply is what ping is), to the extent that it&#039;s begining to consume your bandwidth, you should probably [http://www.xmission.com/help/contact/ contact technical support]. For more in depth information about ICMP and how it&#039;s used, please refer to [http://www.ietf.org/rfc/rfc0792.txt RFC 792].  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=General_DSL_Questions&amp;diff=455</id>
		<title>General DSL Questions</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=General_DSL_Questions&amp;diff=455"/>
		<updated>2008-01-24T20:15:04Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: removed dead links to Qwest, updated phone numbers&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General DSL Questions==&lt;br /&gt;
&lt;br /&gt;
===What is DSL?===&lt;br /&gt;
&lt;br /&gt;
From [http://www.techweb.com/ CMP&#039;s Tech Web], (&#039;&#039;&#039;D&#039;&#039;&#039;igital &#039;&#039;&#039;S&#039;&#039;&#039;ubscriber &#039;&#039;&#039;L&#039;&#039;&#039;ine) A technology that dramatically increases the digital capacity of ordinary telephone lines (the local loops) into the home or office. DSL speeds are very much tied to the distance between the customer and the telco central office. The technology is geared to Internet access with its asymmetric versions (faster downstream than upstream) and short haul connections with symmetric versions (same rate coming and going).&lt;br /&gt;
&lt;br /&gt;
Unlike ISDN, which is also digital but travels through the switched telephone network, DSL provides &amp;quot;always-on&amp;quot; operation. At the telco central office, DSL traffic is aggregated in a unit called the DSL Access Multiplexor (DSLAM) and forwarded to the appropriate ISP or data network.&lt;br /&gt;
&lt;br /&gt;
[[DSL Glossary]]&lt;br /&gt;
&lt;br /&gt;
===What do DSL subscribers gain?===&lt;br /&gt;
&lt;br /&gt;
*High access speeds at an affordable price&lt;br /&gt;
*Avoid voice vs. data conflict on a single line&lt;br /&gt;
*&amp;quot;Always on&amp;quot; connection to the internet&lt;br /&gt;
*Relief from local busy signal&lt;br /&gt;
*Easy to use&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Exactly how fast is DSL?===&lt;br /&gt;
&lt;br /&gt;
Hard to say as it depends on so many factors: Qwest&#039;s implementation of the technology in real world situations, the speed of machines on each end of a connection, bottlenecks along the way, etc. XMission won&#039;t max out our parts of the equation though since we have control over it and its cost-effective technology for us (i.e., no phone line charges and we don&#039;t need to purchase hardware each time we add new customers since it&#039;s all handled over an ATM that we already have in-house). It won&#039;t likely be a full 256kbps (or whatever speed you purchased from Qwest) any more than any other technology reaches its full capacity.&lt;br /&gt;
&lt;br /&gt;
One thing to keep in mind though is this: most people won&#039;t use a fraction of their bandwidth since browsing web pages and using email are sporadic uses of bandwidth and not too bandwidth intensive.&lt;br /&gt;
&lt;br /&gt;
Also, since basic DSL account users aren&#039;t allowed to use server services (even over a DSL Business account), their bandwidth usage will stay down. Some people will get DSL because of the larger, &amp;quot;burstable&amp;quot; capacity so that when they need to download a file or want to browse the web any slowdown won&#039;t be on their side. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL the same speed for upload as it is for download?===&lt;br /&gt;
&lt;br /&gt;
No. This depends upon the type of DSL used but RADSL (Rate Adaptive Digital Subscriber Line), the type available currently in our area, is asymmetric, which means that you can transfer data more quickly in one direction (down) than in the other. At 256k, this difference isn&#039;t very high, but on the top end they reach a 700% disparity. For example, the maximum transfer rates (if you qualify for them) are 7 Megabit downstream and 1 megabit upstream.&lt;br /&gt;
&lt;br /&gt;
This discrepancy illustrates one of the most obvious differences between DSL and frame relay. Obviously, even if you or your company qualifies for the higher bandwidth DSL options, server services over DSL peak at lower upstream rates than frame relay. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL really on the same line as my phone?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yes. The DSL digital signal is running at a much higher frequency on your phone line. We recommend you use filters on your telephones to help prevent any possible interference, though. These filters are available for free with your DSL line service from [https://orderdsl.qwest.com/order/welcome.asp Qwest].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL OS/Platform-limited? (i.e., is it only for Windows)?===&lt;br /&gt;
&lt;br /&gt;
No. While the internal DSL adapter will only work with Windows, the external DSL modem will work with nearly any properly configured network card installed on nearly any operating system.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What are my hardware options?===&lt;br /&gt;
&lt;br /&gt;
You have three options for DSL hardware when ordering your DSL line through Qwest:&lt;br /&gt;
&lt;br /&gt;
Actiontec GT701&lt;br /&gt;
&lt;br /&gt;
Actiontec M1000&lt;br /&gt;
&lt;br /&gt;
2Wire 2700&lt;br /&gt;
&lt;br /&gt;
Some other brands/models are known to work, such as the Zoom X6, and while XMission may have the needed settings listed, we are not able to troubleshoot specific configuration issues.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Getting DSL==&lt;br /&gt;
&lt;br /&gt;
==If DSL is available in my area, does that mean I can get it?==&lt;br /&gt;
&lt;br /&gt;
No. Even if your prefix is serviced, that doesn&#039;t mean your line will qualify. DSL is distance-prohibitive (maximum 15,000-18,000 feet). To find out if your line qualifies, call XMission Sales at 801-539-0852, or Qwest at 1-800-348-1688. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What exactly does &amp;quot;loop-qualify&amp;quot; mean?===&lt;br /&gt;
&lt;br /&gt;
To &amp;quot;Loop Qualify&amp;quot;, your phone line needs to be tested to see if it can pass the strict requirements necessary to pass DSL signals. Currently, the limitations for DSL are:&lt;br /&gt;
*The line cannot have any load coils on it&lt;br /&gt;
*All bridge taps should be counted since too many of these prevent the signal&lt;br /&gt;
*Maximum length of any bridge tap not to exceed 2,000 ft&lt;br /&gt;
*Total bridge tap length not to exceed 6,000 ft&lt;br /&gt;
*You cannot have a DLC(Digital Loop Carrier) between you and your CO (Central Office)&lt;br /&gt;
*You need to be within 15,000 ft of your CO, although you can be up to 18,000 ft if higher quality wire is used in your area&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What is DLC and why can&#039;t I get DSL because of it?===&lt;br /&gt;
&lt;br /&gt;
DSL may not be available in some areas due to digital-loop-carrier (DLC); deployed by your local phone company to make the most out of copper lines already layed out in the streets. DLC is also known by the terms: line concentrator, channel bank, PairGain, SLiC96, SLiC2000 and UDC. Ask your local telephone company repair engineer if this applies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===If already have DSL with another ISP, how can I switch to XMission?===&lt;br /&gt;
&lt;br /&gt;
You&#039;ll need to call Qwest at 1-800-348-1688 and tell them you&#039;d like to switch ISP&#039;s.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Your XMission DSL Account==&lt;br /&gt;
&lt;br /&gt;
===Can I have normal (analog) dial-up with a DSL account too?===&lt;br /&gt;
&lt;br /&gt;
No, you would need to purchase an additional account for this. We are able to offer this service at such low prices because we don&#039;t need to add new phone lines or dial-up hardware. As well, we assign your connection a static IP address but this would prevent you connecting to your account twice. If your DSL line goes down because of technical problems, though, you would be able to connect to XMission while your DSL line is down.&lt;br /&gt;
&lt;br /&gt;
Business DSL accounts cannot use a 2nd line during business hours, as they would normally be allowed, but they can have uncapped DSL line speeds at no additional charge and IP addressing, up to a size 16 subnet, is available upon request. &lt;br /&gt;
&lt;br /&gt;
If you travel, or occasionally connect from more than one place, you can get a $19/month Individual account or a $10/month Email-only account, which includes dial-up. You can, however, disconnect your DSL (by turning off the computer with the &amp;quot;modem&amp;quot; in it or unplugging your router) before you leave and dial up with your DSL account.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What is meant by the term, &amp;quot;shared bandwidth&amp;quot;?===&lt;br /&gt;
&lt;br /&gt;
People will be sharing it in a way that doesn&#039;t guarantee a full pipe to each user all the time. For example, a T1 is comparable to 6 256k connections (6 x 256k = 1.5 MB) but we&#039;ll be selling the equivalent of more than 6 DSL lines for a T1. This isn&#039;t an entirely accurate example but it&#039;s an easy way to get the idea across. For those who have demanding bandwidth needs, frame relay or T1 is highly recommended.&lt;br /&gt;
&lt;br /&gt;
With shared DSL service, you&#039;re not guaranteed bandwidth. We&#039;re not going to oversell DSL services since bandwidth to Our DSL bandwidth is spread across multiple DS3&#039;s, allowing us to readily control growth and avoid saturation. Qwest isn&#039;t price-prohibitive and outgoing traffic from XMission has plenty of headroom. Our router stats page indicates this fact.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How many people will share the bandwidth?===&lt;br /&gt;
&lt;br /&gt;
We [http://stats.xmission.com/routers/public/ monitor] this and simply add bandwidth (up to 45 MegaBit) as needed. Expect to see statistics available online that publicly show our bandwidth usage. But remember that basic DSL is not a guaranteed bandwidth service. We can only offer guaranteed bandwidth with Dedicated Bandwidth accounts such as a Frame Relay. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What, exactly, are &amp;quot;client&amp;quot; and &amp;quot;server&amp;quot; services?===&lt;br /&gt;
&lt;br /&gt;
On the internet, machines generally connect to each other as clients and servers. Client services are what you use when you check email, download a web page or file from FTP, run CUSeeMe or just about any Internet software. Server services describe a situation where a server feeds information out to the Internet. An example of a server would be mail.xmission.com. This is the server XMission clients connect to when they check their email. Server services include the following, for example: web, ftp, game, mail, etc. Should you have further questions as to what qualifies as a server service please give us a call or email support@xmission.com. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Can I run server services over my DSL connection?===&lt;br /&gt;
&lt;br /&gt;
One of the first questions we concerned ourselves about dealt with this issue since XMission has always sought to provide value-added services to its customers and not restrict anything. While the abuses of some can spoil things for everybody, we have found a compromise that allows high bandwidth for all ports but with heavy monitoring. We will be closely monitoring dsl statistics reports and those who go over their bandwidth quota, as mentioned above, will be sent a warning, then restricted. We recommend if you&#039;re running a server for personal use, that you limit the simultaneous connections to just two or three. This allows people to access their machines for work, to do various server services for personal use but prevents saturation of the DSL bandwidth.&lt;br /&gt;
&lt;br /&gt;
If we didn&#039;t closely monitor our DSL accounts then a few people would very likely use the majority of bandwidth allocated to all of our DSL customers. By restricting server traffic, we are able to provide dedicated services at previously unheard of prices. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Will &amp;quot;server services&amp;quot; be blocked or monitored?===&lt;br /&gt;
&lt;br /&gt;
Those concerned about abuse need not worry as we will be closely monitoring bandwidth usage on a per-customer basis. If it&#039;s noted that a certain customer is using more bandwith than they need for personal needs, they will be warned once, and restricted if the high-bandwidth usage doesn&#039;t cease. For most people, DSL offers a larger, burstable pipe that will remove the bottleneck on their end. As most Internet users mainly browse the web and use email, such intermittent use will generally allow for a lot of burstable bandwidth even if many people are sharing the same pipe. As you can well imagine, if XMission didn&#039;t maintain a close eye on server services, a few people running unrestricted web and or ftp servers could quickly hog a large percentage of our DSL bandwidth and ruin it for everyone else. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Will my DSL account be considered a dedicated connection?===&lt;br /&gt;
&lt;br /&gt;
No. DSL accounts are considered burstable to your purchased bandwidth from Qwest, but is not considered a dedicated account. Information on business-level dedicated accounts can be found at http://www.xmission.com/dedicated&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Can I associate a Domain Name with my DSL account?===&lt;br /&gt;
&lt;br /&gt;
You can do this with a business account at no additional charge. If you have a personal DSL account, XMission charges an additional $7 a month for primary and secondary DNS for one domain. If you&#039;re just looking to have a name associated with your IP address, though, you can have your own machine name associated with XMission&#039;s domain like this: &amp;lt;tt&amp;gt;name.dsl.xmission.com&amp;lt;/tt&amp;gt;. You can choose whichever name you&#039;d like but it defaults to your account name if you don&#039;t have a preference. Contact support@xmission.com for more details. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using DSL/Help==&lt;br /&gt;
&lt;br /&gt;
===What are some useful phone numbers in case I have line problems?===&lt;br /&gt;
&lt;br /&gt;
While we can&#039;t guarantee that these numbers will remain in service, or work for your particular needs, they should be helpful for many:&lt;br /&gt;
:Qwest installation: 1-800-348-1688&lt;br /&gt;
:Qwest line repair: 1-800-234-XDSL&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I FTP through a non-standard port through a firewall?===&lt;br /&gt;
&lt;br /&gt;
To ftp to a non-standard port with cute-ftp, select:ftp, settings, options, firewall tab, check PASV mode and check the &#039;firewall access&#039; box. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I use ICQ through a socks5 proxy?===&lt;br /&gt;
&lt;br /&gt;
Using XMission&#039;s socks5 proxy server will make it easier for people to reach you via ICQ. To use it, simply follow these steps:&lt;br /&gt;
#Go to preferences&lt;br /&gt;
#Open the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connection&amp;lt;/span&amp;gt; tab&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;I am behind a firewall or proxy&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Firewall Settings&amp;lt;/span&amp;gt; button&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;I am using a SOCKS5 proxy server&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#Enter SOCKS5 Host: socks.xmission.com&lt;br /&gt;
#Enter SOCKS5 Port: 1080&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Check My FIREWALL/Proxy Setting&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Done&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also use this with AOL Instant Mesanger. Under &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Options&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connection&amp;lt;/span&amp;gt;, set the proxy protocal to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;SOCKS5&amp;lt;/span&amp;gt;, the proxy to &amp;quot;socks.xmission.com&amp;quot;, and the port to &amp;quot;1080&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you are using an IRC client like mIRC that supports firewalls, you can again use the socks proxy server. In mIRC you goto &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Setup&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Firewall&amp;lt;/span&amp;gt;. Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Use SOCKS firewall&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Socks5&amp;lt;/span&amp;gt;, put &amp;quot;socks.xmission.com&amp;quot; for the host, &amp;quot;1080&amp;quot; for the port, and check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Initiate DCCs through firewall&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I set up my own firewall?===&lt;br /&gt;
&lt;br /&gt;
If you have the external Cisco 678, there are filtering options that come with it. There are instructions in the manual that came with the router for doing this. &lt;br /&gt;
&lt;br /&gt;
Another resource that might be helpful is located at http://www.users.uswest.net/~rlutton/ADSL/. This is a good, concise resource for some basic info about the Cisco 675 and its NAT capabilities. It also explains basic security features that the casual home user can implement if so inclined.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I play games through my DSL router (Cisco 678) when I have NAT enabled?===&lt;br /&gt;
&lt;br /&gt;
Many customers have found out that the Network Address Translation (NAT) functions of the Cisco 675 External DSL Router interfere with interactive internet games. Cisco has overcome this problem with the release of the v2.4.8 CBOS operating system. You can download this update from ftp.xmission.com (using your XMission username/password), and then going to /archive/dsl.&lt;br /&gt;
&lt;br /&gt;
Download the code, read the &amp;quot;readme&amp;quot; file, upgrade your router, and then send the following command for games to work:&lt;br /&gt;
&amp;lt;tt&amp;gt;set nat entry add 10.0.0.2&amp;lt;/tt&amp;gt;&lt;br /&gt;
(or the IP address of the machine you&#039;re playing games on).&lt;br /&gt;
&amp;lt;tt&amp;gt;set nat timeout udp 360&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
More information about NAT entry commands can be found here in the CBOS section:&lt;br /&gt;
http://www.cisco.com/univercd/cc/td/doc/product/dsl_prod/c600s/index.htm&lt;br /&gt;
&lt;br /&gt;
===Why do I see a lot of ICMP traffic hitting my DSL line?===&lt;br /&gt;
&lt;br /&gt;
ICMP provides error reporting, congesting reporting and first-hop gateway redirection. In addition to being used for ping, ICMP is used to as a message control and error-reporting protocol between a host server and a gateway to the Internet. It is normal to see ICMP traffic. However, if you&#039;re noticing a great deal of echo/echo-reply traffic (echo/echo-reply is what ping is), to the extent that it&#039;s begining to consume your bandwidth, you should probably [http://www.xmission.com/help/contact/ contact technical support]. For more in depth information about ICMP and how it&#039;s used, please refer to [http://www.ietf.org/rfc/rfc0792.txt RFC 792].  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=WRT54GL_Single_IP_Setup&amp;diff=264</id>
		<title>WRT54GL Single IP Setup</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=WRT54GL_Single_IP_Setup&amp;diff=264"/>
		<updated>2007-09-12T22:15:34Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Connect the Ethernet cable from the UTOPIA Access Portal to the internet port on your Linksys WRT54GL.&lt;br /&gt;
#Connect an Ethernet cable from the Ethernet port on your computer to one of the lan ports on your Linksys WRT54GL.&lt;br /&gt;
#Open your web browser, you will most likely get an XMission Welcome screen.  In the address bar, type 192.168.1.1 and press the &amp;lt;tt&amp;gt;Enter&amp;lt;/tt&amp;gt; key on your keyboard.&lt;br /&gt;
#In the &#039;&#039;Internet Connection Type&#039;&#039; drop down box, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;PPPoE&amp;lt;/span&amp;gt;.&lt;br /&gt;
#In the &#039;&#039;User Name&#039;&#039; field, enter your XMission user name.&lt;br /&gt;
#In the &#039;&#039;Password&#039;&#039; field, enter your XMission password.&lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save Settings&amp;lt;/span&amp;gt; button at the bottom.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/linksys/wrt54gsingle.png&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=DSL_2Wire_2700HG_Multiple_IP_Setup&amp;diff=249</id>
		<title>DSL 2Wire 2700HG Multiple IP Setup</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=DSL_2Wire_2700HG_Multiple_IP_Setup&amp;diff=249"/>
		<updated>2007-08-01T21:55:26Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Enter &amp;lt;tt&amp;gt;192.168.0.1&amp;lt;/tt&amp;gt; in the address bar of your web browser to open the 2-Wire home page. Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced Configuration Settings&amp;lt;/span&amp;gt; link in the lower right corner.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_1.png&lt;br /&gt;
#Select your Time Zone from the drop-down.&lt;br /&gt;
#Select the radio button next to &#039;&#039;PPP Mode&#039;&#039;.&lt;br /&gt;
#In the &#039;&#039;Connection Type&#039;&#039; drop-down list, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;PPPoA&amp;lt;/span&amp;gt; then enter your XMission username and password in the spaces provided.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_2.png&lt;br /&gt;
#Under the &#039;&#039;Addressing&#039;&#039; area, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Unnumbered Mode&amp;lt;/span&amp;gt;.&lt;br /&gt;
#In the &#039;&#039;Gateway IP Address&#039;&#039; field, enter the first usable IP address in the subnet assigned to you.&lt;br /&gt;
#In the &#039;&#039;Subnet Mask&#039;&#039; field, enter the subnet mask you were given.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_3.png&lt;br /&gt;
#Scroll down the page to the &#039;&#039;DNS Server&#039;&#039; area.&lt;br /&gt;
#Select the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Specify DNS Server Settings&amp;lt;/span&amp;gt; radio button and enter &amp;lt;tt&amp;gt;198.60.22.2&amp;lt;/tt&amp;gt; for the &#039;&#039;Primary DNS&#039;&#039; and &amp;lt;tt&amp;gt;198.60.22.22&amp;lt;/tt&amp;gt; in the &#039;&#039;Secondary DNS&#039;&#039; field.  Then click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_4.png&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Home&amp;lt;/span&amp;gt;.  Then click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Home Network&amp;lt;/span&amp;gt; image.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_5.png&lt;br /&gt;
#From Home Network click on &amp;lt;span class=&amp;quot;click&amp;quot;&amp;gt;Advanced Settings&amp;lt;/span&amp;gt;&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: Ensure that the machine you want to specify the public IP to is connected successfully to the 2wire modem.&amp;lt;/div&amp;gt;&lt;br /&gt;
#In the &#039;&#039;Device List&#039;&#039; section, click on &amp;lt;span class=&amp;quot;click&amp;quot;&amp;gt;Edit Address Allocation&amp;lt;/span&amp;gt;&lt;br /&gt;
#Find the correct computer or device you are attempting to map a static IP address to.  Select &#039;&#039;DHCP Public: &amp;lt;public ip address&amp;gt;&#039;&#039; from the drop down menu next to the device.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_6.png&lt;br /&gt;
#After you have finished assigning all the devices you would like to have static IPs, click on &amp;lt;span class=&amp;quot;click&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt;.&lt;br /&gt;
#After saving changes to the &#039;&#039;Address Allocation Settings&#039;&#039;, ensure the device you assigned the address to is utilizing DHCP to lease an address.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: From here on you can use the built-in Firewall to forward ports to the device(s).&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Your DSL modem should now display a green light on Internet.  Your configuration is complete.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Style_Guide&amp;diff=247</id>
		<title>Style Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Style_Guide&amp;diff=247"/>
		<updated>2007-08-01T19:59:36Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Items that may actually be clicked on (keywords: &#039;click&#039;, &#039;select&#039;), and items that precede items to be selected or typed in (keywords: &#039;where it says &amp;quot;blah&amp;quot;, type&#039;) should be wrapped in&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;span class=&amp;quot;button&amp;quot;&amp;amp;gt;&amp;amp;lt;/span&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Items that users may type in should be wrapped in&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;tt&amp;amp;gt;&amp;amp;lt;/tt&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Examples, such as filenames, usernames, and areas or subsections of a display should be wrapped in&lt;br /&gt;
&amp;lt;pre&amp;gt;&#039;&#039; &#039;&#039;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Toggles or checkboxes should be wrapped in&lt;br /&gt;
&amp;lt;pre&amp;gt;&#039;&#039;&#039; &#039;&#039;&#039;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Items such as web addresses that are presented for example, but are not actual destinations should be wrapped in&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;pre&amp;amp;gt;&amp;amp;lt;/pre&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Brief asides such as notes to users should be wrapped in&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;amp;gt;&amp;amp;lt;/div&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Such notes should have the word &#039;Note&#039; presented in bold with a colon and a space&lt;br /&gt;
&amp;lt;pre&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;:  &amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CHECKLIST:&lt;br /&gt;
&lt;br /&gt;
All headers are properly denoted&lt;br /&gt;
All pages have at least one category&lt;br /&gt;
All images have been stripped of their &amp;lt;pre&amp;gt;&amp;amp;lt;img src=&amp;quot; &amp;quot; /&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Contact_Information&amp;diff=243</id>
		<title>Contact Information</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Contact_Information&amp;diff=243"/>
		<updated>2007-07-31T18:01:29Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: Protected &amp;quot;Contact Email Addresses&amp;quot; [edit=sysop:move=sysop]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Use the following email addresses to contact XMission staff:&lt;br /&gt;
&lt;br /&gt;
*[mailto:support@xmission.com support@xmission.com] - answers to most technical questions concerning your account&lt;br /&gt;
*[mailto:info@xmission.com info@xmission.com] - general account information&lt;br /&gt;
*[mailto:sales@xmission.com sales@xmission.com] - contact xmission sales&lt;br /&gt;
*[mailto:domains@xmission.com domains@xmission.com] - domains and virtual domain web hosting support&lt;br /&gt;
*[mailto:accounting@xmission.com accounting@xmission.com] - account balances and status &lt;br /&gt;
*[mailto:webmaster@xmission.com webmaster@xmission.com] - www and html support&lt;br /&gt;
*[mailto:postmaster@xmission.com postmaster@xmission.com] - system-wide email problems&lt;br /&gt;
*[mailto:spam@xmission.com spam@xmission.com] - to forward, with headers, spam (i.e., unsolicited email) &#039;&#039;&#039;sent to&#039;&#039;&#039; XMission subscribers to be added to filters&lt;br /&gt;
*[mailto:abuse@xmission.com abuse@xmission.com] - report spam (i.e., unsolicited email) problems &#039;&#039;&#039;originating from&#039;&#039;&#039; XMission&lt;br /&gt;
*[mailto:routes@xmission.com routes@xmission.com] - network routing problems&lt;br /&gt;
*[mailto:news@xmission.com news@xmission.com] - newsfeeds or general news concerns&lt;br /&gt;
*[mailto:listmaster@xmission.com listmaster@xmission.com] - mailing list support&lt;br /&gt;
*[mailto:admin@fragfarm.com admin@fragfarm.com] - information and feedback concerning the game servers hosted at XMission&lt;br /&gt;
*[mailto:peering@xmission.com peering@xmission.com] - network peering requests and problems&lt;br /&gt;
*[mailto:sql@xmission.com sql@xmission.com] - sql and php support&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=DSL_Cisco_67x_Password_Change&amp;diff=241</id>
		<title>DSL Cisco 67x Password Change</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=DSL_Cisco_67x_Password_Change&amp;diff=241"/>
		<updated>2007-07-30T17:40:16Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We recommend you update your Cisco firmware to provide the maximum amount of security. Read more about [[Upgrading Cisco]]s.&lt;br /&gt;
&lt;br /&gt;
You will need connect the management serial cable that came with  your Cisco. It will need to be connected to the &#039;&#039;MGMT&#039;&#039; port on the  back of the Cisco and a serial port on your computer. You will then  need to connect to the Cisco with terminal software (e.g: [[Hyperterm]],  ZTerm, Minicomm, Telix). The speed the terminal software will  communicate with the Cisco will be either 9600 or 38400, no software  or hardware handshaking.&lt;br /&gt;
&lt;br /&gt;
#At the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password&amp;lt;/span&amp;gt; prompt enter your routers exec password.&lt;br /&gt;
#Type &amp;quot;enable&amp;quot; and press the Enter key.&lt;br /&gt;
#Enter your enable password.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: If you do not remember your passwords you can try pressing enter at the prompts without entering anything. It is possible you do not have a password set on your router. If this doesn&#039;t work you will need to call our technical support staff and have them walk you through reseting the configuration on your router.&amp;lt;/div&amp;gt;&lt;br /&gt;
#Type &amp;lt;tt&amp;gt;set ppp wan0-0 password&amp;lt;/tt&amp;gt; followed by a space and then your new password.&lt;br /&gt;
#Enter &amp;lt;tt&amp;gt;write&amp;lt;/tt&amp;gt;.&lt;br /&gt;
#Enter &amp;lt;tt&amp;gt;reboot&amp;lt;/tt&amp;gt;.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: At this point the password has been changed on your Cisco and it is rebooting so the changes take effect. Once the WAN link light becomes solid you should be able to access the Internet.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:DSL]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=DSL_2Wire_2700HG_Multiple_IP_Setup&amp;diff=240</id>
		<title>DSL 2Wire 2700HG Multiple IP Setup</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=DSL_2Wire_2700HG_Multiple_IP_Setup&amp;diff=240"/>
		<updated>2007-07-30T15:24:14Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Enter &amp;lt;tt&amp;gt;192.168.0.1&amp;lt;/tt&amp;gt; in the address bar of your web browser to open the 2-Wire home page. Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced Configuration Settings&amp;lt;/span&amp;gt; link in the lower right corner.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_1.png&lt;br /&gt;
#Select your Time Zone from the drop-down.&lt;br /&gt;
#Select the radio button next to &#039;&#039;PPP Mode&#039;&#039;.&lt;br /&gt;
#In the &#039;&#039;Connection Type&#039;&#039; drop-down list, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;PPPoA&amp;lt;/span&amp;gt; then enter your XMission username and password in the spaces provided.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_2.png&lt;br /&gt;
#Under the &#039;&#039;Addressing&#039;&#039; area, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Unnumbered Mode&amp;lt;/span&amp;gt;.&lt;br /&gt;
#In the &#039;&#039;Gateway IP Address&#039;&#039; field, enter the first usable IP address in the subnet assigned to you.&lt;br /&gt;
#In the &#039;&#039;Subnet Mask&#039;&#039; field, enter the subnet mask you were given.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_3.png&lt;br /&gt;
#Scroll down the page to the &#039;&#039;DNS Server&#039;&#039; area.&lt;br /&gt;
#Select the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Specify DNS Server Settings&amp;lt;/span&amp;gt; radio button and enter &amp;lt;tt&amp;gt;198.60.22.2&amp;lt;/tt&amp;gt; for the &#039;&#039;Primary DNS&#039;&#039; and &amp;lt;tt&amp;gt;198.60.22.22&amp;lt;/tt&amp;gt; in the &#039;&#039;Secondary DNS&#039;&#039; field.  Then click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wiresubnet_4.png&lt;br /&gt;
&lt;br /&gt;
Your DSL modem should now display a green light on Internet.  Your configuration is complete.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=DSL_2Wire_2700HG_Single_IP_Setup&amp;diff=239</id>
		<title>DSL 2Wire 2700HG Single IP Setup</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=DSL_2Wire_2700HG_Single_IP_Setup&amp;diff=239"/>
		<updated>2007-07-30T15:24:01Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Enter &amp;lt;tt&amp;gt;192.168.0.1&amp;lt;/tt&amp;gt; in the address bar of your web browser to open the home page for your 2-Wire DSL modem.  Then, select the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced Configuration Settings&amp;lt;/span&amp;gt; link in the lower-right corner. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wire_1.png&lt;br /&gt;
#Select your Time Zone from the drop-down.&lt;br /&gt;
#Select the radio button next to &#039;&#039;PPP Mode&#039;&#039;.&lt;br /&gt;
#In the &#039;&#039;Connection Type&#039;&#039; drop-down list, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;PPPoA&amp;lt;/span&amp;gt; then enter your XMission username and password in the spaces provided.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wire_2.png&lt;br /&gt;
#Scroll to the bottom of the page and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt;.  &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/2wire/2wire_3.png &lt;br /&gt;
&lt;br /&gt;
Your DSL modem should display a green light on Internet.  Your configuration is complete.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Announcements&amp;diff=237</id>
		<title>Announcements</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Announcements&amp;diff=237"/>
		<updated>2007-07-30T13:05:40Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Why do XMission customers get announcements?== &lt;br /&gt;
XMission believes in full disclosure to our clients. Not only do  we think that our customers deserve to know about things that may  have gone wrong or are changing with the service they&#039;re paying for,  but it also saves time troubleshooting an issue that may not have  been local.&lt;br /&gt;
&lt;br /&gt;
Announcements will also be sent if enhancements to our services or additional services are made available. Often, XMission will add  a service or change the pricing for an existing service. By reading  the announcements, customers can learn that a service they may have  been waiting for is now available or even learn that they&#039;ll soon  be saving money by using a newly available account type. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Doesn&#039;t it make XMission look bad when things go wrong?== &lt;br /&gt;
Quite to the contrary. All ISP&#039;s have technical problems from time to time as there is no way to avoid it. We simply do our best to fully disclose problems when they arise, even as we do our best to minimize the problems themselves. XMission often receives praise from our customers because we fully disclose problems in a timely manner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can I get announcements via email?== &lt;br /&gt;
By default, all customers automatically get announcements sent to  the  technical contact  for their account. This can be changed by contacting  XMission&#039;s accounting department via phone (in Salt Lake at  801-539-0852, or   toll free at 877-964-7746) or email at [mailto:accounting@xmission.com accounting@xmission.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I get announcements if I use IMAP?== &lt;br /&gt;
Yes. Announcements are now simply sent to the mailbox of each account&#039;s  technical contact. It is no longer necessary to receive them via POP  or the alternative mailing list. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I unsubscribe from the announcements list?== &lt;br /&gt;
Although announcements are sent with our customers&#039; best interest  in mind (they help save time, frustration, and sometimes even money),  XMission does allow people to &amp;quot;unsubscribe.&amp;quot; We highly recommend  that you continue to receive them though, since they are rarely sent  and provide very helpful information. To help keep the inconvenience  some customers may feel to an absolute minimum, each announcement  starts with a very short overview, followed by details. By skimming  the overview, it can be easy to tell if it concerns you. &lt;br /&gt;
&lt;br /&gt;
If you have received an announcement from us already, please follow  the link at the bottom of that message to stop receiving announcements.  If you want to start receiving announcements again or want to stop  them and don&#039;t have a current announcement you can unsubscribe with,  please contact our accounting department during business hours at  (801) 539-0852&lt;br /&gt;
&lt;br /&gt;
==Are there any other ways to view announcements?== &lt;br /&gt;
Yes. There are three ways, other than email, to view announcements:&lt;br /&gt;
*WWW: http://www.xmission.com/cgi-bin/announcements?all&lt;br /&gt;
*Usenet: xmission.announce&lt;br /&gt;
*FTP: ftp.xmission.com/archive/announce&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Billing&amp;diff=236</id>
		<title>Billing</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Billing&amp;diff=236"/>
		<updated>2007-07-30T13:05:13Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How are customers billed?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Almost all the billing for  XMission is done via email. A week before an expires, a reminder is  sent to the customer&#039;s email address to let him or her know it is time  to send in a payment to continue service. This reminder outlines different  payment options. &lt;br /&gt;
&lt;br /&gt;
If your business requires a physical bill, XMission can provide invoices for payments upon request. We can fax them or send them postal mail them anywhere you would like. We can also send all billing information to a different email address than that of the user, if you should request it. To check your current account statistics, send an email message to [mailto:acctstat@xmission.com acctstat@xmission.com] and your status will be automatically returned to you by the system. &lt;br /&gt;
&lt;br /&gt;
You can also check on your  account status during a telnet session by typing &amp;lt;tt&amp;gt;acctstat&amp;lt;/tt&amp;gt;  at the prompt after you have logged into your own account.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Does XMission accept credit cards for payment?==&lt;br /&gt;
&lt;br /&gt;
We can and do accept Visa, MasterCard, American Express, and Discover for internet service payments. There are several ways to make a payment with your credit card:  &lt;br /&gt;
#You can use our [https://accounting.xmission.com/pay/ Secure CGI Web Form] &amp;amp;ndash; this is the most secure method by which to pay. &lt;br /&gt;
#You can reach XMission Accounting during business hours at 801/539-0852 ext 2008. The accounting office is open from 9am to 5pm, Monday through Friday. &lt;br /&gt;
#You can email the information to [mailto:accounting@xmission.com accounting@xmission.com] &lt;br /&gt;
# you need to send us your complete card number, the card&#039;s expiration date, and the number of months you&#039;d like to pay with this transaction if you choose to email us. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: Unless you&#039;re sending the email from your XMission account through XMission&#039;s mail server this is not a very secure way to send this type of sensitive information. &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Automatic Credit Card Billing===&lt;br /&gt;
&lt;br /&gt;
XMission&#039;s accounting system  is able to automatically deduct your monthly payment from your Visa,  MasterCard, American Express, or Discover card. If you&#039;d like to set  up automatic credit card charging for your account, that can be done  while you are making your next payment via the web or telephone as outlined  above. You must request this service and you can cancel automatic payment  later by simply calling XMission Accounting.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can users cancel an account?==&lt;br /&gt;
&lt;br /&gt;
Normally, you don&#039;t need  to do anything at all - accounts will be canceled after their expiration.  When an account remains unpaid for more than a week after the expiration  date, we automatically terminate access to that account. However, the  files and mail for that customer remain on the system for some time  after that, and at any time after access has been denied a customer  can make payment to reactivate the account. &lt;br /&gt;
&lt;br /&gt;
Although the system is automatic, it&#039;s always a good idea when canceling service with  &#039;&#039;any &#039;&#039; utility provider to contact that provider and let them know. This can avoid  confusion, inappropriate charges, and possible litigation at a later date.&lt;br /&gt;
&lt;br /&gt;
If a balance remains on your  account at the time you wish to cancel service, you can contact XMission  to receive a refund for the remaining days of service, minus processing  fees (see below.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requests for refunds==&lt;br /&gt;
&lt;br /&gt;
If you require a refund check  for canceled service on your XMission account, we can issue and mail  one within two weeks. However, we do charge a $10 processing fee for  all refunds. &lt;br /&gt;
&lt;br /&gt;
This processing fee will be reimbursed* should you choose to re-establish your XMission account. &lt;br /&gt;
&lt;br /&gt;
*Credit applied at time of payment for second month of service. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can users update their account information?==&lt;br /&gt;
&lt;br /&gt;
Our current accounting database  does not allow for users to modify their own account information. To  update any necessary fields, please email the Accounting Department  at [mailto:accounting@xmission.com accounting@xmission.com] with  the necessary information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can users change their account name?==&lt;br /&gt;
&lt;br /&gt;
Although you can change your  account name at any time, there is a $10 service charge to do so. Before  you can change your account name you need to first send in your payment  or come into the XMission offices with both your current account name  and your new account name. &lt;br /&gt;
&lt;br /&gt;
Remember that account names are always all lower case, with a maximum of 32 characters. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can users change which type of account they have?==&lt;br /&gt;
&lt;br /&gt;
Basic XMission accounts fall  into either Individual or Business categories. If you would like to  change from one type of account to the other, contact the XMission accounting  department by phone or email. &lt;br /&gt;
&lt;br /&gt;
For more information about what each account offers and the differences between Individual and Business accounts, see below. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What&#039;s the difference between the different types of accounts?==&lt;br /&gt;
&lt;br /&gt;
An  &#039;&#039;&#039;Individual account&#039;&#039;&#039;  allows full Internet Access for a single user, and is generally for  home use only. If you wish to post advertising web pages, usenet news  postings, or otherwise solicit business on the Internet, you will require  a larger account. &lt;br /&gt;
&lt;br /&gt;
A  &#039;&#039;&#039;Business account &#039;&#039;&#039;,  in addition to allowing advertising on the web and usenet, allows full  Internet Access for up to  &#039;&#039;&#039;two  &#039;&#039;&#039;concurrent dial-ups, as well as the ability to register a domain name, a larger portion of storage space on XMission&#039;s servers, and a UUCP or SMTP transfer for as many employees as needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Does XMission have leased line rates?==&lt;br /&gt;
&lt;br /&gt;
Indeed we do. Please refer to our Dedicated Account Information page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Contact_Information&amp;diff=234</id>
		<title>Contact Information</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Contact_Information&amp;diff=234"/>
		<updated>2007-07-30T13:02:12Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Use the following email addresses to contact XMission staff:&lt;br /&gt;
&lt;br /&gt;
*[mailto:support@xmission.com support@xmission.com] - answers to most technical questions concerning your account&lt;br /&gt;
*[mailto:info@xmission.com info@xmission.com] - general account information&lt;br /&gt;
*[mailto:sales@xmission.com sales@xmission.com] - contact xmission sales&lt;br /&gt;
*[mailto:domains@xmission.com domains@xmission.com] - domains and virtual domain web hosting support&lt;br /&gt;
*[mailto:accounting@xmission.com accounting@xmission.com] - account balances and status &lt;br /&gt;
*[mailto:webmaster@xmission.com webmaster@xmission.com] - www and html support&lt;br /&gt;
*[mailto:postmaster@xmission.com postmaster@xmission.com] - system-wide email problems&lt;br /&gt;
*[mailto:spam@xmission.com spam@xmission.com] - to forward, with headers, spam (i.e., unsolicited email) &#039;&#039;&#039;sent to&#039;&#039;&#039; XMission subscribers to be added to filters&lt;br /&gt;
*[mailto:abuse@xmission.com abuse@xmission.com] - report spam (i.e., unsolicited email) problems &#039;&#039;&#039;originating from&#039;&#039;&#039; XMission&lt;br /&gt;
*[mailto:routes@xmission.com routes@xmission.com] - network routing problems&lt;br /&gt;
*[mailto:news@xmission.com news@xmission.com] - newsfeeds or general news concerns&lt;br /&gt;
*[mailto:listmaster@xmission.com listmaster@xmission.com] - mailing list support&lt;br /&gt;
*[mailto:admin@fragfarm.com admin@fragfarm.com] - information and feedback concerning the game servers hosted at XMission&lt;br /&gt;
*[mailto:peering@xmission.com peering@xmission.com] - network peering requests and problems&lt;br /&gt;
*[mailto:sql@xmission.com sql@xmission.com] - sql and php support&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Fax/Pager_Gateway&amp;diff=233</id>
		<title>Fax/Pager Gateway</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Fax/Pager_Gateway&amp;diff=233"/>
		<updated>2007-07-30T13:01:29Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How does the email-to-fax/pager service work? ==&lt;br /&gt;
&lt;br /&gt;
We use a publicly available software package, known as [http://www.hylafax.org/ HylaFAX],  along with our own scripts. When you send a fax, HylaFAX simply takes  the place of a fax machine. It dials up the specified number and transfers  the data you provided. The pager gateway works much the same way,  but it dials a general number to the pager company, gives the phone  number to deliver the message to, and then the data/message to be  delivered.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I send messages to pagers without using this service? ==&lt;br /&gt;
&lt;br /&gt;
Most pager/cellular companies, now, associate an email address with  all their numbers. The syntax is usually 10digitnumber@pagercompany.net,  but you&#039;d need to check with the individual companies to be sure.  This method sends the message directly to the pager company to, then,  be delivered to the recipient. This surpasses the need for our system  to dial the pager company directly. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Are there any coverage limitations? ==&lt;br /&gt;
&lt;br /&gt;
These services are currently available only for calls made locally  in the greater Salt Lake City metro area. (All pager companies listed  have local data numbers.) Expansion of these services to our remote  dial-up locations are in the planning stages. Please email fax@xmission.com  for more information. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I send a fax using the fax gateway? ==&lt;br /&gt;
&lt;br /&gt;
Using &#039;&#039;mail.xmission.com&#039;&#039; as your SMTP/POP mail server, an email addressed to: &#039;&#039;Addressee_Name@5551234.fax&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
would send an XMission cover page addressed to &#039;&#039;&#039;Addressee_Name&#039;&#039;&#039; followed by your email to the fax machine answering at &#039;&#039;&#039;555-1234&#039;&#039;&#039;. By default, the service will attempt to deliver the message up to three times in a 20 minute period. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I send a pager message using the pager gateway? ==&lt;br /&gt;
&lt;br /&gt;
Using &#039;&#039;mail.xmission.com&#039;&#039; as your SMTP/POP mail server, an email addressed to: &#039;&#039;verify@airtouch5551234.pager&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
would send the &#039;&#039;&#039;Subject:&#039;&#039;&#039; line of your email to the pager answering  the Airtouch pager at 555-1234 and a verification of your page to  your email address. If you don&#039;t want the verification message sent  to you, replace &#039;&#039;verify@&#039;&#039; with &#039;&#039;silent@&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
The pager message will contain your account name/email name followed  by the subject of the email. Anything in the body will be stripped  from the message.&lt;br /&gt;
&lt;br /&gt;
If the &#039;&#039;&#039;Subject:&#039;&#039;&#039; was &amp;quot;Aliens are invading Tooele! Head for the hills!&amp;quot;, the recipient would see something like: &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;acctname:Aliens are invading Tooele! Head for the hills!&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: If you send an alpha-numeric page to a numeric-only pager, the letters will be stripped and only the numbers will be sent.&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What pager/cellular services are supported? ==&lt;br /&gt;
&lt;br /&gt;
The following pager companies have been verified to work with our email-to-pager gateway:&lt;br /&gt;
&lt;br /&gt;
#airtouch (Verizon)&lt;br /&gt;
#westlink&lt;br /&gt;
#american&lt;br /&gt;
#att-national &lt;br /&gt;
#att-slc &lt;br /&gt;
#att-ogden &lt;br /&gt;
#att-logan &lt;br /&gt;
#att-pcs &lt;br /&gt;
#pagenet &lt;br /&gt;
#pagemart (for pin numbers starting with &amp;quot;13&amp;quot;) &lt;br /&gt;
#pagemart16 (for pin numbers starting with &amp;quot;16&amp;quot;)&lt;br /&gt;
#skytel-ut &lt;br /&gt;
#westlink (Qwest)&lt;br /&gt;
#voicestream &lt;br /&gt;
#voicestream PCS &lt;br /&gt;
&lt;br /&gt;
The following companies have  &#039;&#039;&#039;not &#039;&#039;&#039; been verified. Please [mailto:support@xmission.com let us know] if they do or do not work.&lt;br /&gt;
&lt;br /&gt;
#skytel &lt;br /&gt;
#skypage &lt;br /&gt;
#mobilecomm &lt;br /&gt;
#gte &lt;br /&gt;
#worldcom &lt;br /&gt;
#mci &lt;br /&gt;
#sprint-spectrum &lt;br /&gt;
#sprint &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can someone send me a fax using this service? ==&lt;br /&gt;
&lt;br /&gt;
Unfortunately, no. Incoming faxes are sent as images instead of ASCII  (plain text), so there&#039;s no way to extract individual information  from a fax and then send it to the appropriate mailbox. There are  image-to-text converters, but they&#039;re less than reliable. Since the  original fax is sent as a scanned image, much like a copy machine,  any number of factors can cause it to be mis-aligned, incomplete,  or otherwise not perfectly readable. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can someone send me a pager message using this service? ==&lt;br /&gt;
&lt;br /&gt;
Not directly, because the SMTP server needs to be set to XMission&#039;s  mail server. However, you can set up one of your four free aliases*  as your pager address, and this will allow the message to be sent  to XMission&#039;s gateway via our mail server. &lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: POP-only accounts do not come with free aliases.&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can this service be used to notify me of new email? ==&lt;br /&gt;
&lt;br /&gt;
Yes. Using your shell account,  create a &#039;&#039;.forward&#039;&#039; file in your home directory. On the first  line, enter &amp;lt;tt&amp;gt;\acctname, silent@pagercompanyPAGERNUMBER.pager&amp;lt;/tt&amp;gt;  (filling in your information where indicated). Please note that most  pager/cellular companies will charge for pager messages exceeding  the contract limit. Make note of your contract limit and try to stay  below it, as XMission will not be responsible for resulting charges  from your pager/cellular company. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Are there a limit to how many pages or faxes I can send? ==&lt;br /&gt;
&lt;br /&gt;
There is currently no limitation on the number, frequency or size  of fax/pages sent. However, these services were  &#039;&#039;&#039;NOT &#039;&#039;&#039; intended  for unsolicited fax/paging. Use of these services to send unsolicited  fax/pages will result in  &#039;&#039;&#039;IMMEDIATE &#039;&#039;&#039; termination of your account,  probable legal action and collection of fees at $50 per incident and  $100 per hour involved. [http://www.terabyte.net/Title47.htm#fax FEDERAL  LAW REFERENCE].&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Web_Browsers&amp;diff=232</id>
		<title>Web Browsers</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Web_Browsers&amp;diff=232"/>
		<updated>2007-07-30T13:00:49Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A browser is the most common &amp;quot;window&amp;quot; to the Internet. It&#039;s important to understand how to use them and how to secure them. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is a FAQ answering some of the most common questions about using &amp;amp; customizing the two most popular browsers; Internet Explorer and Netscape Navigator. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Where do I change the &amp;quot;Home&amp;quot; page?== &lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#In the section labeled &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Home page&amp;lt;/span&amp;gt;, enter the URL you would like to be your home page in the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Address:&amp;lt;/span&amp;gt; field. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#In the left window, click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Navigator&amp;lt;/span&amp;gt;.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Home Page&amp;lt;/span&amp;gt; section, enter the URL you would like to be your home page in the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Location:&amp;lt;/span&amp;gt; field. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can I completely remove my history and clear the address bar?==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#In the section labeled &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;History&amp;lt;/span&amp;gt; on the right, click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Clear History&amp;lt;/span&amp;gt; button. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#In the left window, click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Navigator&amp;lt;/span&amp;gt; to show more options. Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;History&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Clear History&amp;lt;/span&amp;gt; button.&lt;br /&gt;
#When that&#039;s complete, click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Clear Location Bar&amp;lt;/span&amp;gt; button. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I stop those annoying pop-up advertisements?==&lt;br /&gt;
&lt;br /&gt;
Yes. Usually, those pop-up advertisements use JavaScript. Disabling  Java/JavaScript will prevent the advertisements from popping up, but  you will also be unable to view anything else done in JavaScript.  Below are instructions for disabling JavaScript&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Security&amp;lt;/span&amp;gt; tab.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Custom Level&amp;lt;/span&amp;gt; button. Locate &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Active Scripting&amp;lt;/span&amp;gt; in the list and click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Disable&amp;lt;/span&amp;gt; (or &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Prompt&amp;lt;/span&amp;gt;). &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#On the left, click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt;. &lt;br /&gt;
#On the right, locate &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Enable Javascript&amp;lt;/span&amp;gt; and uncheck it. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I save an image found on a web page?== &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Right-click on the image you&#039;d like to save and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save Picture As...&amp;lt;/span&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Right-click on the image you&#039;d like to save and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save Image (&#039;&#039;filename&#039;&#039;)&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I set an image on a web page as my desktop?==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Right-click on the image you&#039;d like to save as your desktop picture and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Set as Background&amp;lt;/span&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Save the image to your hard drive, as shown above.&lt;br /&gt;
#Right-click on your computer&#039;s desktop and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Properties&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Desktop&amp;lt;/span&amp;gt; tab.&lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Browse&amp;lt;/span&amp;gt; button and locate the saved image. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I get web pages to load faster?== &lt;br /&gt;
&lt;br /&gt;
Yes. There are several ways to make your pages load faster. You can  set your browser to save pages and images locally when you visit them  (known as cache; see below for details), you can  use our proxy server (see below] for details), or  you can choose not to load images. Below are instructions for disabling  automatic image downloads.&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt; tab.&lt;br /&gt;
#Scroll down until you find the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Multimedia&amp;lt;/span&amp;gt; section and uncheck &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Show pictures&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: Unchecking several of the other options under &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Multimedia&amp;lt;/span&amp;gt;  will speed up your browsing. Just be sure what you&#039;re disabling isn&#039;t  something you need.&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#On the left, click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Privacy &amp;amp;amp; Security&amp;lt;/span&amp;gt; to expand the options.&lt;br /&gt;
#Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Images&amp;lt;/span&amp;gt;. On the right, locate and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Do not load any images&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What are proxy servers?==&lt;br /&gt;
&lt;br /&gt;
An HTTP, or web, proxy server provides a gateway between your browser and the rest of the Internet. A proxy server replaces your identity (IP address, in this case) with its own, making it possible to browse more privately, securely, and offers additional features depending upon the proxy.  XMission now provides three different web proxies. Information about each is available on our Proxy Help page. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I set up my browser to use XMission&#039;s proxy server?== &lt;br /&gt;
&lt;br /&gt;
All necessary details are available on our Proxy Help page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Why, even though I know a web page has changed, do I see an old version?==&lt;br /&gt;
&lt;br /&gt;
There are three common reasons why you&#039;re not seeing an updated page.  The first, and most common, is that the page is being cached locally  on your computer. If you simply force the page to reload (IE: Ctrl+Refresh,  NS: Shift+Reload), the updated page will appear. It&#039;s also possible  that you have a proxy server, as explained above, configured and the  copy of the page that the proxy server has cached is old. The resolutions  to this are to either wait for the proxy server to update the cached  file or to disable the proxy settings. Last, it&#039;s possible that you&#039;re  working offline. If you have your cache set to do so, it will download  pages while you&#039;re online and allow you to browse the complete cached  copies while you&#039;re not connected to the Internet. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I force my browser to reload a web page every time I view it?==&lt;br /&gt;
&lt;br /&gt;
Yes. Below are instructions for setting your browser to download the entire page every time you view it. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Settings&amp;lt;/span&amp;gt; button.&lt;br /&gt;
#Below &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Check for newer versions of stored pages:&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Every visit to the page&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences&amp;lt;/span&amp;gt;.&lt;br /&gt;
#On the left, click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt; to expand the options. Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Cache&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Below &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Compare the page in the cache to the page on the network&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Every time I view the page&amp;lt;/span&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can I empty my cache?==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Delete Files...&amp;lt;/span&amp;gt; button. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences&amp;lt;/span&amp;gt;.&lt;br /&gt;
#On the left, click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt; to expand the options. Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Cache&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Clear Memory Cache&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Clear Disk Cache&amp;lt;/span&amp;gt; buttons.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Where do I change my cache settings?==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Settings&amp;lt;/span&amp;gt; button.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Temporary Internet Files Folder&amp;lt;/span&amp;gt; portion of the window, you can edit where the files are stored and how much space they&#039;re allowed to use.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences&amp;lt;/span&amp;gt;.&lt;br /&gt;
#On the left, click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt; to expand the options.&lt;br /&gt;
#Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Cache&amp;lt;/span&amp;gt;. Here you can specify how much space the memory and disk cache can use.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What are cookies?==&lt;br /&gt;
&lt;br /&gt;
A cookie is a text-only HTTP header saved by your browser. It generally  consists of the domain, path, and lifetime. If the lifetime is longer  than your current visit, the cookie is stored, by your computer, to  be accessed later. They&#039;re used to identify users, or mark them.&lt;br /&gt;
&lt;br /&gt;
The aspect of cookies that bothers most Internet users is, although  cookies can be used for perfectly helpful and valid reasons, they&#039;re  often used to track a user&#039;s movements on the Web. This gives a company,  such as doubleclick.com, a way to understand a person&#039;s preferences.  This leads to demographics being sold to companies that provide personalized  advertisements; a less than desirable result for most Internet users. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What kind of information does a cookie collect from me?==&lt;br /&gt;
&lt;br /&gt;
Cookies can store just about anything that would make a site individual and customizable. A cookie, however, can not contain any personal information that the server would otherwise have no access to, unless you enter that information yourself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Is there a way I can choose what sites are allowed to set cookies?==&lt;br /&gt;
&lt;br /&gt;
Yes. You can have your browser prompt you any time a web site tries to set a cookie. You can either accept or deny the request, at that point. Below are instructions for changing your cookie settings to prompt. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Privacy&amp;lt;/span&amp;gt; tab. &lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt; button.&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Override automatic cookie handling&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Prompt&amp;lt;/span&amp;gt; for both &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;First-party Cookies&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Third-party Cookies&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: First-party cookies will be set buy the server you&#039;re visiting.  Third party cookies are cookies that are set by a server other than  the site you&#039;re visiting. (This would be the companies specializing  in gathering demographics.) Per-session cookies are only used for  the time you&#039;re at the site and are removed when you leave.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences&amp;lt;/span&amp;gt;.&lt;br /&gt;
#On the left, click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Privacy &amp;amp; Security&amp;lt;/span&amp;gt; to expand the options.&lt;br /&gt;
#Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Cookies&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Warn me before storing a cookie&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I disable cookies completely?==&lt;br /&gt;
&lt;br /&gt;
Yes. Keep in mind, however, that some web sites rely on cookies.  Web sites such as online stores personalized start pages, and sites offering  different information for people in different locations won&#039;t work  properly. Below are instructions for completely disabling cookies.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: A recommendation for being able to use sites that require cookies  and still do most of your browsing cookie-free is to have two browsers  (such as both Internet Explorer and Netscape) installed. Your preferred  browser can be set to reject cookies while the &amp;quot;spare&amp;quot; browser can  be used for the few sites that require cookies.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tools&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Internet Options...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Privacy&amp;lt;/span&amp;gt; tab. &lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt; button. Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Override automatic cookie handling&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Block&amp;lt;/span&amp;gt; for both &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;First-party Cookies&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Third-party Cookies&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: First-party cookies will be set buy the server you&#039;re visiting.  Third party cookies are cookies that are set by a server other than  the site you&#039;re visiting. (This would be the companies specializing  in gathering demographics.) Per-session cookies are only used for  the time you&#039;re at the site and are removed when you leave.&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Netscape Navigator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences&amp;lt;/span&amp;gt;.&lt;br /&gt;
#On the left, click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Privacy &amp;amp; Security&amp;lt;/span&amp;gt; to expand the options.&lt;br /&gt;
#Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Cookies&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Disable cookies&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What&#039;s a URL?==&lt;br /&gt;
&lt;br /&gt;
A URL, Uniform Resource Locator, is a standard way of referring to resources available electronically. The syntax of a URL is, typically, &#039;&#039;protocol&#039;&#039;://&#039;&#039;server&#039;&#039;/&#039;&#039;file path&#039;&#039;. For further technical information about URL&#039;s, please refer to [http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1738.html RFC 1738]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What kind of URL&#039;s does my browser support?==&lt;br /&gt;
&lt;br /&gt;
Most browsers will support any standard-compliant URL. The main function  that varies from browser to browser is particular protocol support.  The protocol of a URL is what comes before the ://address. Current  supported protocols are ftp, http, gopher, mailto, news, nntp, telnet,  wais, file, and prospero. Each browser may handle certain protocols a little  differently than others.&lt;br /&gt;
&lt;br /&gt;
Just an example of how browsers can handle each protocol a little  differently, we&#039;ll use ftp. In Internet Explorer, the url ftp://ftp.xmission.com shows two frames. The frame on the left shows server information and  the server&#039;s welcome message. On the right is the file hierarchy shown  the same way you would see files and folders on your own computer.  In Netscape, however, the welcome message isn&#039;t displayed and the  hierarchy is shown the same way a directory listing using http would  appear. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can I tell if a web page, such as an order form, is secure?==&lt;br /&gt;
&lt;br /&gt;
The easiest way to tell if a web page is secure, is to check the  URL. If it begins with https, then it&#039;s using a signed security certificate  to encrypt anything that goes through that page. Both Netscape and  Internet Explorer show a locked padlock icon in the bottom right corner  when a web page is secured. You should also check to be sure your browser supports high encryption. You can do this by going to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Help&amp;lt;/span&amp;gt; and selecting &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;About...&amp;lt;/span&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Although a web site may be secure, that doesn&#039;t necessarily mean  that the information is secure after it reaches its destination. The  web browser is only responsible for securely sending the information  to where the form tells it to. This could be a text file on the web  server, an email, or a database, to name a few. To find out if the  information is held or transferred securely, you should contact the  web site owner directly. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Why do I sometimes get a message saying there&#039;s a problem with the security certificate?==&lt;br /&gt;
Occasionally, you&#039;ll come across a site, https://mail.xmission.com for example, that has a signed certificate but your browser reports  that it&#039;s not signed by a known CA (Certificate Authority). This doesn&#039;t  mean it&#039;s not secure, only that the browser doesn&#039;t know who signed  it. It&#039;s up to you weather or not you choose to accept such a certificate.  It&#039;s recommended to only accept these certificates from sites you  trust. &lt;br /&gt;
&lt;br /&gt;
To accept a certificate from an unknown CA is fairly simple. In Internet  Explorer, you simply click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Yes&amp;lt;/span&amp;gt; button in the dialog that  pops up. To avoid having to accept every time you enter this site,  click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;View Certificate&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Install&amp;lt;/span&amp;gt;, and complete the wizard. In  Netscape you&#039;d choose &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Continue&amp;lt;/span&amp;gt;. You can also check the box that  says &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remember this certificate permanently&amp;lt;/span&amp;gt; to avoid having to accept  every time you visit the site. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about customizing Internet Explorer?==&lt;br /&gt;
The [http://www.microsoft.com/windows/ie/default.asp Internet  Explorer Home Page], although it can be difficult to navigate,  is still the best single resource for information on customizing Internet  Explorer. There are, of course, many other web sites on the Internet  that provide some more personalized instructions and recommendations.  [http://www.google.com Google], as always, is a good place  to start. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about customizing Netscape Navigator?==&lt;br /&gt;
&lt;br /&gt;
Much the same as Internet Explorer, the best single resource for information about customizing Netscape is their web site; [http://browsers.netscape.com/browsers/using/main.tmpl Browser Central]. You can also search [http://www.google.com Google] for more resources. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about using Lynx?==&lt;br /&gt;
&lt;br /&gt;
The Lynx project maintains its own documentation for this excellent text-only browser.&lt;br /&gt;
[http://lynx.isc.org/current/lynx2-8-5/lynx_help/lynx_help_main.html Their links page] contains a user manual as well as a welth of other helpful links.&lt;br /&gt;
&lt;br /&gt;
     &lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Modems&amp;diff=231</id>
		<title>Modems</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Modems&amp;diff=231"/>
		<updated>2007-07-30T12:53:59Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Why  does my 56k modem always connect below 56k? ==&lt;br /&gt;
&lt;br /&gt;
Many factors influence  your connection speed. Because modems use audible tones to communicate  over analog voice telephone lines, they are very susceptible to phone  line quality impairments. Such problems can make it difficult for  the modems to hear the tones they are generating. These problems can  exist anywhere along the path of your phone connection; in your home  or office&#039;s wiring, at the phone company&#039;s central office and beyond.  Your modem will try to negotiate the most reliable speed to connect  at.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Is  there anything I can do to speed up my modem? ==&lt;br /&gt;
&lt;br /&gt;
While it might  be possible to force a faster connection, it would actually end up  slowing down your data. When the data your modem is sending and receiving  become corrupted by line problems, it will re-send the data again  until it comes through correctly. By forcing a faster speed you are  actually only increasing the likelihood that your data will become  corrupted and have to be sent again. Your modem connects more slowly  in an attempt to protect the integrity of your data. Forcing faster  connection rates is not advisable.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Why  am I frequently getting disconnected? ==&lt;br /&gt;
&lt;br /&gt;
Many of the variables  in line quality discussed previously can also result in losing your  modem connection. If this happens consistently you might be able to  stabilize your connection by forcing your modem to a slightly lower  speed than what it is attempting to connect at. You can limit your  modem&#039;s connection rate with a modem initialization string. Initialization  strings are a series of commands passed to your modem just before  it dials (see below for details).  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How  can I improve the quality of my connection? ==&lt;br /&gt;
&lt;br /&gt;
First, make sure  your modem has the latest software drivers and firmware. Drivers are  the software handlers that your computer&#039;s operating system uses to  control the modem. Firmware is program code that resides on the modem  itself. Check with your modem&#039;s manufacturer to see if they have newer  versions of drivers and firmware than what you&#039;re currently running.  You&#039;ll probably want to talk to your modem manufacturer&#039;s technical  support to see how they recommend you go about the upgrade.&lt;br /&gt;
&lt;br /&gt;
You can also  contact your phone company to have your lines tested. In some cases  your phone company may find line problems that they can fix. Be aware  that you may be charged a fee for this service.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Why  do I have problems, even though the phone company tested my line and  said it&#039;s fine? ==&lt;br /&gt;
&lt;br /&gt;
Be aware that  analog telephone lines were designed to move voice, not data. In some  cases the lines will test okay for voice but still not yield higher  speed data communications. Many high speed digital options are available  if your analog modem speeds can not be improved. Technologies such  as ISDN and DSL may be available from your phone company and in most  cases are compatible with your existing XMission account.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How  can I modify or add to my modem initialization string under Windows  95/98/ME? ==&lt;br /&gt;
&lt;br /&gt;
Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Start&amp;lt;/span&amp;gt;,  go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Settings&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Control Panel&amp;lt;/span&amp;gt;. From here, double-click  the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Modems&amp;lt;/span&amp;gt; icon, select your modem, and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Properties&amp;lt;/span&amp;gt;. On the  &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connections&amp;lt;/span&amp;gt; tab, click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt;, and enter your init. string  in the field labeled &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Extra settings&amp;lt;/span&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What  initialization string commands should I use to limit my connection speed? ==&lt;br /&gt;
&lt;br /&gt;
The best way to  determine which init. string to use is to check your modem&#039;s documentation,  contact the modem&#039;s manufacturer, or see what you can find on the  web. In most cases you&#039;ll want to start the initialization string  with the command &amp;amp;F followed immediately by the specific commands  you want to use. Here are a few suggestions for some of the more popular  modems:&lt;br /&gt;
&lt;br /&gt;
US Robotics Courier,  Sportster, and other &amp;quot;TI chipset&amp;quot; Modems:&lt;br /&gt;
&lt;br /&gt;
The TI chipset  uses &amp;amp;Nx to limit the maximum connect rate where &amp;quot;x&amp;quot;  is one of the following: &lt;br /&gt;
:x=11 21600 bps&lt;br /&gt;
:&lt;br /&gt;
:x=12 24000 bps&lt;br /&gt;
:&lt;br /&gt;
:x=13 26400 bps&lt;br /&gt;
:&lt;br /&gt;
:x=14 28800 bps&lt;br /&gt;
:&lt;br /&gt;
:x=15 31200 bps&lt;br /&gt;
:&lt;br /&gt;
:x=16 33600 bps&lt;br /&gt;
:&lt;br /&gt;
:x=17 33333 BPS&lt;br /&gt;
:&lt;br /&gt;
:x=18 37333 BPS&lt;br /&gt;
:&lt;br /&gt;
:x=19 41333 BPS&lt;br /&gt;
:&lt;br /&gt;
:x=20 42666 BPS&lt;br /&gt;
:&lt;br /&gt;
:x=21 44000 BPS&lt;br /&gt;
:&lt;br /&gt;
:x=22 45333 BPS&lt;br /&gt;
:&lt;br /&gt;
:x=23 46666 BPS&lt;br /&gt;
:&lt;br /&gt;
:x=24 48000 BPS &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example: If you  wanted to limit your US Robotics modem to 26400 BPS you&#039;d enter an  initialization string of: AT&amp;amp;F&amp;amp;N13&lt;br /&gt;
&lt;br /&gt;
Rockwell-Based  28.8k &amp;amp; 33.6k Modems: Generally the &#039;&#039;+MS&#039;&#039; command is  used to control modulation and connection rates. For example, adding  a &amp;lt;tt&amp;gt;+ms=11,1,2400,26400&amp;lt;/tt&amp;gt; will limit the upper connect rate  to 26400.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T-Based  Modems It seems as though the AT&amp;amp;T chipset is not as flexible  as the Rockwell &amp;amp; TI chipsets. You can use S37=x to force a certain  connect rate. That does not set a maximum or minimum connect rate,  but forces a connect rate. &amp;quot;x&amp;quot; is one of the following: &lt;br /&gt;
&lt;br /&gt;
:14 = 21600 BPS&lt;br /&gt;
&lt;br /&gt;
:15 = 24000 BPS&lt;br /&gt;
&lt;br /&gt;
:16 = 26400 BPS&lt;br /&gt;
&lt;br /&gt;
:17 = 28800 BPS&lt;br /&gt;
&lt;br /&gt;
:18 = 31200 BPS &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(Warning: Do not  force a connect rate that is higher than your normal connect rate.  When your modem makes an initial connection, it will determine that  the lines cannot handle that speed, and immediately hang up.)  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What  other commands can I use in my initialization string? ==&lt;br /&gt;
&lt;br /&gt;
The commands vary  greatly between modems from different manufacturers. Consult your  modem&#039;s documentation. You might also find these on-line resources  useful: &lt;br /&gt;
*[http://www.modemhelp.org ModemHelp.org] &lt;br /&gt;
*[http://8080hi.com/56k/ 8080hi.com]   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What  brand of modems does XMission use? ==&lt;br /&gt;
&lt;br /&gt;
For digital connections,  XMission uses US Robotics Total Control modem racks. They support  analog-digital connections (x2/v.90/56k) and pure digital connections  (ISDN 64k+). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Will XMission be supporting V.92 and V.44?==&lt;br /&gt;
&lt;br /&gt;
Not at this time. Subscriber interest for these features has not yet been high enough to cover the expense of upgrading our dial-up equipment. Technical forums have also suggested less than full compatibility across all modem manufacturers, and we would like to wait at least until these new features are standard across the  industry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=ISDN&amp;diff=230</id>
		<title>ISDN</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=ISDN&amp;diff=230"/>
		<updated>2007-07-30T12:52:24Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What  is ISDN?== &lt;br /&gt;
&lt;br /&gt;
Integrated Services  Digital Network (ISDN) is a digital telephone network that provides  2 digital phone lines capable of carrying voice, data, or a combination  of the two. Each digital channel can support either 64Kbps or 56Kbps*  of bi-directional data and the two channels can be combined together  to produce speeds of up to 128Kbps.  &lt;br /&gt;
ISDN phone lines  are all digital which results in cleaner, error-free, and reliable  data transmission. Analog phone lines used by modems are subject to  data errors caused by line noise and other numerous transmission interruptions. &lt;br /&gt;
&lt;br /&gt;
Although rarely  promoted by local telephone companies and relatively unknown by the  general public, unlimited ISDN service is now approximately $70/month.  Considering the overall improvement of bandwidth, reliability and  cost, ISDN has become a viable solution for businesses, telecommuters,  and power-users who are unable to get DSL. Additionally, with local  ping-times in the 60-80ms range, it&#039;s perfect for those who like to  play online games.  &lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
==How  do I order ISDN?== &lt;br /&gt;
Ordering ISDN  is fairly easy, and it takes anywhere from 2 weeks to 2 months to  get installed. If you know a few things before calling to order your  ISDN line, you have a better chance of getting things right the first  time. Here&#039;s how to order ISDN:&lt;br /&gt;
&lt;br /&gt;
*Make sure that XMission offers ISDN services in your area  by referring to our XMission Locations page.&lt;br /&gt;
*Find out if Qwest offers ISDN service in your area by visiting  their webpage, http://www.qwest.com/ or by calling Qwest&#039;s customer service.&lt;br /&gt;
*Once Qwest has confirmed that your ISDN line has been installed,  then purchase your ISDN terminal adapter or ISDN router.&lt;br /&gt;
*:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: We recommend that you purchase an ISDN Terminal Adapter that  includes a built-in NT-1 (Network Terminator). ISDN Terminal Adapters  are available with an ST interface, but those are for more advanced  users who have specific reasons for not using a built-in NT-1.)&amp;lt;/div&amp;gt;&lt;br /&gt;
*If you plan on using a single 64kbps channel, you do not  need to change anything with your XMission account. If you plan on  using two 64k channels (for 128kbps), please call our accounting department  at 801-539-0852 (or 877-XMISSION/964-7746) and ask to have &amp;quot;bonding&amp;quot;  enabled. There is a charge for bonding, as you are using twice the  system resources of a regular dial-up account. Please check our account  information page for pricing details.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==What  is an ISDN terminal adapter (TA)?== &lt;br /&gt;
&lt;br /&gt;
An  &#039;&#039;&#039;ISDN Terminal Adapter &#039;&#039;&#039; (TA) is a device that allows a computer  to talk to another computer over a digital ISDN line. Like an analog  modem, the TA plugs into the computer&#039;s serial port or into an internal  expansion slot. ISDN TA&#039;s are ideal for single-computer situations, where you have  only one computer that you want to use with the ISDN line. Terminal  Adapters are very easy to install and, when compared to ISDN Routers,  relatively inexpensive.  &lt;br /&gt;
&lt;br /&gt;
Terminal Adapters usually have 1 or 2 POTs (Plain Old Telephone)  ports. These POTs ports allow you to connect analog devices (like  Fax machines, analog modems, answering machines, etc) to your ISDN  phone line. This way, you can use one 64Kbps channel to connect to  the internet, and the other channel to send a fax or talk with someone.  &lt;br /&gt;
&lt;br /&gt;
One of the down-sides to the ISDN TA is their serial port speed  limitation of 115.2k (12.8k slower than the 128k that ISDN has to  offer). Most computers and many TA&#039;s only support 115.2k communications.  Granted, this is still MUCH faster than a 56k analog modem, but you  still won&#039;t realize the full 128k benefits that ISDN has to offer.  &lt;br /&gt;
&lt;br /&gt;
Some ISDN Terminal Adapters support 230.4k DTE rates, but most computers  do not. You may want to check with your computer manufacturer and  see if your computer&#039;s serial ports support 230.4k. If they do not,  you may always purchase a 3rd-party add-on serial card that will do  230.4k. Companies like [http://www.lavalink.com/ Lava Computer]  sell products like this. You can buy them locally from [http://www.computertech-ut.com/ ComputerTech]  or [http://www.compusa.com/ CompUSA].&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==What  is an ISDN router?== &lt;br /&gt;
An  &#039;&#039;&#039;ISDN router &#039;&#039;&#039;  is an ethernet-based device that allows multiple computers to access  to the internet via a single ISDN line. All of the computers connect  to the ISDN router via an Ethernet hub, and use the ISDN router as their  gateway to the internet. Whenever one of the computers makes a request  for data on the internet, the router automatically picks up the line,  dials, connects, and logs in (all within a few seconds!).  &lt;br /&gt;
&lt;br /&gt;
ISDN routers can also be faster than TAs in certain situations.  A 10mbps ethernet connection to the router is almost 80x faster than  the 115.2k serial port rate limitation that many PC/Terminal Adapter  combinations experience. This is important when 128k of data becomes  compressed, and can theoretically reach speeds of 512kbps. While these  speeds can overwhelm both 115.2k and 230.4k serial ports, they are  only a fraction of what a 10mbps ethernet device can handle. &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Where  can I get more information about ISDN?==&lt;br /&gt;
&lt;br /&gt;
[http://www.usr.com/help/s-icour/s-cour-isdn-downloads.htm Courier &amp;quot;IModem&amp;quot; Documentation]&lt;br /&gt;
[http://www.isdnshop.com/isdn-basics.html#isdn Synapse Solutions&#039; ISDN FAQ]&lt;br /&gt;
[http://www.qwest.com/products/data/isdn/isdn_faq.html Qwest&#039;s ISDN FAQ] &lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Passwords&amp;diff=229</id>
		<title>Passwords</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Passwords&amp;diff=229"/>
		<updated>2007-07-30T12:51:26Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How do I change my XMission password?== &lt;br /&gt;
XMission offers a variety of ways to change your password, the easiest of which is our web-based [https://www.xmission.com/password/ password changing form]. You may also change your password using by [[contact]]ing XMission technical support.&lt;br /&gt;
&lt;br /&gt;
==How often will I have to change passwords?== &lt;br /&gt;
XMission no longer uses &amp;quot;password aging&amp;quot;, but we do recommend you change your password every 4 months.&lt;br /&gt;
&lt;br /&gt;
==What is a &#039;&#039;&#039;&#039;&#039;GOOD&#039;&#039;&#039;&#039;&#039; password?== &lt;br /&gt;
Good passwords include mixed case letters (most systems are case sensitive, including ours), numbers and punctuation (characters above the numbers 0-9). Try not to use anything that anyone could guess such as any words in the dictionary or your license plate number. Some examples of good passwords are: &lt;br /&gt;
&lt;br /&gt;
*&amp;lt;tt&amp;gt;JnyB0y!&amp;lt;/tt&amp;gt;&lt;br /&gt;
*&amp;lt;tt&amp;gt;G3ss!!mE&amp;lt;/tt&amp;gt;&lt;br /&gt;
*&amp;lt;tt&amp;gt;Hlpv3d4x&amp;lt;/tt&amp;gt;&lt;br /&gt;
*&amp;lt;tt&amp;gt;Oh03xx2v&amp;lt;/tt&amp;gt;&lt;br /&gt;
*&amp;lt;tt&amp;gt;XMg00d?%&amp;lt;/tt&amp;gt;&lt;br /&gt;
*&amp;lt;tt&amp;gt;ppIv3ss!!&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Of course, don&#039;t use any of these examples for your own password.&lt;br /&gt;
&lt;br /&gt;
==How do I enter my new password into my dial-up connection?== &lt;br /&gt;
&lt;br /&gt;
===Windows XP Dial-up===&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Start&amp;lt;/span&amp;gt;, go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connect To&amp;lt;/span&amp;gt;, and select your connection (probably named &amp;quot;XMission&amp;quot;).&lt;br /&gt;
#In the field labeled &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password:&amp;lt;/span&amp;gt;, highlight your old password (shown as dots) and type in your new one. &lt;br /&gt;
&lt;br /&gt;
===Windows 2000 Dial-up===&lt;br /&gt;
#Double-click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;My Computer&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Double-click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Control Panel&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Double-click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Network and Dial-up Connections&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Double-click on your connection (probably named &amp;quot;Connection to 9900900&amp;quot; or &amp;quot;XMission&amp;quot;). &lt;br /&gt;
#In the field labeled &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password:&amp;lt;/span&amp;gt;, highlight your old password (shown as asterisks) and type in your new one.&lt;br /&gt;
&lt;br /&gt;
===Windows 95/98 Dial-up===&lt;br /&gt;
#Double-click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;My Computer&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Double-click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Dial-up Networking&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Double-click on your connection (probably named &amp;quot;XMission&amp;quot;).&lt;br /&gt;
#In the field labeled &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password:&amp;lt;/span&amp;gt;, highlight your old password (shown as asterisks) and type in your new one. &lt;br /&gt;
&lt;br /&gt;
===Macintosh&#039;s Remote Access (AKA Open Transport PPP)===&lt;br /&gt;
#Click on the apple menu, go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Control Panels&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;PPP&amp;lt;/span&amp;gt;. &lt;br /&gt;
#In the field labeled &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password:&amp;lt;/span&amp;gt;, highlight your old password (shown as dots) and type in your new one. &lt;br /&gt;
&lt;br /&gt;
===Macintosh&#039;s FreePPP Setup===&lt;br /&gt;
#Click on the apple menu, go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Control Panels&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;FreePPP Setup&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Accounts&amp;lt;/span&amp;gt; tab. (If you don&#039;t see any tabs, click on the triangle in the lower left corner to reveal them.) &lt;br /&gt;
#Select your location (such as Salt Lake City) and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Edit...&amp;lt;/span&amp;gt;. &lt;br /&gt;
#In the field labeled &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password:&amp;lt;/span&amp;gt;, highlight your old password (shown as asterisks) and type in your new one. &lt;br /&gt;
&lt;br /&gt;
==How do I enter my new password into my DSL router?== &lt;br /&gt;
If you have an internal DSL adapter, please follow the instructions above for updating your password in the appropriate dial-up software. If you have an external Cisco DSL router, telnet to your router and go into enable mode. You will then need to issue the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;set ppp wan0-0 password YourNewPassword&lt;br /&gt;
write&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you have an Actiontec DSL router instructions for changing your password can be found [[actiontec password|here]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Password]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Spybot&amp;diff=226</id>
		<title>Spybot</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Spybot&amp;diff=226"/>
		<updated>2007-07-30T12:37:15Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installation==  &lt;br /&gt;
&lt;br /&gt;
#Click [http://www.safer-networking.org/index.php?page=mirrors here] to go to the Spybot Search &amp;amp;amp; Destroy  download page. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot1.jpg&lt;br /&gt;
#Select from one of the download mirrors. For this example,  we&#039;ll use download.com.&lt;br /&gt;
#Click the &amp;quot;Download Here&amp;quot;  link which will open the download.com web page.&lt;br /&gt;
#Click the  &amp;quot;Download Now&amp;quot; link when prompted click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt;. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot2.jpg&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot3.jpg&lt;br /&gt;
#Next you will be asked where to save the file. The easiest  place to save it is your Desktop.&lt;br /&gt;
#Click the drop down box next  to &amp;quot;Save In&amp;quot; and select &amp;quot;Desktop&amp;quot;.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Once the Download is finished, double click on  the Spybot file that was downloaded to your desktop to begin the installation. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot4.jpg&lt;br /&gt;
#After double-clicking, the installation setup will  begin. Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot5.jpg&lt;br /&gt;
#Read and  accept the License Agreement, then click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot6.jpg&lt;br /&gt;
#Select where you want to install the program, then  click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot7.jpg&lt;br /&gt;
#Select &amp;quot;Full Installation&amp;quot; then click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot8.jpg&lt;br /&gt;
#Select the start menu folder you want the Spybot shortcuts to be created, then click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot9.jpg&lt;br /&gt;
#Check the box to create a  desktop and Quick Launch icon, then click  &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot10.jpg&lt;br /&gt;
#Review the settings and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Install&amp;lt;/span&amp;gt; to continue. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot11.jpg&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Finish&amp;lt;/span&amp;gt; to complete the Installation. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot12.jpg&lt;br /&gt;
#You should now have a Spybot desktop icon, double click it to launch Spybot.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Updating==&lt;br /&gt;
It&#039;s important that you stay current with Spybot updates to  keep your computer clean of adware and spyware. It&#039;s recommended  that you run the update before each scan to be sure you have the  latest definitions available. Follow the instructions below to update Spybot.&lt;br /&gt;
#Open Spybot and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Check for updates&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot13.jpg&lt;br /&gt;
#Spybot will check for new updates, if there are updates  available select them all by checking the box next to them  and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Download updates&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot14.jpg&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Scanning==&lt;br /&gt;
To begin your scan with Spybot follow the instructions below.&lt;br /&gt;
&lt;br /&gt;
#Open Spybot Search &amp;amp; Destroy and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Check for problems&amp;lt;/span&amp;gt;.  Spybot will begin scanning your computer for adware and spyware,  this may take several minutes.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot16.jpg&lt;br /&gt;
#Once the scan is finished you&#039;ll be provided with a list of  items Spybot detected on your computer. Most likely you&#039;ll want  to delete everything but scan through the list to make sure. Place  a check mark next to each item you wish to delete, then click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Fix selected problems&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/spybot/spybot15.jpg&lt;br /&gt;
&lt;br /&gt;
This will complete your Spybot scan. It&#039;s recommended that you run  the program on a weekly basis to keep your computer free of adware  and spyware. For further information and support on Spybot Search &amp;amp; Destroy, click [http://www.safer-networking.org/index.php?page=support here] to visit their website.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=AdAware&amp;diff=225</id>
		<title>AdAware</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=AdAware&amp;diff=225"/>
		<updated>2007-07-30T12:36:24Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installation==&lt;br /&gt;
&lt;br /&gt;
#Click [http://www.lavasoft.com/support/download/#free here] to go to the Ad-Aware download page. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware1.jpg&lt;br /&gt;
#Click the Ad-Aware 6 link under Full Install. This will take  you to the download.com download site. Click the &amp;quot;Download  Now&amp;quot; link to begin the download. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware2.jpg &lt;br /&gt;
#When prompted, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt; to save the file to your computer.  Next you will be asked where you want to  save the file. The easiest  place to save it is your Desktop. Click the drop down box next to  &amp;quot;Save In&amp;quot; and select &amp;quot;Desktop&amp;quot;.&lt;br /&gt;
#Click  &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Once the Download is finished, double click on the Ad-Aware  file that was downloaded to your desktop to begin installing Ad-Aware.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware4.jpg&lt;br /&gt;
#After double-clicking, the installation setup will  begin. Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware6.jpg&lt;br /&gt;
#Read the License Agreement, then click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware8.jpg &lt;br /&gt;
#Select where you want to install the program, then  click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware7.jpg&lt;br /&gt;
#Select the components you wish to install, then click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware10.jpg&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt; to install Ad-Aware.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware11.jpg&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Finish&amp;lt;/span&amp;gt; to complete and exit the Installation. http://www.xmission.com/help/screenshots/ad-aware/ad-aware12.jpg&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Updating==&lt;br /&gt;
 &lt;br /&gt;
It&#039;s important that you stay current with Ad-Aware updates to keep  your computer clean of adware and spyware. It&#039;s recommended that  you run the update before each scan to be sure you have the latest  reference list available. Follow the instructions below to update Ad-Aware.&lt;br /&gt;
&lt;br /&gt;
#Open Ad-Aware and click the &amp;quot;Check for updates now&amp;quot; link.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware23.jpg&lt;br /&gt;
#Next, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connect&amp;lt;/span&amp;gt; to check for new reference files.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware24.jpg&lt;br /&gt;
#If there is a new update file, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Ok&amp;lt;/span&amp;gt; to download and  install the file.&lt;br /&gt;
#When that is done, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Finish&amp;lt;/span&amp;gt;. If there  is no update, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Ok&amp;lt;/span&amp;gt; then &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Finish&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware25.jpg&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware26.jpg&lt;br /&gt;
&lt;br /&gt;
This will complete the Ad-Aware update and you can continue with  your system scan.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Configuration and scanning==&lt;br /&gt;
 &lt;br /&gt;
Ad-Aware has two scanning options: Smart system-scan and Custom.  Smart system-scan  is faster, but not as comprehensive as Custom.  Smart system-scan is satisfactory for routine use, but it is  recommended that your first scan be a Custom scan. After a thorough  Custom scan, the capabilities within Smart system-scan will be sufficient for every day use.Ad-Aware comes pre-configured with default options that are already  on. The options that are on will be marked with a green check,  while those that are off are maked with a red x. The following are  changes that we recommend you make prepare for your first Custom scan. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: Some options are greyed out and only available to users who pay  for the Plus or Professional versions of Ad-Aware.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#Double click the Ad-Aware icon on your desktop to launch the program&lt;br /&gt;
#Click on the Gear icon at the top of the start screen to access  the preferences/setting window.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware13.jpg&lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Scanning&amp;lt;/span&amp;gt; button.&lt;br /&gt;
#Under the &#039;&#039;Drives &amp;amp; Folders&#039;&#039; section, mark &#039;&#039;Scan within Archives&#039;&#039; with  a green check.&lt;br /&gt;
#Under the &amp;quot;Memory &amp;amp;amp; Registry&amp;quot; section,  mark each option with a green check.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware14.jpg&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Click here to select Drives + folders&amp;lt;/span&amp;gt; and  place a check in the boxes next to your installed hard drives.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Proceed&amp;lt;/span&amp;gt; to continue.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware15.jpg&lt;br /&gt;
#Next, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Advanced&amp;lt;/span&amp;gt;. Under &#039;&#039;Log-file Detail Level&#039;&#039;,  mark each option with a green check.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware16.jpg&lt;br /&gt;
#Next, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Tweak&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; symbol next to  Scanning Engine and mark &#039;&#039;Unload recognized processes during  scanning&#039;&#039;, &#039;&#039;Include basic Ad-Aware settings in logfile&#039;&#039;,  and &#039;&#039;Include additional Ad-Aware settings in logfile&#039;&#039; with  a green check.&lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;+&amp;lt;/span&amp;gt; symbol next to &#039;&#039;Cleaning  Engin&#039;&#039; and mark &#039;&#039;Automatically try to unregister objects  prior to deletion&#039;&#039; and &#039;&#039;Let Windows remove files in use  after reboot&#039;&#039; with a green check.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware17.jpg&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware18.jpg&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Proceed&amp;lt;/span&amp;gt; to save these settings.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Scan Now&amp;lt;/span&amp;gt; Select &#039;&#039;Use custom scanning options&#039;&#039;&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt; to begin the scan. This may take several minutes to complete.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware19.jpg&lt;br /&gt;
#When the scan is finished you&#039;ll see a summary of how many  objects were found, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt; to select and remove the objects.&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware20.jpg&lt;br /&gt;
#Look through the list of objects found, most likely you&#039;re  going to want to delete everything you see here but just look it  over to be sure. To select all of the objects at once, right click  in the first checkbox in the list and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Select all&amp;lt;/span&amp;gt;.  This will select all of the objects, at this time if there is  anything you don&#039;t want to delete, uncheck it and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Yes&amp;lt;/span&amp;gt; to confirm deletion when prompted. &lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware21.jpg&lt;br /&gt;
#:http://www.xmission.com/help/screenshots/ad-aware/ad-aware22.jpg&lt;br /&gt;
&lt;br /&gt;
This will complete your Custom scan. Remember to run Ad-Aware on a  weekly basis using the Smart system-scan option and stay regular  with updates. For more information and support on Ad-Aware, you  can visit their website by clicking [http://www.lavasoft.com here].&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Spyware&amp;diff=224</id>
		<title>Spyware</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Spyware&amp;diff=224"/>
		<updated>2007-07-30T12:35:37Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What are Adware and Spyware?==&lt;br /&gt;
&lt;br /&gt;
The term &amp;quot;Adware&amp;quot; refers to any software application  in which advertising banners are displayed while the program is  running. Adware is typically found in free software, with the  justification is that it helps recover programming and development  costs, enabling the software to be free or low cost. Adware has a  reputation for often including code that is used to track personal  information. All software that secretly tracks your online habits  is better known as &amp;quot;Spyware.&amp;quot;&lt;br /&gt;
     &lt;br /&gt;
Spyware usually gathers information about the computer user&#039;s  browsing habits and relays it to advertisers and/or other third  parties, largely for statistical reasons. Spyware is almost always  installed without knowledge of the user. Spyware can be installed  secretly while you are installing other software, or it can come  from a software virus, or by doing something as little as clicking  on a pop-up window. Spyware can be harmful as it is designed to  obtain your personal information. It can also be a nuisance causing  things like unwanted pop-up ads, changing your home page location,  and even redirecting you to websites you haven&#039;t requested. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can I protect myself against Adware and Spyware?== &lt;br /&gt;
&lt;br /&gt;
As a general rule, you should be careful about any program you  install on your computer. When looking for free software make sure  to read as much information about as you can before you install it.  In many cases software that includes Adware gives you an option to  leave it out of the installation, so it&#039;s important that you pay  close attention to the steps of an installation. It&#039;s also important  be aware of pop-up ads and avoid installing things from a web site  that doesn&#039;t look legitimate. As a rule, only install software you  really need and feel comfortable with. A quick search on Google.com  is often worth the time beforehand, for example.&lt;br /&gt;
      &lt;br /&gt;
These are some good rules to always keep in mind, but it&#039;s likely  that you won&#039;t be fully protected just by being careful. There are  several free software programs that we recommend to help fight Adware  and Spyware. What these programs do is scan your computer&#039;s hard  driving searching for these types of programs. They then give you a  list of what they find and the option to delete it from your computer.  Below we have provided links to some of these programs along with  installation instructions.&lt;br /&gt;
&lt;br /&gt;
[[AdAware]] and [[Spybot]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Disclaimer&#039;&#039;&#039;: Please keep in mind that  XMission simply provides this information to help customers protect  themselves against adware and spyware. As such, we cannot provide  support beyond the information and help in this document. XMission  also cannot be held responsible for anything related to use of any  of this software but we do use it ourselves and recommend it.&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Introduction&amp;diff=223</id>
		<title>Introduction</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Introduction&amp;diff=223"/>
		<updated>2007-07-30T12:34:31Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Having a connection to the Internet can make your computer  vulnerable to a myriad of security threats. That is why it is  very important to be informed about Internet security. Being  proactive is probably the most important thing you can do when  it comes to Internet security.&lt;br /&gt;
&lt;br /&gt;
Because Microsoft Windows is particularly vulnerable to threats  on the Internet, this page will primarily focus on how to protect  yourself if you&#039;re running this operating system. If you&#039;re running  a Mac OS you should still be running a personal firewall and  consider using antivirus software. Below are some links to virus  protection software and firewall suggestions for Mac users.&lt;br /&gt;
&lt;br /&gt;
*[http://www.symantec.com/nav/nav_mac/ Norton Antivirus]&lt;br /&gt;
*[http://www.networkassociates.com/us/products/mcafee/antivirus/desktop/virex.htm McAfee VirusScan]&lt;br /&gt;
*[http://www.apple.com/macosx/features/security/ Mac OS X Personal Firewall]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Windows Updates== &lt;br /&gt;
&lt;br /&gt;
Staying current with updates is your first step in protecting your computer from threats on the Internet. Typically, when  Microsoft discovers a security hole, they release a patch for  it that you can download and install through the Windows Update  website. Often there is little or no mention of such discoveries  until they become a wide-spread problem, so it is important that  you stay on top of things before you become a victim of the latest  threat. Since most people don&#039;t want the burden of keeping up  with new security problems, we recommend enabling automatic  updates so they can readily be protected against many threats  before they&#039;ve even spread across the Internet.&lt;br /&gt;
&lt;br /&gt;
Microsoft has released Service Pack 2 for Windows XP which  addresses many of these security concerns so it is recommended  that if you are running Windows XP you download and install that  as well. Below are links to the Windows update site, an instructional  page for turning on automatic updates and an instructional page  about Service Pack 2 for Windows XP. Please note that the service  pack installs Microsoft XP&#039;s firewall if it doesn&#039;t detect a firewall  already running. If you notice any Internet traffic problems after  installing the service pack, you should review the firewall&#039;s settings.  Once you have installed the service pack and made all of your changes,  you should consider downloading and running Microsoft&#039;s Microsoft  Baseline Security Analyzer for an audit of your system security (on  Windows 2000, Windows XP, and Windows Server 2003 systems).&lt;br /&gt;
&lt;br /&gt;
*[http://windowsupdate.microsoft.com/ Windows Updates]&lt;br /&gt;
*[http://support.microsoft.com/default.aspx?scid=kb;en-us;327838 Configuring Automatic Updates]&lt;br /&gt;
*[http://support.microsoft.com/default.aspx?pr=windowsxpsp2 Service Pack 2 for Windows XP]&lt;br /&gt;
*[http://www.microsoft.com/technet/security/tools/mbsahome.mspx Microsoft Baseline Security Analyzer]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Internet Firewalls== &lt;br /&gt;
Running an Internet firewall can very effectively protect against  many Internet threats. Essentially a firewall blocks Internet traffic  from entering or leaving your computer that you haven&#039;t deemed  appropriate through the firewall settings. As with anything you&#039;re  running on your computer, if you choose to run a firewall you should  be fully aware of what it&#039;s doing and how to use it properly. Running  a firewall used to be a difficult task but now there are a variety of  simple, but effective, firewall options available to you. We generally  recommend either of the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Internet Connection Firewall for Windows XP===&lt;br /&gt;
&lt;br /&gt;
The Windows Internet Connection Firewall is very simple and easy to work with.  This is only an option if you&#039;re running Windows XP. It will allow the most  commonly used traffic to pass through with no problem while blocking harmful  intrusions and allows for some very basic configuration.&lt;br /&gt;
&lt;br /&gt;
This is a good option if you&#039;re only using your computer to view web pages  and email, but not the best option if you run any type of services from  your computer as it does not allow for any detailed configuration. Another  benefit of this firewall is that you do not have to install any third party  software. A link is provided below for more information and instructions on how to  turn on the Internet Connection Firewall for Windows XP.&lt;br /&gt;
&lt;br /&gt;
[http://www.microsoft.com/windowsxp/using/networking/learnmore/icf.mspx Windows XP Internet Connection Firewall Information]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Zone Alarm===&lt;br /&gt;
&lt;br /&gt;
Zone Labs offers a free version of their firewall software which is a  better option for more seasoned users. Zone Alarm works well as a firewall  and allows for more configuration options, including for any services you  may be running on your computer. It also offers detailed logging of all  Internet activity, including any attempts your computer makes to access  the Internet, and any attempts that are made from the outside to access  your computer. This can be very helpful in blocking and tracking down the  sources of things like viruses, worms, and spyware. A link is provided  below for more information and instructions on how to download and  install Zone Alarm.&lt;br /&gt;
&lt;br /&gt;
[http://www.zonelabs.com/store/content/catalog/products/sku_list_za.jsp?lid=nav_za Zone Alarm Information]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Virus Protection==&lt;br /&gt;
&lt;br /&gt;
It is very important that you have some type of virus protection  software running on your computer. The most common way to get a  virus is through email. To help protect yourself never open an  attachment, even from someone you know, unless you are positive it  is safe. Many virus protection programs can be configured to scan  email and attachments as you download them to help ensure you don&#039;t  become infected with a virus. Always practice the &amp;quot;better safe than  sorry&amp;quot; rule when it comes to email and attachments.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Keeping your virus protection software up to date is crucial.  Regularly updating your virus definitions will ensure you&#039;re  protected against the latest threats, and most programs will allow  you to automate this process. Below are links to some programs and websites we recommend for virus protection:&lt;br /&gt;
&lt;br /&gt;
*[http://www.norton.com Norton Antivirus]&lt;br /&gt;
*[http://www.mcafee.com McAfee VirusScan]&lt;br /&gt;
*[http://www.grisoft.com/us/us_index.php AVG Anti-Virus (Free for non-business use)]&lt;br /&gt;
*[http://housecall.trendmicro.com/ House Call Online Virus Scan]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Alternate Browsers==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Internet Explorer has been known to be very vulnerable to  exploits which can cause you to become infected with a worm or  otherwise compromise your system. This is likely because it is  the most widely used and thus the biggest target for attacks;  regardless of the reason, you may wish to consider installing  an alternate browser. Below are links to some alternate  browsers for Microsoft Windows.&lt;br /&gt;
&lt;br /&gt;
*[http://www.mozilla.org/products/firefox/ Mozilla FireFox (Used by all XMission staffers)]&lt;br /&gt;
*[http://channels.netscape.com/ns/browsers/download.jsp Netscape]&lt;br /&gt;
*[http://www.opera.com/download/ Opera]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Spyware==&lt;br /&gt;
&lt;br /&gt;
Spyware is almost always installed, while visiting web sites  or installing other software, without the users&#039; knowledge.  Spyware generally is used to track browsing habits and relay  them to advertisers and other third parties but some spyware  is more insidious. All Spyware has the potential of being  harmful as it is designed to track your personal information  and most people don&#039;t want it on their computers. We have created  a separate web page dedicated to Spyware help which you can  visit by clicking the link below:&lt;br /&gt;
[[Spyware]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Shell_Access&amp;diff=219</id>
		<title>Shell Access</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Shell_Access&amp;diff=219"/>
		<updated>2007-07-30T12:00:51Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: About Linux moved to Shell FAQ: better title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How do I activate my shell account?==&lt;br /&gt;
To activate your shell account, simply contact accounting or technical support. &lt;br /&gt;
&lt;br /&gt;
==Why isn&#039;t shell access on by default?==&lt;br /&gt;
Having shell access enabled by default on all accounts presents a  security risk. A shell account gives the user a direct window into  our system. By minimizing the number of active shell accounts, we  minimize the risk of compromising our system.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I choose my shell type?==&lt;br /&gt;
Yes. You can choose from bash, tcsh, sh, zsh, csh, and ksh. We recommend using either bash or csh, at first, since they&#039;re the most user-friendly.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What is SSH and how do I use it?==&lt;br /&gt;
SSH is a secure shell. Using it is differs, depending on the operating  system.  Mac OS X is probably the easiest. Nothing special has to be installed.  Simply open a terminal window and &amp;lt;tt&amp;gt;ssh username@shell.xmission.com&amp;lt;/tt&amp;gt;.  Accept the key and enter your password.  For most Windows operating systems, an SSH client must be used. There  are many SSH clients on the market and a few are &amp;quot;freeware&amp;quot;. PuTTY is a recommended free SSH client for Windows. Some places to look for additional SSH software would be Download.com and Tucows.com.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What are my telnet software options?==&lt;br /&gt;
There are dozens of telnet/terminal applications available. Though  applications are installed by default for Windows (Telnet) and Mac  OS X (Terminal), you may choose to download a telnet program with  more features. Some places to look for this software would be Download.com  and Tucows.com. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: Since browsers will look for the default telnet application when installed, an easy way to start the application is to enter &amp;lt;tt&amp;gt;telnet shell.xmission.com&amp;lt;/tt&amp;gt; in the address bar in your browser.&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Why don&#039;t my screen and text work properly?==&lt;br /&gt;
There are two typical problems that occur during a telnet session.  The first and most common problem is incorrect terminal emulation.  The second problem occurs after a screen has been messed up by viewing  a binary file.&lt;br /&gt;
 &lt;br /&gt;
The most commonly used terminal emulation is vt100, though vt220  is supported and recommended. To change the terminal emulation of  your telnet application, view the preferences and choose either vt100  or vt220. However, even after specifying the terminal emulation for  your telnet application, you may still have problems correctly displaying  columns and rows. For this, you&#039;ll need to define the default size  of your window in your run commands (explained below]).  When trying to fix a screen after viewing a binary file, run &amp;lt;tt&amp;gt;fixvt&amp;lt;/tt&amp;gt; at a command prompt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What are some common commands I&#039;ll need to know when using the UNIX shell?==&lt;br /&gt;
The most common commands you&#039;ll need to know are &amp;lt;tt&amp;gt;cd&amp;lt;/tt&amp;gt; (changes your directory), &amp;lt;tt&amp;gt;pwd&amp;lt;/tt&amp;gt; (shows your current directory path), and &amp;lt;tt&amp;gt;ls&amp;lt;/tt&amp;gt; (lists the contents of the current directory). For a more complete list of common commands, please see our Common Commands page. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Why do I get &amp;quot;command not found&amp;quot; when using a command I&#039;m sure should work? ==&lt;br /&gt;
It&#039;s possible that you don&#039;t have the paths to the command directories defined correctly in your run commands. For instructions on defining the correct paths, see below. &lt;br /&gt;
&lt;br /&gt;
==How do I edit my shell run commands (rc) file?==&lt;br /&gt;
Your shell run commands are found in a file named &#039;&#039;.cshrc&#039;&#039; (for c shell),  &#039;&#039;.bashrc&#039;&#039; (for borne shell), &#039;&#039;.kshrc&#039;&#039; (for korn shell), etc. This file  will be located in your home directory (/home/users/u/username). It  contains commands that are run when you first log on to set your  paths, environment variables, and aliases. Before changing ANY rc file, it&#039;s recommended you make a back-up copy.&lt;br /&gt;
&lt;br /&gt;
To set or edit your paths, edit your run commands file with a text  editor (pico, vi, ed, etc.). Your paths will be defined after the  command &amp;lt;tt&amp;gt;set path =&amp;lt;/tt&amp;gt;. The default paths should be &amp;lt;tt&amp;gt;/bin /usr/local/bin  /usr/bin&amp;lt;/tt&amp;gt;. If you&#039;d like to add a path, simply add it to the end,  separated by a space. (e.g.: /home/users/u/username/morecommands/)  If you&#039;d like to edit what information is displayed in your prompt,  edit the &amp;lt;tt&amp;gt;set prompt=&amp;lt;/tt&amp;gt; variable. A useful way to define your prompt  is to have it display your current directory. To do this, remove the  default &amp;lt;tt&amp;gt;set prompt=&amp;lt;/tt&amp;gt; and enter this in its place:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;alias cd &#039;cd \!* ; set prompt=&amp;quot;&#039;hostname&#039;:&#039;pwd&#039;&amp;gt; &amp;quot;&#039;&amp;lt;/tt&amp;gt;  To edit your environment variables, first type &amp;lt;tt&amp;gt;env&amp;lt;/tt&amp;gt; at a command  prompt to show your current variables. If you&#039;d like to change any  of these, enter the definition after a new &amp;quot;setenv&amp;quot; line. The proper  syntax, as you&#039;ll see in the default settings, is:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;setenv VARIABLE_NAME path/or/command:/2nd/path/or/command/&amp;lt;/tt&amp;gt;  Adding an alias is fairly simple. If you&#039;d like a certain command  to be run when you type something in at the command prompt, you&#039;d  enter that here. The proper syntax is:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;alias aliasedcommand &#039;realcommand -options&#039;&amp;lt;/tt&amp;gt;  This is also where you define your terminal emulation settings.&lt;br /&gt;
&amp;lt;tt&amp;gt;setenv TERM vt100   &amp;lt;/tt&amp;gt;(sets terminal type)&lt;br /&gt;
&amp;lt;tt&amp;gt;/bin/stty rows 24   &amp;lt;/tt&amp;gt;(sets number of rows)&lt;br /&gt;
&amp;lt;tt&amp;gt;/bin/stty cols 80   &amp;lt;/tt&amp;gt;(sets number of columns)&lt;br /&gt;
&amp;lt;tt&amp;gt;/bin/stty erase ^H   &amp;lt;/tt&amp;gt;(sets backspace command)  &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What are all these files in my home directory, and what are they for?==&lt;br /&gt;
If you do a complete list, showing hidden files, of your home directory,  you will notice that there are several files already there. The files  are listed and explained in the table below. Some of these files will  not be there by default, but only appear if the application that uses  them is run. &lt;br /&gt;
&lt;br /&gt;
===Types===&lt;br /&gt;
rc run commands/preferences (usually, but not always)&lt;br /&gt;
&lt;br /&gt;
===Files===&lt;br /&gt;
.cshrc shell run commands(for csh or tcsh) .gopherrc gopher preferences .login shell preferences (read after run commands at login) .newsrc news preferences .nn Network News Reader preferences .pinerc Pine preferences (pine is primarily used for email) .tin Threaded Internetwork News preferences&lt;br /&gt;
&lt;br /&gt;
===Directories===&lt;br /&gt;
bin can contain scripts or binary executables ftp your personal directory for file transfer mail Email is stored here (used by pine and others) news articles are saved here by default public_html your web pages&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How can I alter the information shown in my prompt?==&lt;br /&gt;
If you use tcsh, changing the prompt is as simple as entering the command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;set prompt=&amp;quot;options&amp;quot;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, with other shells, you will need to edit the &amp;lt;tt&amp;gt;set prompt=&amp;lt;/tt&amp;gt; line in your shell run commands file (shown above). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What program can I use to read email from a shell? ==&lt;br /&gt;
&lt;br /&gt;
Probably the most popular options are &#039;&#039;mutt&#039;&#039; (recommended) and &#039;&#039;pine&#039;&#039;, but &#039;&#039;elm&#039;&#039;, &#039;&#039;mail/rmail&#039;&#039;, and &#039;&#039;emacs&#039;&#039; are also available. At a command prompt, run the command &amp;lt;tt&amp;gt;mutt&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;pine&amp;lt;/tt&amp;gt;, or &amp;lt;tt&amp;gt;elm&amp;lt;/tt&amp;gt; and the mail client will open, also creating either a /mail (pine and elm) or /Mail (mutt) directory. Using mail/rmail &lt;br /&gt;
or emacs isn&#039;t quite as intuitive. It&#039;s recommended that you read the manual before using. (Type &amp;lt;tt&amp;gt;man mail&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;man emacs&amp;lt;/tt&amp;gt; at a command prompt.) &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What program can I use to read news (Usenet) from a shell?==&lt;br /&gt;
The newsreaders available on shell are slrn, tin, nn, pine, nmh, trn, and emacs. The most popular ones would be slrn, tin, nn, and pine. We recommend slrn, since it&#039;s the only one that still has development. For more information on how to use any of these programs, type &amp;quot;man&amp;quot; followed by the program name at the command prompt (e.g.: &amp;lt;tt&amp;gt;man tin&amp;lt;/tt&amp;gt;). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I kill a process? ==&lt;br /&gt;
Before you kill a processes, you have to have its processes ID. You get this by typing &amp;quot;ps&amp;quot; at the command prompt. Once you&#039;ve determined which one of your processes is the one you want to kill, type &amp;lt;tt&amp;gt;kill -9 PID&amp;lt;/tt&amp;gt; (where PID is the actual processes ID) at the command prompt. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Is there a way to transfer files to and from my XMission account other than FTP?==&lt;br /&gt;
Although FTP is the recommended way to transfer files to and from your XMission account, it&#039;s not the only way. It&#039;s possible to transfer &lt;br /&gt;
files directly from your shell by using ZModem. Please refer to the &lt;br /&gt;
ZModem manual for more information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I compress and decompress files? ==&lt;br /&gt;
The method you&#039;ll use to decompress a file is determined by looking at the file extension. The instructions below show how to decompress the file in the current directory. For further information, see the &lt;br /&gt;
manual for each program (tar, bzip, unzip, gzip, uncompress).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;file.tar    &amp;lt;/tt&amp;gt;&amp;lt;tt&amp;gt;tar xvf file.tar&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;file.Z   &amp;lt;/tt&amp;gt; &amp;lt;tt&amp;gt;uncompress file.Z&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;file.gz   &amp;lt;/tt&amp;gt; &amp;lt;tt&amp;gt;gzip -d file.gz&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;file.zip   &amp;lt;/tt&amp;gt; &amp;lt;tt&amp;gt;unzip file.zip&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;file.bz2   &amp;lt;/tt&amp;gt; &amp;lt;tt&amp;gt;bzip2 -d file.bz2&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If there is a combination of formats, such as file.tar.gz, you can &lt;br /&gt;
either pipe one command to the other (e.g. &amp;lt;tt&amp;gt;gzip -d file.tar.gz | tar &lt;br /&gt;
xvf&amp;lt;/tt&amp;gt;), or see if the option is supported by tar (&amp;lt;tt&amp;gt;man tar&amp;lt;/tt&amp;gt;&amp;gt;. Using the command &lt;br /&gt;
&amp;lt;tt&amp;gt;tar xvfz file.tar.gz&amp;lt;/tt&amp;gt; will handle both the gzip compression and the &lt;br /&gt;
tar compression. When piping a .Z file, however, be sure to use &amp;lt;tt&amp;gt;zcat &lt;br /&gt;
file.Z&amp;lt;/tt&amp;gt; (the equivalent of &amp;lt;tt&amp;gt;uncompress -c file.Z&amp;lt;/tt&amp;gt;, which writes to standard &lt;br /&gt;
output the files that were compressed). A similar rule applies to &lt;br /&gt;
bzip2, where you should use &amp;lt;tt&amp;gt;bzcat file.bz2&amp;lt;/tt&amp;gt; (equal to &amp;lt;tt&amp;gt;bzip2 -dc file.bz2&amp;lt;/tt&amp;gt;) &lt;br /&gt;
when piping the output to another command. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What are some basics on setting permissions with &amp;quot;chmod&amp;quot;?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First, an understanding of file/directory ownership is needed. Each &lt;br /&gt;
file or directory has a user (also the owner) and a group. The owner &lt;br /&gt;
of your files should always be your XMission username. The groups &lt;br /&gt;
you&#039;ll need to know are www (which gives the web server access to &lt;br /&gt;
the files) and users (which gives any of XMission&#039;s users, from shell, &lt;br /&gt;
access to the files). There&#039;s also the category, others, that includes &lt;br /&gt;
any user or group.&lt;br /&gt;
&lt;br /&gt;
Permissions are based on those three categories: owner, group, and &lt;br /&gt;
others. When you do a long listing of the file (&amp;lt;tt&amp;gt;ls -l filename&amp;lt;/tt&amp;gt;), the &lt;br /&gt;
permissions will be displayed to the left. The format is shown as &lt;br /&gt;
such: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;-rw-r--r-- 1 acctname group 1949 Sep &lt;br /&gt;
19 2000 file.html&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The first space defines weather the file is a simple file (shown with a hyphen) or a directory (shown with a d). The next three spaces represent the permissions (highlighted in red) &lt;br /&gt;
for the owner, the next three are for the group, and the last three &lt;br /&gt;
are for others. The letters represent what kind of permissions are &lt;br /&gt;
allowed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;r &#039;&#039;&#039; = Read (view and make copies)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;w &#039;&#039;&#039; = Write (make changes to or delete)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;x &#039;&#039;&#039; = Execute (run program/script) &lt;br /&gt;
When using &amp;quot;chmod&amp;quot; to change permissions, you will need to specify &lt;br /&gt;
the category by using one or a combination of the following letters:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;u &#039;&#039;&#039; = User (Owner)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;g &#039;&#039;&#039; = Group&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;o &#039;&#039;&#039; = Others&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;a &#039;&#039;&#039; = All (same as using &amp;quot;ugo&amp;quot;) &lt;br /&gt;
To change the permissions, execute &amp;quot;chmod&amp;quot; with the following parameters:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;chmod who+/-/=permission file&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The plus (+) adds the following permission, the minus (-) removes &lt;br /&gt;
it, and the (=) adds it, discarding any previous permissions. Some &lt;br /&gt;
examples:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;chmod g+r file.html&amp;lt;/tt&amp;gt; (adds read access for group)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;chmod go-r file.html&amp;lt;/tt&amp;gt; (removes read access from group and &lt;br /&gt;
others)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;chmod a=x file.html&amp;lt;/tt&amp;gt; (replaces existing permissions with read &lt;br /&gt;
access for all)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;chmod g+rx file.html&amp;lt;/tt&amp;gt; (adds read and execute access for group) &lt;br /&gt;
There is another way to change permissions without having to write &lt;br /&gt;
out &amp;lt;tt&amp;gt;chmod who+/-/=permission file&amp;lt;/tt&amp;gt; every time. This method uses a 3-digit octal &lt;br /&gt;
number. Determining the octal number is fairly easy after some practice. &lt;br /&gt;
To start, refer to the chart below. &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Symbol &#039;&#039;&#039; &#039;&#039;&#039;Octal &#039;&#039;&#039;---0--x1-w-2-wx3r--4r-x5rw-6rwx7&amp;lt;/td&amp;gt;&lt;br /&gt;
For example, if you&#039;d like to set the permissions on file.html &lt;br /&gt;
to be &amp;lt;tt&amp;gt;-rw-r--r--&amp;lt;/tt&amp;gt; you would determine the octal number &lt;br /&gt;
like this (skip the first space in the set): &lt;br /&gt;
&amp;lt;tt&amp;gt;rw-&amp;lt;/tt&amp;gt; = 6, &amp;lt;tt&amp;gt;r--&amp;lt;/tt&amp;gt; = 4, &amp;lt;tt&amp;gt;r--&amp;lt;/tt&amp;gt; = 4. The octal &lt;br /&gt;
number is 644. &lt;br /&gt;
 To execute the command, type:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;chmod 644 file.html&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: This would be the same as using:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;chmod a+r file.html&lt;br /&gt;
&lt;br /&gt;
chmod u+x file.html&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(if no permissions were previously set). &amp;lt;/div&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
Changing ownership and the group of a file would normally be done &lt;br /&gt;
with &amp;quot;chown&amp;quot; and &amp;quot;chgrp&amp;quot;. However, because these commands are restricted &lt;br /&gt;
to the user and group being specified, you&#039;re unable to use them on &lt;br /&gt;
XMission (because you&#039;re only one user and you&#039;re only a member of &lt;br /&gt;
one group). However, if you&#039;d like a file to belong to the group www, &lt;br /&gt;
you can either create it in or upload it to your public_html directory. &lt;br /&gt;
This will set the group, by default, to www. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=General_DSL_Questions&amp;diff=207</id>
		<title>General DSL Questions</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=General_DSL_Questions&amp;diff=207"/>
		<updated>2007-07-29T01:26:31Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: /* What is DSL? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General DSL Questions==&lt;br /&gt;
&lt;br /&gt;
===What is DSL?===&lt;br /&gt;
&lt;br /&gt;
From [http://www.techweb.com/ CMP&#039;s Tech Web], (&#039;&#039;&#039;D&#039;&#039;&#039;igital &#039;&#039;&#039;S&#039;&#039;&#039;ubscriber &#039;&#039;&#039;L&#039;&#039;&#039;ine) A technology that dramatically increases the digital capacity of ordinary telephone lines (the local loops) into the home or office. DSL speeds are very much tied to the distance between the customer and the telco central office. The technology is geared to Internet access with its asymmetric versions (faster downstream than upstream) and short haul connections with symmetric versions (same rate coming and going).&lt;br /&gt;
&lt;br /&gt;
Unlike ISDN, which is also digital but travels through the switched telephone network, DSL provides &amp;quot;always-on&amp;quot; operation. At the telco central office, DSL traffic is aggregated in a unit called the DSL Access Multiplexor (DSLAM) and forwarded to the appropriate ISP or data network.&lt;br /&gt;
&lt;br /&gt;
[[DSL Glossary]]&lt;br /&gt;
&lt;br /&gt;
===What do DSL subscribers gain?===&lt;br /&gt;
&lt;br /&gt;
*High access speeds at an affordable price&lt;br /&gt;
*Avoid voice vs. data conflict on a single line&lt;br /&gt;
*&amp;quot;Always on&amp;quot; connection to the internet&lt;br /&gt;
*Relief from local busy signal&lt;br /&gt;
*Easy to use&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Exactly how fast is DSL?===&lt;br /&gt;
&lt;br /&gt;
Hard to say as it depends on so many factors: Qwest&#039;s implementation of the technology in real world situations, the speed of machines on each end of a connection, bottlenecks along the way, etc. XMission won&#039;t max out our parts of the equation though since we have control over it and its cost-effective technology for us (i.e., no phone line charges and we don&#039;t need to purchase hardware each time we add new customers since it&#039;s all handled over an ATM that we already have in-house). It won&#039;t likely be a full 256kbps (or whatever speed you purchased from Qwest) any more than any other technology reaches its full capacity.&lt;br /&gt;
&lt;br /&gt;
One thing to keep in mind though is this: most people won&#039;t use a fraction of their bandwidth since browsing web pages and using email are sporadic uses of bandwidth and not too bandwidth intensive.&lt;br /&gt;
&lt;br /&gt;
Also, since basic DSL account users aren&#039;t allowed to use server services (even over a DSL Business account), their bandwidth usage will stay down. Some people will get DSL because of the larger, &amp;quot;burstable&amp;quot; capacity so that when they need to download a file or want to browse the web any slowdown won&#039;t be on their side. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL the same speed for upload as it is for download?===&lt;br /&gt;
&lt;br /&gt;
No. This depends upon the type of DSL used but RADSL (Rate Adaptive Digital Subscriber Line), the type available currently in our area, is asymmetric, which means that you can transfer data more quickly in one direction (down) than in the other. At 256k, this difference isn&#039;t very high, but on the top end they reach a 700% disparity. For example, the maximum transfer rates (if you qualify for them) are 7 Megabit downstream and 1 megabit upstream.&lt;br /&gt;
&lt;br /&gt;
This discrepancy illustrates one of the most obvious differences between DSL and frame relay. Obviously, even if you or your company qualifies for the higher bandwidth DSL options, server services over DSL peak at lower upstream rates than frame relay. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL really on the same line as my phone?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yes. The DSL digital signal is running at a much higher frequency on your phone line. We recommend you use filters on your telephones to help prevent any possible interference, though. These filters are available for free with your DSL line service from [https://orderdsl.qwest.com/order/welcome.asp Qwest].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL OS/Platform-limited? (i.e., is it only for Windows)?===&lt;br /&gt;
&lt;br /&gt;
No. While the internal DSL adapter will only work with Windows, the external DSL modem will work with nearly any properly configured network card installed on nearly any operating system.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What are my hardware options?===&lt;br /&gt;
&lt;br /&gt;
You have three options for DSL hardware when ordering your DSL line through Qwest:&lt;br /&gt;
&lt;br /&gt;
Actiontec GT701&lt;br /&gt;
&lt;br /&gt;
Actiontec M1000&lt;br /&gt;
&lt;br /&gt;
2Wire 2700&lt;br /&gt;
&lt;br /&gt;
Some other brands/models are known to work, such as the Zoom X6, and while XMission may have the needed settings listed, we are not able to troubleshoot specific configuration issues.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Getting DSL==&lt;br /&gt;
&lt;br /&gt;
==If DSL is available in my area, does that mean I can get it?==&lt;br /&gt;
&lt;br /&gt;
No. Even if your prefix is serviced, that doesn&#039;t mean your line will qualify. DSL is distance-prohibitive (maximum 15,000-18,000 feet). To find out if your line qualifies, fill out the online order form at [https://orderdsl.qwest.com/order/welcome.asp or call [https://orderdsl.qwest.com/order/welcome.asp Qwest] at 1-877-MEGA-FAS. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What exactly does &amp;quot;loop-qualify&amp;quot; mean?===&lt;br /&gt;
&lt;br /&gt;
To &amp;quot;Loop Qualify&amp;quot;, your phone line needs to be tested to see if it can pass the strict requirements necessary to pass DSL signals. Currently, the limitations for DSL are:&lt;br /&gt;
*The line cannot have any load coils on it&lt;br /&gt;
*All bridge taps should be counted since too many of these prevent the signal&lt;br /&gt;
*Maximum length of any bridge tap not to exceed 2,000 ft&lt;br /&gt;
*Total bridge tap length not to exceed 6,000 ft&lt;br /&gt;
*You cannot have a DLC(Digital Loop Carrier) between you and your CO (Central Office)&lt;br /&gt;
*You need to be within 15,000 ft of your CO, although you can be up to 18,000 ft if higher quality wire is used in your area&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What is DLC and why can&#039;t I get DSL because of it?===&lt;br /&gt;
&lt;br /&gt;
DSL may not be available in some areas due to digital-loop-carrier (DLC); deployed by your local phone company to make the most out of copper lines already layed out in the streets. DLC is also known by the terms: line concentrator, channel bank, PairGain, SLiC96, SLiC2000 and UDC. Ask your local telephone company repair engineer if this applies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===If already have DSL with another ISP, how can I switch to XMission?===&lt;br /&gt;
&lt;br /&gt;
You&#039;ll need to call [https://orderdsl.qwest.com/order/welcome.asp Qwest] at 1-877-MEGA-FAS and tell them you&#039;d like to switch ISP&#039;s.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Your XMission DSL Account==&lt;br /&gt;
&lt;br /&gt;
===Can I have normal (analog) dial-up with a DSL account too?===&lt;br /&gt;
&lt;br /&gt;
No, you would need to purchase an additional account for this. We are able to offer this service at such low prices because we don&#039;t need to add new phone lines or dial-up hardware. As well, we assign your connection a static IP address but this would prevent you connecting to your account twice. If your DSL line goes down because of technical problems, though, you would be able to connect to XMission while your DSL line is down.&lt;br /&gt;
&lt;br /&gt;
Business DSL accounts cannot use a 2nd line during business hours, as they would normally be allowed, but they can have uncapped DSL line speeds at no additional charge and IP addressing, up to a size 16 subnet, is available upon request. &lt;br /&gt;
&lt;br /&gt;
If you travel, or occasionally connect from more than one place, you can get a $19/month Individual account or a $10/month Email-only account, which includes dial-up. You can, however, disconnect your DSL (by turning off the computer with the &amp;quot;modem&amp;quot; in it or unplugging your router) before you leave and dial up with your DSL account.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What is meant by the term, &amp;quot;shared bandwidth&amp;quot;?===&lt;br /&gt;
&lt;br /&gt;
People will be sharing it in a way that doesn&#039;t guarantee a full pipe to each user all the time. For example, a T1 is comparable to 6 256k connections (6 x 256k = 1.5 MB) but we&#039;ll be selling the equivalent of more than 6 DSL lines for a T1. This isn&#039;t an entirely accurate example but it&#039;s an easy way to get the idea across. For those who have demanding bandwidth needs, frame relay or T1 is highly recommended.&lt;br /&gt;
&lt;br /&gt;
With shared DSL service, you&#039;re not guaranteed bandwidth. We&#039;re not going to oversell DSL services since bandwidth to Our DSL bandwidth is spread across multiple DS3&#039;s, allowing us to readily control growth and avoid saturation. Qwest isn&#039;t price-prohibitive and outgoing traffic from XMission has plenty of headroom. Our router stats page indicates this fact.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How many people will share the bandwidth?===&lt;br /&gt;
&lt;br /&gt;
We [http://stats.xmission.com/routers/public/ monitor] this and simply add bandwidth (up to 45 MegaBit) as needed. Expect to see statistics available online that publicly show our bandwidth usage. But remember that basic DSL is not a guaranteed bandwidth service. We can only offer guaranteed bandwidth with Dedicated Bandwidth accounts such as a Frame Relay. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What, exactly, are &amp;quot;client&amp;quot; and &amp;quot;server&amp;quot; services?===&lt;br /&gt;
&lt;br /&gt;
On the internet, machines generally connect to each other as clients and servers. Client services are what you use when you check email, download a web page or file from FTP, run CUSeeMe or just about any Internet software. Server services describe a situation where a server feeds information out to the Internet. An example of a server would be mail.xmission.com. This is the server XMission clients connect to when they check their email. Server services include the following, for example: web, ftp, game, mail, etc. Should you have further questions as to what qualifies as a server service please give us a call or email support@xmission.com. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Can I run server services over my DSL connection?===&lt;br /&gt;
&lt;br /&gt;
One of the first questions we concerned ourselves about dealt with this issue since XMission has always sought to provide value-added services to its customers and not restrict anything. While the abuses of some can spoil things for everybody, we have found a compromise that allows high bandwidth for all ports but with heavy monitoring. We will be closely monitoring dsl statistics reports and those who go over their bandwidth quota, as mentioned above, will be sent a warning, then restricted. We recommend if you&#039;re running a server for personal use, that you limit the simultaneous connections to just two or three. This allows people to access their machines for work, to do various server services for personal use but prevents saturation of the DSL bandwidth.&lt;br /&gt;
&lt;br /&gt;
If we didn&#039;t closely monitor our DSL accounts then a few people would very likely use the majority of bandwidth allocated to all of our DSL customers. By restricting server traffic, we are able to provide dedicated services at previously unheard of prices. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Will &amp;quot;server services&amp;quot; be blocked or monitored?===&lt;br /&gt;
&lt;br /&gt;
Those concerned about abuse need not worry as we will be closely monitoring bandwidth usage on a per-customer basis. If it&#039;s noted that a certain customer is using more bandwith than they need for personal needs, they will be warned once, and restricted if the high-bandwidth usage doesn&#039;t cease. For most people, DSL offers a larger, burstable pipe that will remove the bottleneck on their end. As most Internet users mainly browse the web and use email, such intermittent use will generally allow for a lot of burstable bandwidth even if many people are sharing the same pipe. As you can well imagine, if XMission didn&#039;t maintain a close eye on server services, a few people running unrestricted web and or ftp servers could quickly hog a large percentage of our DSL bandwidth and ruin it for everyone else. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Will my DSL account be considered a dedicated connection?===&lt;br /&gt;
&lt;br /&gt;
No. DSL accounts are considered burstable to your purchased bandwidth from Qwest, but is not considered a dedicated account. Information on business-level dedicated accounts can be found at http://www.xmission.com/dedicated&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Can I associate a Domain Name with my DSL account?===&lt;br /&gt;
&lt;br /&gt;
You can do this with a business account at no additional charge. If you have a personal DSL account, XMission charges an additional $7 a month for primary and secondary DNS for one domain. If you&#039;re just looking to have a name associated with your IP address, though, you can have your own machine name associated with XMission&#039;s domain like this: &amp;lt;tt&amp;gt;name.dsl.xmission.com&amp;lt;/tt&amp;gt;. You can choose whichever name you&#039;d like but it defaults to your account name if you don&#039;t have a preference. Contact support@xmission.com for more details. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using DSL/Help==&lt;br /&gt;
&lt;br /&gt;
===What are some useful phone numbers in case I have line problems?===&lt;br /&gt;
&lt;br /&gt;
While we can&#039;t guarantee that these numbers will remain in service, or work for your particular needs, they should be helpful for many:&lt;br /&gt;
:Qwest installation: 1-800-247-7285&lt;br /&gt;
:Qwest line repair: 1-800-234-XDSL&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I FTP through a non-standard port through a firewall?===&lt;br /&gt;
&lt;br /&gt;
To ftp to a non-standard port with cute-ftp, select:ftp, settings, options, firewall tab, check PASV mode and check the &#039;firewall access&#039; box. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I use ICQ through a socks5 proxy?===&lt;br /&gt;
&lt;br /&gt;
Using XMission&#039;s socks5 proxy server will make it easier for people to reach you via ICQ. To use it, simply follow these steps:&lt;br /&gt;
#Go to preferences&lt;br /&gt;
#Open the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connection&amp;lt;/span&amp;gt; tab&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;I am behind a firewall or proxy&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Firewall Settings&amp;lt;/span&amp;gt; button&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;I am using a SOCKS5 proxy server&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#Enter SOCKS5 Host: socks.xmission.com&lt;br /&gt;
#Enter SOCKS5 Port: 1080&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Check My FIREWALL/Proxy Setting&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Done&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also use this with AOL Instant Mesanger. Under &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Options&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connection&amp;lt;/span&amp;gt;, set the proxy protocal to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;SOCKS5&amp;lt;/span&amp;gt;, the proxy to &amp;quot;socks.xmission.com&amp;quot;, and the port to &amp;quot;1080&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you are using an IRC client like mIRC that supports firewalls, you can again use the socks proxy server. In mIRC you goto &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Setup&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Firewall&amp;lt;/span&amp;gt;. Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Use SOCKS firewall&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Socks5&amp;lt;/span&amp;gt;, put &amp;quot;socks.xmission.com&amp;quot; for the host, &amp;quot;1080&amp;quot; for the port, and check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Initiate DCCs through firewall&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I set up my own firewall?===&lt;br /&gt;
&lt;br /&gt;
If you have the external Cisco 678, there are filtering options that come with it. There are instructions in the manual that came with the router for doing this. &lt;br /&gt;
&lt;br /&gt;
Another resource that might be helpful is located at http://www.users.uswest.net/~rlutton/ADSL/. This is a good, concise resource for some basic info about the Cisco 675 and its NAT capabilities. It also explains basic security features that the casual home user can implement if so inclined.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I play games through my DSL router (Cisco 678) when I have NAT enabled?===&lt;br /&gt;
&lt;br /&gt;
Many customers have found out that the Network Address Translation (NAT) functions of the Cisco 675 External DSL Router interfere with interactive internet games. Cisco has overcome this problem with the release of the v2.4.8 CBOS operating system. You can download this update from ftp.xmission.com (using your XMission username/password), and then going to /archive/dsl.&lt;br /&gt;
&lt;br /&gt;
Download the code, read the &amp;quot;readme&amp;quot; file, upgrade your router, and then send the following command for games to work:&lt;br /&gt;
&amp;lt;tt&amp;gt;set nat entry add 10.0.0.2&amp;lt;/tt&amp;gt;&lt;br /&gt;
(or the IP address of the machine you&#039;re playing games on).&lt;br /&gt;
&amp;lt;tt&amp;gt;set nat timeout udp 360&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
More information about NAT entry commands can be found here in the CBOS section:&lt;br /&gt;
http://www.cisco.com/univercd/cc/td/doc/product/dsl_prod/c600s/index.htm&lt;br /&gt;
&lt;br /&gt;
===Why do I see a lot of ICMP traffic hitting my DSL line?===&lt;br /&gt;
&lt;br /&gt;
ICMP provides error reporting, congesting reporting and first-hop gateway redirection. In addition to being used for ping, ICMP is used to as a message control and error-reporting protocol between a host server and a gateway to the Internet. It is normal to see ICMP traffic. However, if you&#039;re noticing a great deal of echo/echo-reply traffic (echo/echo-reply is what ping is), to the extent that it&#039;s begining to consume your bandwidth, you should probably [http://www.xmission.com/help/contact/ contact technical support]. For more in depth information about ICMP and how it&#039;s used, please refer to [http://www.ietf.org/rfc/rfc0792.txt RFC 792].  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Chat&amp;diff=206</id>
		<title>Chat</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Chat&amp;diff=206"/>
		<updated>2007-07-29T01:13:54Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jabber is an open source instant messaging protocol similar to AIM, MSN Messenger, Yahoo Messenger and ICQ. We are running the [http://www.jabber.org/software/serverdetail.php?projectID=2 official Jabber server version 2]. A list of all the different clients that support the Jabber protocol is available at [http://www.jabber.org/software/clients.php http://www.jabber.org/software/clients.php].&lt;br /&gt;
&lt;br /&gt;
==Basic Info for Configuration==&lt;br /&gt;
&#039;&#039;Server:&#039;&#039; xmission.com&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;User name:&#039;&#039; Your XMission username&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Password:&#039;&#039; your XMission password&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Resource:&#039;&#039; some clients allow you to set this; it allows people to differentiate between if you are logging in from work/school/home.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Ports: &#039;&#039;&#039; 5222 (plain/TLS for newer clients) / 5223 (SSL for older clients).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: XMission strongly suggests never running a Jabber client without using either TLS or SSL encryption, since they help keep your account password secure.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Messaging Someone==&lt;br /&gt;
Just send a message to username@xmission.com using whatever Jabber compatible client you are using. You can also message someone using another Jabber server simply by messaging user@jabber.server.com.&lt;br /&gt;
&lt;br /&gt;
==Transports and Other Goodies==&lt;br /&gt;
XMission&#039;s Jabber server has the ability to connect and talk to clients with other messaging protocols such as AIM, MSN Messenger, Yahoo Messenger, and ICQ. Unfortunately, most of these have not been ported to the version of the Jabber server we are using. For now, the following transports are installed:&lt;br /&gt;
&lt;br /&gt;
[http://msn-transport.jabberstudio.org/ PyMSNt]:  Allows communication with MSN clients.&lt;br /&gt;
[http://mu-conference.jabberstudio.org/ MU-Conference]: Allows for chat room style conversations.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=General_DSL_Questions&amp;diff=205</id>
		<title>General DSL Questions</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=General_DSL_Questions&amp;diff=205"/>
		<updated>2007-07-29T01:13:01Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General DSL Questions==&lt;br /&gt;
&lt;br /&gt;
===What is DSL?===&lt;br /&gt;
&lt;br /&gt;
From [http://www.techweb.com/ CMP&#039;s Tech Web], (&#039;&#039;&#039;D&#039;&#039;&#039;igital &#039;&#039;&#039;S&#039;&#039;&#039;ubscriber &#039;&#039;&#039;L&#039;&#039;&#039;ine) A technology that dramatically increases the digital capacity of ordinary telephone lines (the local loops) into the home or office. DSL speeds are very much tied to the distance between the customer and the telco central office. The technology is geared to Internet access with its asymmetric versions (faster downstream than upstream) and short haul connections with symmetric versions (same rate coming and going).&lt;br /&gt;
&lt;br /&gt;
Unlike ISDN, which is also digital but travels through the switched telephone network, DSL provides &amp;quot;always-on&amp;quot; operation. At the telco central office, DSL traffic is aggregated in a unit called the DSL Access Multiplexor (DSLAM) and forwarded to the appropriate ISP or data network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What do DSL subscribers gain?===&lt;br /&gt;
&lt;br /&gt;
*High access speeds at an affordable price&lt;br /&gt;
*Avoid voice vs. data conflict on a single line&lt;br /&gt;
*&amp;quot;Always on&amp;quot; connection to the internet&lt;br /&gt;
*Relief from local busy signal&lt;br /&gt;
*Easy to use&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Exactly how fast is DSL?===&lt;br /&gt;
&lt;br /&gt;
Hard to say as it depends on so many factors: Qwest&#039;s implementation of the technology in real world situations, the speed of machines on each end of a connection, bottlenecks along the way, etc. XMission won&#039;t max out our parts of the equation though since we have control over it and its cost-effective technology for us (i.e., no phone line charges and we don&#039;t need to purchase hardware each time we add new customers since it&#039;s all handled over an ATM that we already have in-house). It won&#039;t likely be a full 256kbps (or whatever speed you purchased from Qwest) any more than any other technology reaches its full capacity.&lt;br /&gt;
&lt;br /&gt;
One thing to keep in mind though is this: most people won&#039;t use a fraction of their bandwidth since browsing web pages and using email are sporadic uses of bandwidth and not too bandwidth intensive.&lt;br /&gt;
&lt;br /&gt;
Also, since basic DSL account users aren&#039;t allowed to use server services (even over a DSL Business account), their bandwidth usage will stay down. Some people will get DSL because of the larger, &amp;quot;burstable&amp;quot; capacity so that when they need to download a file or want to browse the web any slowdown won&#039;t be on their side. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL the same speed for upload as it is for download?===&lt;br /&gt;
&lt;br /&gt;
No. This depends upon the type of DSL used but RADSL (Rate Adaptive Digital Subscriber Line), the type available currently in our area, is asymmetric, which means that you can transfer data more quickly in one direction (down) than in the other. At 256k, this difference isn&#039;t very high, but on the top end they reach a 700% disparity. For example, the maximum transfer rates (if you qualify for them) are 7 Megabit downstream and 1 megabit upstream.&lt;br /&gt;
&lt;br /&gt;
This discrepancy illustrates one of the most obvious differences between DSL and frame relay. Obviously, even if you or your company qualifies for the higher bandwidth DSL options, server services over DSL peak at lower upstream rates than frame relay. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL really on the same line as my phone?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yes. The DSL digital signal is running at a much higher frequency on your phone line. We recommend you use filters on your telephones to help prevent any possible interference, though. These filters are available for free with your DSL line service from [https://orderdsl.qwest.com/order/welcome.asp Qwest].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Is DSL OS/Platform-limited? (i.e., is it only for Windows)?===&lt;br /&gt;
&lt;br /&gt;
No. While the internal DSL adapter will only work with Windows, the external DSL modem will work with nearly any properly configured network card installed on nearly any operating system.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What are my hardware options?===&lt;br /&gt;
&lt;br /&gt;
You have three options for DSL hardware when ordering your DSL line through Qwest:&lt;br /&gt;
&lt;br /&gt;
Actiontec GT701&lt;br /&gt;
&lt;br /&gt;
Actiontec M1000&lt;br /&gt;
&lt;br /&gt;
2Wire 2700&lt;br /&gt;
&lt;br /&gt;
Some other brands/models are known to work, such as the Zoom X6, and while XMission may have the needed settings listed, we are not able to troubleshoot specific configuration issues.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Getting DSL==&lt;br /&gt;
&lt;br /&gt;
==If DSL is available in my area, does that mean I can get it?==&lt;br /&gt;
&lt;br /&gt;
No. Even if your prefix is serviced, that doesn&#039;t mean your line will qualify. DSL is distance-prohibitive (maximum 15,000-18,000 feet). To find out if your line qualifies, fill out the online order form at [https://orderdsl.qwest.com/order/welcome.asp or call [https://orderdsl.qwest.com/order/welcome.asp Qwest] at 1-877-MEGA-FAS. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What exactly does &amp;quot;loop-qualify&amp;quot; mean?===&lt;br /&gt;
&lt;br /&gt;
To &amp;quot;Loop Qualify&amp;quot;, your phone line needs to be tested to see if it can pass the strict requirements necessary to pass DSL signals. Currently, the limitations for DSL are:&lt;br /&gt;
*The line cannot have any load coils on it&lt;br /&gt;
*All bridge taps should be counted since too many of these prevent the signal&lt;br /&gt;
*Maximum length of any bridge tap not to exceed 2,000 ft&lt;br /&gt;
*Total bridge tap length not to exceed 6,000 ft&lt;br /&gt;
*You cannot have a DLC(Digital Loop Carrier) between you and your CO (Central Office)&lt;br /&gt;
*You need to be within 15,000 ft of your CO, although you can be up to 18,000 ft if higher quality wire is used in your area&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What is DLC and why can&#039;t I get DSL because of it?===&lt;br /&gt;
&lt;br /&gt;
DSL may not be available in some areas due to digital-loop-carrier (DLC); deployed by your local phone company to make the most out of copper lines already layed out in the streets. DLC is also known by the terms: line concentrator, channel bank, PairGain, SLiC96, SLiC2000 and UDC. Ask your local telephone company repair engineer if this applies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===If already have DSL with another ISP, how can I switch to XMission?===&lt;br /&gt;
&lt;br /&gt;
You&#039;ll need to call [https://orderdsl.qwest.com/order/welcome.asp Qwest] at 1-877-MEGA-FAS and tell them you&#039;d like to switch ISP&#039;s.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Your XMission DSL Account==&lt;br /&gt;
&lt;br /&gt;
===Can I have normal (analog) dial-up with a DSL account too?===&lt;br /&gt;
&lt;br /&gt;
No, you would need to purchase an additional account for this. We are able to offer this service at such low prices because we don&#039;t need to add new phone lines or dial-up hardware. As well, we assign your connection a static IP address but this would prevent you connecting to your account twice. If your DSL line goes down because of technical problems, though, you would be able to connect to XMission while your DSL line is down.&lt;br /&gt;
&lt;br /&gt;
Business DSL accounts cannot use a 2nd line during business hours, as they would normally be allowed, but they can have uncapped DSL line speeds at no additional charge and IP addressing, up to a size 16 subnet, is available upon request. &lt;br /&gt;
&lt;br /&gt;
If you travel, or occasionally connect from more than one place, you can get a $19/month Individual account or a $10/month Email-only account, which includes dial-up. You can, however, disconnect your DSL (by turning off the computer with the &amp;quot;modem&amp;quot; in it or unplugging your router) before you leave and dial up with your DSL account.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What is meant by the term, &amp;quot;shared bandwidth&amp;quot;?===&lt;br /&gt;
&lt;br /&gt;
People will be sharing it in a way that doesn&#039;t guarantee a full pipe to each user all the time. For example, a T1 is comparable to 6 256k connections (6 x 256k = 1.5 MB) but we&#039;ll be selling the equivalent of more than 6 DSL lines for a T1. This isn&#039;t an entirely accurate example but it&#039;s an easy way to get the idea across. For those who have demanding bandwidth needs, frame relay or T1 is highly recommended.&lt;br /&gt;
&lt;br /&gt;
With shared DSL service, you&#039;re not guaranteed bandwidth. We&#039;re not going to oversell DSL services since bandwidth to Our DSL bandwidth is spread across multiple DS3&#039;s, allowing us to readily control growth and avoid saturation. Qwest isn&#039;t price-prohibitive and outgoing traffic from XMission has plenty of headroom. Our router stats page indicates this fact.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How many people will share the bandwidth?===&lt;br /&gt;
&lt;br /&gt;
We [http://stats.xmission.com/routers/public/ monitor] this and simply add bandwidth (up to 45 MegaBit) as needed. Expect to see statistics available online that publicly show our bandwidth usage. But remember that basic DSL is not a guaranteed bandwidth service. We can only offer guaranteed bandwidth with Dedicated Bandwidth accounts such as a Frame Relay. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===What, exactly, are &amp;quot;client&amp;quot; and &amp;quot;server&amp;quot; services?===&lt;br /&gt;
&lt;br /&gt;
On the internet, machines generally connect to each other as clients and servers. Client services are what you use when you check email, download a web page or file from FTP, run CUSeeMe or just about any Internet software. Server services describe a situation where a server feeds information out to the Internet. An example of a server would be mail.xmission.com. This is the server XMission clients connect to when they check their email. Server services include the following, for example: web, ftp, game, mail, etc. Should you have further questions as to what qualifies as a server service please give us a call or email support@xmission.com. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Can I run server services over my DSL connection?===&lt;br /&gt;
&lt;br /&gt;
One of the first questions we concerned ourselves about dealt with this issue since XMission has always sought to provide value-added services to its customers and not restrict anything. While the abuses of some can spoil things for everybody, we have found a compromise that allows high bandwidth for all ports but with heavy monitoring. We will be closely monitoring dsl statistics reports and those who go over their bandwidth quota, as mentioned above, will be sent a warning, then restricted. We recommend if you&#039;re running a server for personal use, that you limit the simultaneous connections to just two or three. This allows people to access their machines for work, to do various server services for personal use but prevents saturation of the DSL bandwidth.&lt;br /&gt;
&lt;br /&gt;
If we didn&#039;t closely monitor our DSL accounts then a few people would very likely use the majority of bandwidth allocated to all of our DSL customers. By restricting server traffic, we are able to provide dedicated services at previously unheard of prices. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Will &amp;quot;server services&amp;quot; be blocked or monitored?===&lt;br /&gt;
&lt;br /&gt;
Those concerned about abuse need not worry as we will be closely monitoring bandwidth usage on a per-customer basis. If it&#039;s noted that a certain customer is using more bandwith than they need for personal needs, they will be warned once, and restricted if the high-bandwidth usage doesn&#039;t cease. For most people, DSL offers a larger, burstable pipe that will remove the bottleneck on their end. As most Internet users mainly browse the web and use email, such intermittent use will generally allow for a lot of burstable bandwidth even if many people are sharing the same pipe. As you can well imagine, if XMission didn&#039;t maintain a close eye on server services, a few people running unrestricted web and or ftp servers could quickly hog a large percentage of our DSL bandwidth and ruin it for everyone else. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Will my DSL account be considered a dedicated connection?===&lt;br /&gt;
&lt;br /&gt;
No. DSL accounts are considered burstable to your purchased bandwidth from Qwest, but is not considered a dedicated account. Information on business-level dedicated accounts can be found at http://www.xmission.com/dedicated&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Can I associate a Domain Name with my DSL account?===&lt;br /&gt;
&lt;br /&gt;
You can do this with a business account at no additional charge. If you have a personal DSL account, XMission charges an additional $7 a month for primary and secondary DNS for one domain. If you&#039;re just looking to have a name associated with your IP address, though, you can have your own machine name associated with XMission&#039;s domain like this: &amp;lt;tt&amp;gt;name.dsl.xmission.com&amp;lt;/tt&amp;gt;. You can choose whichever name you&#039;d like but it defaults to your account name if you don&#039;t have a preference. Contact support@xmission.com for more details. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using DSL/Help==&lt;br /&gt;
&lt;br /&gt;
===What are some useful phone numbers in case I have line problems?===&lt;br /&gt;
&lt;br /&gt;
While we can&#039;t guarantee that these numbers will remain in service, or work for your particular needs, they should be helpful for many:&lt;br /&gt;
:Qwest installation: 1-800-247-7285&lt;br /&gt;
:Qwest line repair: 1-800-234-XDSL&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I FTP through a non-standard port through a firewall?===&lt;br /&gt;
&lt;br /&gt;
To ftp to a non-standard port with cute-ftp, select:ftp, settings, options, firewall tab, check PASV mode and check the &#039;firewall access&#039; box. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I use ICQ through a socks5 proxy?===&lt;br /&gt;
&lt;br /&gt;
Using XMission&#039;s socks5 proxy server will make it easier for people to reach you via ICQ. To use it, simply follow these steps:&lt;br /&gt;
#Go to preferences&lt;br /&gt;
#Open the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connection&amp;lt;/span&amp;gt; tab&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;I am behind a firewall or proxy&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Firewall Settings&amp;lt;/span&amp;gt; button&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;I am using a SOCKS5 proxy server&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#Enter SOCKS5 Host: socks.xmission.com&lt;br /&gt;
#Enter SOCKS5 Port: 1080&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Check My FIREWALL/Proxy Setting&amp;lt;/span&amp;gt;&lt;br /&gt;
#Press &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Done&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also use this with AOL Instant Mesanger. Under &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Options&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connection&amp;lt;/span&amp;gt;, set the proxy protocal to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;SOCKS5&amp;lt;/span&amp;gt;, the proxy to &amp;quot;socks.xmission.com&amp;quot;, and the port to &amp;quot;1080&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you are using an IRC client like mIRC that supports firewalls, you can again use the socks proxy server. In mIRC you goto &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Setup&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Firewall&amp;lt;/span&amp;gt;. Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Use SOCKS firewall&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Socks5&amp;lt;/span&amp;gt;, put &amp;quot;socks.xmission.com&amp;quot; for the host, &amp;quot;1080&amp;quot; for the port, and check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Initiate DCCs through firewall&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I set up my own firewall?===&lt;br /&gt;
&lt;br /&gt;
If you have the external Cisco 678, there are filtering options that come with it. There are instructions in the manual that came with the router for doing this. &lt;br /&gt;
&lt;br /&gt;
Another resource that might be helpful is located at http://www.users.uswest.net/~rlutton/ADSL/. This is a good, concise resource for some basic info about the Cisco 675 and its NAT capabilities. It also explains basic security features that the casual home user can implement if so inclined.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How can I play games through my DSL router (Cisco 678) when I have NAT enabled?===&lt;br /&gt;
&lt;br /&gt;
Many customers have found out that the Network Address Translation (NAT) functions of the Cisco 675 External DSL Router interfere with interactive internet games. Cisco has overcome this problem with the release of the v2.4.8 CBOS operating system. You can download this update from ftp.xmission.com (using your XMission username/password), and then going to /archive/dsl.&lt;br /&gt;
&lt;br /&gt;
Download the code, read the &amp;quot;readme&amp;quot; file, upgrade your router, and then send the following command for games to work:&lt;br /&gt;
&amp;lt;tt&amp;gt;set nat entry add 10.0.0.2&amp;lt;/tt&amp;gt;&lt;br /&gt;
(or the IP address of the machine you&#039;re playing games on).&lt;br /&gt;
&amp;lt;tt&amp;gt;set nat timeout udp 360&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
More information about NAT entry commands can be found here in the CBOS section:&lt;br /&gt;
http://www.cisco.com/univercd/cc/td/doc/product/dsl_prod/c600s/index.htm&lt;br /&gt;
&lt;br /&gt;
===Why do I see a lot of ICMP traffic hitting my DSL line?===&lt;br /&gt;
&lt;br /&gt;
ICMP provides error reporting, congesting reporting and first-hop gateway redirection. In addition to being used for ping, ICMP is used to as a message control and error-reporting protocol between a host server and a gateway to the Internet. It is normal to see ICMP traffic. However, if you&#039;re noticing a great deal of echo/echo-reply traffic (echo/echo-reply is what ping is), to the extent that it&#039;s begining to consume your bandwidth, you should probably [http://www.xmission.com/help/contact/ contact technical support]. For more in depth information about ICMP and how it&#039;s used, please refer to [http://www.ietf.org/rfc/rfc0792.txt RFC 792].  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=203</id>
		<title>MySQL FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=203"/>
		<updated>2007-07-29T01:09:56Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is SQL?==&lt;br /&gt;
SQL stands for &amp;quot;Structured Query Language&amp;quot;. SQL is the most common  standardized language used to access databases.&lt;br /&gt;
&lt;br /&gt;
XMission uses MySQL, which is a very popular open-source database  management system. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What version of MySQL does XMission use?==&lt;br /&gt;
XMission currently has two versions of MySQL running: version 5.0.24a and version 4.1.11. The current version is also displayed when you log in to the MySQL server. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How much does a database at XMission cost?==&lt;br /&gt;
If you have a Deluxe Hosting or Pro Hosting account, an SQL database  is included in your account package. For any other account type, the charge is $5 per month.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I get a database set up for my account?==&lt;br /&gt;
To add a database to your account, either [mailto:sql@xmission.com email sql@xmission.com] or contact sales. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I log in to my database?==&lt;br /&gt;
Depending on your MySQL version, you will need to connect to a different host. For MySQL version 4.x, the server name is &#039;&#039;mysql-41.xmission.com&#039;&#039;&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: &#039;&#039;mysql.xmission.com&#039;&#039; is the same machine, and will work for legacy purposes.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For MySQL version 5.x the server name is &#039;&#039;mysql-50.xmission.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To connect directly to the database from our shell server:&lt;br /&gt;
#telnet or ssh to &#039;&#039;shell.xmission.com&#039;&#039;&lt;br /&gt;
#&amp;lt;tt&amp;gt;mysql -u acctname -h servername -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
#This will prompt you for a password, which is not necessarily the same as your login password.&lt;br /&gt;
&lt;br /&gt;
For example: to connect to a MySQL version 5.x database, you would use:&lt;br /&gt;
&amp;lt;tt&amp;gt;mysql -u acctname -h mysql-50.xmission.com -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What can I use to access my database?==&lt;br /&gt;
There isn&#039;t a &amp;quot;recommended&amp;quot; method to access your database, but here  is a list of the more popular programing languages connection methods  which we support. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;perl&#039;&#039;&#039; : DBI module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;python&#039;&#039;&#039; : mysql module or MySQLdb module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;php&#039;&#039;&#039; : php has been compiled with the mysql functions built in &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C&#039;&#039;&#039; : The header and libraries for mysql are installed so #include  &amp;lt;mysql/mysql.h&amp;gt; will need to be present in your source files. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C++&#039;&#039;&#039; : same as C, but we also have mysql++ headers and libraries on  XMission servers. To use this, #include &amp;lt;sqlplus&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Java&#039;&#039;&#039; : JDBC classes are available &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What do I do if I forgot my password?==&lt;br /&gt;
[mailto:sql@xmission.com Email sql@xmission.com] to have  your password reset. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Do I have a size limit (quota) for my database?==&lt;br /&gt;
&lt;br /&gt;
Yes. The size of your database counts against your /home quota, which is  100MB default for most account types. Pro Hosting accounts get 200MB /home  storage, and additional storage can be purchased.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about using MySQL?==&lt;br /&gt;
Thorough documentation can be found at [http://www.mysql.com MySQL.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=User:DANIEL_MCINTYRE&amp;diff=202</id>
		<title>User:DANIEL MCINTYRE</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=User:DANIEL_MCINTYRE&amp;diff=202"/>
		<updated>2007-07-29T01:08:48Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: /* Other info */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Your Web Space==&lt;br /&gt;
*[[Uploading Basics]]&lt;br /&gt;
&lt;br /&gt;
==FTP Client Setup==&lt;br /&gt;
===Windows Clients===&lt;br /&gt;
*[[FileZilla Setup]] (free)&lt;br /&gt;
*[[SmartFTP Setup]] (free for personal use) &lt;br /&gt;
*[[CuteFTP Setup]] ($)&lt;br /&gt;
*[[WSFTP Setup]] ($)&lt;br /&gt;
*[[Frontpage Setup]]&lt;br /&gt;
&lt;br /&gt;
===Macintosh Clients===&lt;br /&gt;
*[[CyberDuck Setup]] (free)&lt;br /&gt;
*[[Fetch Setup]] ($)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Securing Your Website==&lt;br /&gt;
*[[SSL Info]]&lt;br /&gt;
*[[SSL Tutorial]]&lt;br /&gt;
*[[Password protecting a directory with .htaccess]]&lt;br /&gt;
*[[Formmail.pl security warning]]&lt;br /&gt;
&lt;br /&gt;
==Other info==&lt;br /&gt;
*[[CGIemail]]&lt;br /&gt;
*[[Website Counters]]&lt;br /&gt;
*[[suPHP on XMission]]&lt;br /&gt;
*[[MySQL FAQ]]&lt;br /&gt;
*[[CGI help]]&lt;br /&gt;
*[[Access logs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Content_Filtering&amp;diff=201</id>
		<title>Content Filtering</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Content_Filtering&amp;diff=201"/>
		<updated>2007-07-29T01:07:07Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;XMission encourages parents to actively participate in their children&#039;s Internet experience. For many, that includes setting up a web content filter on the family computer. Such filters can help you and your children best enjoy education and entertainment on your computer but we must stress that technology can never replace a parent at your child&#039;s side when at the computer.&lt;br /&gt;
&lt;br /&gt;
==How does content filtering work?== &lt;br /&gt;
Most web filters use &amp;quot;proxy&amp;quot; software to automatically process all incoming content. Originally, proxy filtering was used to simply speed up access to web pages by locally storing copies of popular web pages but once the Internet became more popular, some proxy filters were modified to provide content filtering. A content filter automatically inspects text and image filenames from a web page to determine whether or not a site is appropriate for the computer user. Ideally, the person will be able to access everything they need to but anything inappropriate will be transparently filtered out. XMission provides access to a variety of [[proxy| proxy servers]].&lt;br /&gt;
&lt;br /&gt;
==Does XMission have a web filter?== &lt;br /&gt;
Yes. A web content filter called [http://dansguardian.org/ DansGuardian] is a free and readily available solution for all XMission customers after they read the [[DansGuardian Usage|Disclaimer]].&lt;br /&gt;
&lt;br /&gt;
==Why content filtering?== &lt;br /&gt;
This is entirely a matter of personal opinion. XMission simply offers content filtering as an option so our customers can choose to use the service if they have need of it in their home.&lt;br /&gt;
&lt;br /&gt;
==What about business owners?== &lt;br /&gt;
Most media and legislation attention has focused on concerns about web content and children but there are products written specifically for businesses. XMission does not recommend DansGuardian for business environments since it is tailored for children and may inhibit productivity as a result.&lt;br /&gt;
&lt;br /&gt;
==Are there other options?== &lt;br /&gt;
Absolutely. Whatever you decide is best for your family or office, remember that technology can only provide part of the solution. If you do use a content filter, remember that that not only may some legitimate sites be accidentally blocked but some sites you might not consider appropriate will likely still be unfiltered. This is part of why we recommend you spend time with your children when they&#039;re at the computer. Of course, you just might enjoy each other&#039;s company too.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Proxy&amp;diff=200</id>
		<title>Proxy</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Proxy&amp;diff=200"/>
		<updated>2007-07-29T01:04:28Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Proxy Servers&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
An HTTP, or web, proxy server provides a gateway between your browser and the rest of the Internet. A proxy server replaces your identity (IP address, in this case) with its own, making it possible to browse more privately, securely, and can offer additional features depending upon the proxy. XMission now provides three different web proxies. Information about each is listed below.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Dial-up Web Accelerator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Our dial-up accelerator transparently compresses and caches web documents (i.e., text and html) locally to cut down on load time. Downloading compressed and cached web pages through XMission can speed up web browsing for dial-up users. To use this service, find your browser on our [[Dial-up Web Accelerator Usage]] instruction page.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Privoxy&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Privoxy is geared towards filtering pop-up advertisements and regular web advertisements. XMission had previously offered a proxy called &amp;quot;Junkbuster&amp;quot; for the same purpose. Privoxy is based off Junkbuster but provides better filtering. Privoxy also provides all of the features offered by the &amp;quot;Normal Caching Proxy&amp;quot;. If you wish to use this service, find your browser on our [[Privoxy Usage]] instruction page.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DansGuardian&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
DansGuardian is a web proxy capable of [[Content Filtering|filtering]] out web content (sex, drugs, profanity, violence, etc.) some might consider offensive. DansGuardian also offers all of the features offered by &amp;quot;Privoxy&amp;quot; and the &amp;quot;Normal Caching Proxy&amp;quot;.  If you wish to use this service, visit our [[DansGuardian Usage]] page.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Normal Caching Proxy&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Our normal proxy transparently caches web documents locally to cut down on load time. Downloading a web page from an XMission server is faster than downloading one from across the Internet. If you wish to use this service, find your browser on our [[Caching Proxy Usage]] instruction page.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Access_logs&amp;diff=199</id>
		<title>Access logs</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Access_logs&amp;diff=199"/>
		<updated>2007-07-29T01:00:44Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;While Web Hosting customers are already provided with [http://stats.xmission.com/vhost2/ Webalizer web statistics], all  customers with web space can choose to generate web statistics themselves to track their web site traffic however they see fit. At XMission, logs for your web site can be copied nightly to an &amp;quot;access_log&amp;quot; file, which uses standard web log formatting.&lt;br /&gt;
&lt;br /&gt;
==Usage== &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: The following instructions are for Apache; users who wish to remain on the old Roxen server will need to use &#039;&#039;access_roxen&#039;&#039; in place of &#039;&#039;access_log&#039;&#039; in all instances. Keep in mind that if both  &#039;&#039;access_log&#039;&#039; and  &#039;&#039;access_roxen&#039;&#039; files are present in the directory, the &#039;&#039;access_log&#039;&#039; file will take precedence.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To create an access_log  for your account, make the file, &amp;lt;tt&amp;gt;access_log&amp;lt;/tt&amp;gt; in your &amp;lt;tt&amp;gt;public_html&amp;lt;/tt&amp;gt;  directory. Be sure that it is group writable (&amp;lt;tt&amp;gt;chmod g+w access_log&amp;lt;/tt&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You may set all public_html permissions to defaults by logging in to http://home.xmission.com/ and selecting the &amp;quot;My Account&amp;quot; tab. There, you will find a &amp;quot;Repair Your Web Permissions&amp;quot; option under the &amp;quot;XMission Tools&amp;quot; section.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you&#039;d like your  statistics to be viewable from the web (e.g., With Netscape or Internet  Explorer), you need to make the &amp;lt;tt&amp;gt;access_log&amp;lt;/tt&amp;gt; group readable  as well (&amp;lt;tt&amp;gt;chmod g+r access_log&amp;lt;/tt&amp;gt;). Once proper permissions are  set, point your browser to the following URL, replacing &amp;lt;tt&amp;gt;acctname&amp;lt;/tt&amp;gt; with your XMission username.   &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;http://www.xmission.com/~acctname/access_log&amp;lt;/tt&amp;gt;                &lt;br /&gt;
&lt;br /&gt;
If you don&#039;t want it publicly viewable, make sure the group readable  access is off (&amp;lt;tt&amp;gt;chmod g-r access_log&amp;lt;/tt&amp;gt;). &lt;br /&gt;
&lt;br /&gt;
Because the file  will continue to grow, keep an eye on the size. This does count against  your disk quota.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=CGI_help&amp;diff=198</id>
		<title>CGI help</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=CGI_help&amp;diff=198"/>
		<updated>2007-07-29T01:00:00Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Common Gateway Interface (CGI) services are typically scripts or programs  that can be executed in conjunction with web pages. They are often used  to process data entered by a visitor. &lt;br /&gt;
&lt;br /&gt;
While HTML is a  static language that mainly controls page layout, CGI (Common Gateway  Interface) opens up many possibilities for dynamic web pages. XMission  encourages our subscribers to explore what CGI can do for them. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Naming &amp;amp; Placement==&lt;br /&gt;
CGI on XMission requires no interaction from administration. You can set  up your own CGI scripts in your public_html directory simply by naming  them with a filename ending in &amp;quot;.cgi&amp;quot;. There is no need to put your scripts  in a cgi-bin directory. (This is also the same with &amp;quot;.php&amp;quot; and  &amp;quot;.php3&amp;quot;.) &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Permissions===&lt;br /&gt;
The file should be set to allow the web server execute permissions.  Assuming the group on the file is &amp;quot;www&amp;quot;, issuing the command &amp;quot;chmod  g+x filename.cgi&amp;quot; (using your XMission shell account) would give the  web server permission to execute the file. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;:  You may set all public_html permissions to defaults by logging in to http://home.xmission.com/ and selecting the &amp;quot;My Account&amp;quot; tab. There, you will find a &amp;quot;Repair Your Web Permissions&amp;quot; option under the &amp;quot;XMission Tools&amp;quot; section.&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SSI (Server Side Includes)===&lt;br /&gt;
If you wish to include your script as a part of an HTML file, you will want to use Server Side Includes (SSI) with the Apache web server. The syntax is very simple. You simply need to give your file the &amp;quot;.shtml&amp;quot;  extension instead of just &amp;quot;.html&amp;quot; and use the following tag within the  file where you&#039;d like to include the script: &amp;quot;&amp;lt;!--#include file=&amp;quot;filename&amp;quot;--&amp;gt;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==WWW Services==&lt;br /&gt;
&lt;br /&gt;
WWW services can be  invoked by using a URL such as &amp;quot;http://www.xmission.com/cgi-bin/servicename&amp;quot;,  where &amp;quot;servicename&amp;quot; is the name of the service you&#039;re invoking. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===cgiemail===&lt;br /&gt;
This is a powerful WWW-to-email gateway that can be configured for your  specific needs. By default, you have a simple cgiemail form in your  public_html directory. It comes in two parts: mail.html and mail.txt.  Refer to our [cgi-email cgiemail help page]  for details. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===post-query ===&lt;br /&gt;
This is a debugging aid for CGI script writers. It shows the data delivered  by a form using the POST method. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===query===&lt;br /&gt;
This is a debugging aid for CGI script writers. It shows the data delivered  by an ISINDEX query. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===showrawenv===&lt;br /&gt;
This is a debugging aid for CGI script writers. It shows the entire  environment available to the CGI script. This is handy for examining  the default command search path, for instance. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===test-cgi===&lt;br /&gt;
This is a debugging aid for CGI script writers. It shows CGI related  information (i.e., command line arguments and related environment variables).&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=SuPHP_on_XMission&amp;diff=197</id>
		<title>SuPHP on XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=SuPHP_on_XMission&amp;diff=197"/>
		<updated>2007-07-29T00:58:38Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;With the transition to Apache 2 servers, a new solution was needed to allow users  to execute PHP scripts, while maintaining security. suPHP is a tool for executing  PHP scripts with the permissions of their owners.&lt;br /&gt;
&lt;br /&gt;
Some users will have php configuration values in their .htaccess files. Some configuration lines won&#039;t work with suPHP - at least, not within the .htaccess file. In particular, &amp;quot;php_value&amp;quot; and &amp;quot;php_flag&amp;quot; values are the two that are problematic.&lt;br /&gt;
&lt;br /&gt;
First, you must move all lines beginning with &amp;quot;php_value&amp;quot; and &amp;quot;php_flag&amp;quot; from your .htaccess file into a file called php.ini (in your public_html directory). Then, you must add a line to your .htaccess file like the one below (with &amp;quot;u&amp;quot; being the first letter of your username, and of course &amp;quot;username&amp;quot; being your actual username).&lt;br /&gt;
&amp;lt;pre&amp;gt;suPHP_ConfigPath /home/users/u/username/public_html&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will need to remove php_value and php_flag from ALL .htaccess files you may have. However, you only need to add the suPHP_ConfigPath line in the .htaccess file in your public_html directory only.&lt;br /&gt;
&lt;br /&gt;
Secondly, you must make sure that the lines you put in php.ini are in the correct format:&lt;br /&gt;
&amp;lt;pre&amp;gt;setting_name = setting_value&amp;lt;/pre&amp;gt;&lt;br /&gt;
Let&#039;s say you have the following line in your .htaccess file:&lt;br /&gt;
&amp;lt;pre&amp;gt;php_value register_globals 0&amp;lt;/pre&amp;gt;&lt;br /&gt;
the corresponding php.ini format is as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;register_globals = Off&amp;lt;/pre&amp;gt;&lt;br /&gt;
Notice how the value 0 becomes Off (without quotes) and 1 becomes On.  If your php_value has quotes like the following, for example:&lt;br /&gt;
&amp;lt;pre&amp;gt;php_value include_path &amp;quot;/home/users/u/username/cgi-bin&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
The corresponding php.ini format is:&lt;br /&gt;
&amp;lt;pre&amp;gt;include_path = &amp;quot;/home/users/u/username/cgi-bin&amp;quot;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Website_Counters&amp;diff=196</id>
		<title>Website Counters</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Website_Counters&amp;diff=196"/>
		<updated>2007-07-29T00:57:22Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;XMission has a simple web counter that all customers can use. This counter eliminates the need to write or download scripts to show a visitor count on your web pages. &lt;br /&gt;
&lt;br /&gt;
Text counters are easily applied by using a simple line of code to the web page you wish to add a counter to. The text of the counter can be manipulated with some simple command flags to change the face, style, and color. &lt;br /&gt;
&lt;br /&gt;
For example, this code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;img src=&amp;quot;http://counter.xmission.com/cgi-bin/wwwcount.cgi?df=username&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Creates this counter: &lt;br /&gt;
&amp;lt;img src=&amp;quot;http://counter.xmission.com/cgi-bin/wwwcount.cgi?df=username&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and this more complicated code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;img src=&amp;quot;http://counter.xmission.com/cgi-bin/wwwcount.cgi?ft=0&amp;amp;amp;df=username&amp;amp;amp;prgb=101010&amp;amp;amp;trgb=000000&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Produces this basic counter:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;img src=&amp;quot;http://counter.xmission.com/cgi-bin/wwwcount.cgi?ft=0&amp;amp;df=username&amp;amp;prgb=101010&amp;amp;trgb=000000&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will need to modify the &amp;quot;username&amp;quot; value in the string, with &amp;quot;username&amp;quot; being  your XMission username, unless you have web hosting with us, in which case you could use your virtual host name (i.e., www.soyonlegs.com). The value simply enables the counter software to track the number of unique hits to your specific site. NOTE: if you want to your counter to show a unique number of hits to each page of your site, be sure that each page has a unique value (e.g., &amp;quot;username1&amp;quot; and &amp;quot;username2&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
This counter is called [http://www.muquit.com/muquit/software/Count/Count.html Count 2.5]. We recommend that only the most technical or adventurous use anything but the  default example above or one from our [[Counter Examples]] page.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=CGI_Email&amp;diff=195</id>
		<title>CGI Email</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=CGI_Email&amp;diff=195"/>
		<updated>2007-07-29T00:56:28Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;:  These instructions assume you are familiar with basic HTML  and fill-out forms. You should also note that all file names and form  fields are case sensitive. XMission uses a CGI tool called cgi-email  to generate email from a fill-out form page without the need for  a separate email client (which would be needed with a &amp;lt;a href=mailto:acctname@xmission.com&amp;gt; tag). To configure your own email form, you need to create a form  with the appropriate &amp;quot;action&amp;quot; URL and create a template email message.  These steps are outlined in detail below.&amp;lt;/div&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
For easy reference and comparison, XMission creates a simple email  form in your public_html directory when your account is activated.  The files are mail.html (the fill-out form)  and mail.txt (the template message). You may  choose to modify these to fit your needs or just view their structures  to better understand how you will need to create your own.  &lt;br /&gt;
&lt;br /&gt;
For more details about CGI Email, or to learn how to set it up on  your own server, refer to [http://web.mit.edu/wwwdev/cgiemail/ MIT&#039;s CGI Email] help pages.&lt;br /&gt;
&lt;br /&gt;
==Creating the Form==  &lt;br /&gt;
&lt;br /&gt;
When you create your form, there are two main things you will need  to do. The first is to be certain that all the form fields have a  unique name. The second is to properly set the &amp;lt;form&amp;gt; tag. Any  standard form entries may be used (such as radio buttons, check boxes,  pull-down select menus, etc.). Below is a short example of a proper  form, but you may also review your mail.html.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;John Doe&#039;s Email Form&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body bgcolor=&amp;quot;#FFFFFF&amp;quot; text=&amp;quot;#000000&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Please fill out the form below.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;form method=&amp;quot;POST&amp;quot; action=&amp;quot;http://www.xmission.com/cgi-bin/cgiemail/~username/mail.txt&amp;quot;&amp;gt;&lt;br /&gt;
Your Name: &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;name&amp;quot; size=&amp;quot;50&amp;quot;&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
E-Mail Address: &amp;lt;input type=&amp;quot;text&amp;quot;  name=&amp;quot;required-email&amp;quot; size=&amp;quot;50&amp;quot;&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Subject: &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;subject&amp;quot;  size=&amp;quot;50&amp;quot;&amp;gt;&amp;lt;Br&amp;gt;&lt;br /&gt;
&amp;lt;Br&amp;gt;&lt;br /&gt;
Message / Request: &amp;lt;Br&amp;gt;&lt;br /&gt;
&amp;lt;textarea name=&amp;quot;content&amp;quot; rows=10 cols=66&amp;gt;&amp;lt;/textarea&amp;gt;&lt;br /&gt;
&amp;lt;Br&amp;gt; &lt;br /&gt;
&amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;Send&amp;quot; name=&amp;quot;submit&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;input type=&amp;quot;reset&amp;quot; value=&amp;quot;Clear&amp;quot; name=&amp;quot;reset&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;  &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In red, you will see the &amp;lt;form&amp;gt; tag. The method will be post,  and the action will be your template message through our cgi-email  script. The syntax shown in the form tag above should be followed  exactly. You will, of course, replace &amp;quot;acctname&amp;quot; with your XMission  account name, and mail.txt with the location and name of your template  message. Your template message must be located in your public_html  directory or a sub-directory within it. To show an example of a variation,  the XMission username will be &amp;quot;web&amp;quot;, the template message will  be located in the public_html/contact/ directory, and it will be named  &amp;quot;order.txt&amp;quot;. &amp;lt;pre&amp;gt;&amp;lt;form method=&amp;quot;POST&amp;quot;  action=&amp;quot;http://www.xmission.com/cgi-bin/cgiemail/~web/contact/order.txt&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
A notable bonus of using cgi-email is shown above in green. You can  make a field required by preceding its name with &amp;quot;required-&amp;quot;. XMission  recommends that you make the email address a required field. The reason  being, if you reply to your form and there is no email address present,  your reply will automatically be sent to XMission&#039;s webmaster instead  of the intended recipient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Creating the Template Message==  &lt;br /&gt;
&lt;br /&gt;
The template message is the email message that will be sent to you  when the form is submitted. It&#039;s a simple text file in the format  of an email message. Because cgi-email sends this text file as an  email message, it must have the proper header fields to work properly  and must not have any blank lines before the first field.  &lt;br /&gt;
&lt;br /&gt;
The format of the template after the header lines is up to you. The  only thing you must have is the names of the form fields in brackets.  Below is an example of a text template to go with the form above.  You may also review your mail.txt file.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
To: John Doe &amp;lt;username@xmission.com&amp;gt;&lt;br /&gt;
From: name &amp;lt;required-email&amp;gt;&lt;br /&gt;
Reply-to: required-email&lt;br /&gt;
Subject: subject &lt;br /&gt;
&lt;br /&gt;
Sender&#039;s Name: name&lt;br /&gt;
Email Address: required-email &lt;br /&gt;
&lt;br /&gt;
Comments or Request:&lt;br /&gt;
content &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You would, of course, replace &amp;quot;John Doe&amp;quot; with the name of the person  or department that the email message is being sent to, and &amp;quot;username@xmission.com&amp;quot;  with the destination email address.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Adding a &amp;quot;success&amp;quot; Page==  &lt;br /&gt;
&lt;br /&gt;
By default, there is a text confirmation page that notifies the sender  that the email message was sent successfully. However, some XMission  subscribers would like to replace it with a nicer HTML success page.  This is easy with cgi-email.  &lt;br /&gt;
&lt;br /&gt;
You will need to open the HTML form and add a hidden form field. The syntax will look like the following example&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;success&amp;quot; value=&amp;quot;http://www.xmission.com/~acctname/successpage.html&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unlike the other form fields, you cannot change the name of the &amp;quot;success&amp;quot;  field. It must be named &amp;quot;success&amp;quot; for it to work properly. The value  is the URL of the success page that you want to appear after the sender  has successfully completed and submitted the form. The example above  will show the file named &amp;quot;successpage.html&amp;quot; in acctname&#039;s public_html  directory. The success page value must be a fully-qualified URL, so  you may want to be sure it works in a browser first.&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Password_Protecting_a_Directory_With_%22.htaccess%22&amp;diff=193</id>
		<title>Password Protecting a Directory With &quot;.htaccess&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Password_Protecting_a_Directory_With_%22.htaccess%22&amp;diff=193"/>
		<updated>2007-07-29T00:52:43Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
This document assumes you have a basic understanding  of the UNIX shell.&lt;br /&gt;
&lt;br /&gt;
Web access control on XMission is a function of the web server. It  lets you set permissions on who can access your web documents based  on username/password, a group defined by you, or the client&#039;s Internet  address. This method will allow you to protect access to an entire  directory, and any files and directories within it. &lt;br /&gt;
Since the most common control used is by username/password, the  the following document covers instructions for that method only. If  you would like to learn how to control access by other methods, you  can refer to the [http://httpd.apache.org/docs-2.0/  Apache web server documentation] on the subject. &lt;br /&gt;
&lt;br /&gt;
When setting up password protection on a directory, you will need  the following two files: &lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;.htaccess&#039;&#039;&#039; - This files is placed in the directory to be protected and it defines  the restriction types and rules to be followed. &lt;br /&gt;
*&#039;&#039;&#039;password file&#039;&#039;&#039; (You may choose the name.) - This file contains clear text usernames with encrypted passwords.  We recommend that you put this file in your root directory. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Creating the .htaccess File== &lt;br /&gt;
&lt;br /&gt;
The .htaccess file is the file that defines  what type of control to use, what file to reference for usernames/password,  what the dialog box will say when prompted for a password, and what  requirements should be met. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Placement and Permissions===&lt;br /&gt;
&lt;br /&gt;
The .htaccess file should be placed in the directory that you want  to protect. The file should be owned by you with the group &amp;quot;www&amp;quot;,  and permissions set to 640. When this is done correctly, a long  listing showing the file will look like this: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;-rw-r----- 1 acctname www 170 Aug 24 2001 .htaccess&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You may set all public_html permissions to defaults by logging in to http://home.xmission.com/ and selecting the &amp;quot;My Account&amp;quot; tab. There, you will find a &amp;quot;Repair Your Web Permissions&amp;quot; option under the &amp;quot;XMission Tools&amp;quot; section.&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Format===&lt;br /&gt;
&lt;br /&gt;
The format of the file should be as follows, with no blank lines  before the text begins: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;AuthUserFile /home/users/a/acctname/.passwordfile&lt;br /&gt;
AuthGroupFile /dev/null&lt;br /&gt;
AuthName &#039;Access For Valid Users&#039;&lt;br /&gt;
AuthType Basic&lt;br /&gt;
&amp;lt;Limit GET&amp;gt;&lt;br /&gt;
require valid-user&lt;br /&gt;
&amp;lt;/Limit&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The AuthUserFile is the file that has the authorized users&#039; usernames  and passwords. This must be the complete path. &lt;br /&gt;
&lt;br /&gt;
The AuthGroup file isn&#039;t used when simply password protecting a  directory. Because of this, we&#039;ve identified it as /dev/null (effectively,  nothing). &lt;br /&gt;
&lt;br /&gt;
The AuthName is the dialog that will be shown when a user is  prompted for their username and password.				&lt;br /&gt;
&lt;br /&gt;
AuthType is the type of authentication that will be used. For password  protecting a directory, it just needs to be &amp;quot;Basic&amp;quot; &lt;br /&gt;
&lt;br /&gt;
The &amp;lt;Limit&amp;gt; tag defines both what is allowed to be done in  the directory, and the requirements for allowing someone into it.&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: If you have forms or cgi scripts in the protected directory,  your limit should be set to &amp;lt;Limit GET POST&amp;gt;.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Creating the Password File== &lt;br /&gt;
&lt;br /&gt;
The password file is the file that contains the usernames and passwords  that the .htaccess file will reference for authentication. &lt;br /&gt;
&lt;br /&gt;
===Placement and Permissions=== &lt;br /&gt;
&lt;br /&gt;
The password file should be placed outside of your public_html  directory for added security. Files in your root directory, outside  public_html, can&#039;t be viewed from the web. The file should be owned by you with the group &amp;quot;www&amp;quot;, and permissions set to 640. When this is done correctly, a long listing showing the file will look like this: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;-rw-r----- 1 acctname www 170 Aug 24 2001 .passwordfile&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You may set all public_html permissions to defaults by logging in to http://home.xmission.com/ and selecting the &amp;quot;My Account&amp;quot; tab. There, you will find a &amp;quot;Repair Your Web Permissions&amp;quot; option under the &amp;quot;XMission Tools&amp;quot; section.&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Creation===&lt;br /&gt;
&lt;br /&gt;
In the directory you wish to create the password file, type the  following: &amp;lt;tt&amp;gt;htpasswd -c passwordfile username&amp;lt;/tt&amp;gt;&lt;br /&gt;
You will then be prompted to enter the password for &amp;quot;username&amp;quot;. &lt;br /&gt;
You may replace &amp;quot;passwordfile&amp;quot; with the name of your password file,  and &amp;quot;username&amp;quot; with the username you would like to add to it. &lt;br /&gt;
&lt;br /&gt;
===Changing Passwords=== &lt;br /&gt;
&lt;br /&gt;
To change a password for a user, go to the directory that  the password file is located, and type the following: &amp;lt;tt&amp;gt;htpasswd passwordfile username&amp;lt;/tt&amp;gt;&lt;br /&gt;
You will then be prompted to enter the new password for &amp;quot;username&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
===Removing Users===&lt;br /&gt;
&lt;br /&gt;
To remove a user from the password file, simply edit the  file with a text editor, delete the line the user&#039;s name and password  is located on, and then save it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Enabling Directory Tree Viewing== &lt;br /&gt;
&lt;br /&gt;
For security reasons, directory tree viewing is disabled by default.  If you&#039;d like to show a directory tree of all the files in a specified  directory, however, the option is available. You&#039;ll need to create a  file called &#039;&#039;.htaccess&#039;&#039; in the directory  that you want viewable. In your XMission shell, you can do this by  issuing the command &amp;lt;tt&amp;gt;echo Options +Indexes &amp;gt; .htaccess&amp;lt;/tt&amp;gt; inside the public_html directory.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: This won&#039;t have any effect while using a Basic Hosting package.&amp;lt;/div&amp;gt;   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Controlling your error page==&lt;br /&gt;
&lt;br /&gt;
You can use the ErrorDocument directive to change the 404 error that  comes up when someone accesses a bad url on your webspace. The syntax  is as follows:&lt;br /&gt;
&lt;br /&gt;
ErrorDocument 404 /~username/my_404_error.html&lt;br /&gt;
&lt;br /&gt;
For more details about this directive (and other htaccess directives), visit:&lt;br /&gt;
&lt;br /&gt;
http://httpd.apache.org/docs/mod/core.html#errordocument&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Secure_Web_(SSL)_Tutorial&amp;diff=192</id>
		<title>Secure Web (SSL) Tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Secure_Web_(SSL)_Tutorial&amp;diff=192"/>
		<updated>2007-07-29T00:50:05Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;XMission supports  the SSL (Secure Sockets Layer) method for secure transactions across the  Internet. The Internet&#039;s standard for secure transactions, SSL involves  full end-to-end encryption of all socket communications. The basic idea  behind SSL is to use advanced encryption to send sensitive data across  the Internet to lower the possibility of third party interception during  transit. It is important to realize that  &#039;&#039;&#039;no method of encryption  can be considered 100% secure &#039;&#039;&#039;. By simply using &amp;quot;https://&amp;quot;  instead of &amp;quot;http://&amp;quot; your SSL compliant web browser will be  able to access encrypted secure web services at any supported target. &lt;br /&gt;
&lt;br /&gt;
Following are some SSL guidelines to remember when securing your own web pages:  &lt;br /&gt;
&lt;br /&gt;
*Anything referenced by the normal &amp;quot;http:&amp;quot; will show up as &amp;quot;nonsecure&amp;quot;,  indicated by an unlocked padlock icon on the lower right-hand side  of Netscape&#039;s screen, and the lack of a padlock icon with Microsoft&#039;s  Internet Explorer. &lt;br /&gt;
*When linking to a page you wish to be secure, the link should use  the following syntax: &amp;lt;pre&amp;gt;&amp;lt;A HREF=&amp;quot;https://www.xmission.com/~acctname/file.html&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
*To avoid messages to visitors indicating that part of the page isn&#039;t  secure, it is always better to use a localized reference to documents  within your own space. &#039;&#039;&#039;This includes images.&#039;&#039;&#039; In other words,  instead of:&lt;br /&gt;
*: &lt;br /&gt;
*:&amp;lt;pre&amp;gt;&amp;lt;A HREF=&amp;quot;http://www.xmission.com/~acctname/orders/mail.html&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
*: &lt;br /&gt;
*:use:&lt;br /&gt;
*: &lt;br /&gt;
*:&amp;lt;pre&amp;gt;&amp;lt;A HREF=&amp;quot;orders/mail.html&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
*Most popular web browsers support SSL, but some older web browsers still do not. If you experience problems while trying to access your secure web sites, we recommend upgrading your browser or using one, such as Netscape, that supports SSL. To accommodate your visitors that may not be able to use SSL, it is a good idea to have &amp;quot;SECURE&amp;quot;  and &amp;quot;UNSECURE&amp;quot; areas to give them a backup option. &lt;br /&gt;
&lt;br /&gt;
If you have a Virtual  Hosting account with XMission, and you&#039;d like to use SSL with your domain,  please read our [[SSL info]].&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Secure_Web_(SSL)_Tutorial&amp;diff=191</id>
		<title>Secure Web (SSL) Tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Secure_Web_(SSL)_Tutorial&amp;diff=191"/>
		<updated>2007-07-29T00:47:17Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;XMission supports  the SSL (Secure Sockets Layer) method for secure transactions across the  Internet. The Internet&#039;s standard for secure transactions, SSL involves  full end-to-end encryption of all socket communications. The basic idea  behind SSL is to use advanced encryption to send sensitive data across  the Internet to lower the possibility of third party interception during  transit. It is important to realize that  &#039;&#039;&#039;no method of encryption  can be considered 100% secure &#039;&#039;&#039;. By simply using &amp;quot;https://&amp;quot;  instead of &amp;quot;http://&amp;quot; your SSL compliant web browser will be  able to access encrypted secure web services at any supported target. &lt;br /&gt;
&lt;br /&gt;
Following are some SSL guidelines to remember when securing your own web pages:  &lt;br /&gt;
&lt;br /&gt;
*Anything referenced by the normal &amp;quot;http:&amp;quot; will show up as &amp;quot;nonsecure&amp;quot;,  indicated by an unlocked padlock icon on the lower right-hand side  of Netscape&#039;s screen, and the lack of a padlock icon with Microsoft&#039;s  Internet Explorer. &lt;br /&gt;
*When linking to a page you wish to be secure, the link should use  the following syntax: &amp;lt;pre&amp;gt;&amp;lt;A HREF=&amp;quot;https://www.xmission.com/~acctname/file.html&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
*To avoid messages to visitors indicating that part of the page isn&#039;t  secure, it is always better to use a localized reference to documents  within your own space. &#039;&#039;&#039;This includes images.&#039;&#039;&#039; In other words,  instead of:&lt;br /&gt;
*: &lt;br /&gt;
*:&amp;lt;pre&amp;gt;&amp;lt;A HREF=&amp;quot;http://www.xmission.com/~acctname/orders/mail.html&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
*: &lt;br /&gt;
*:use:&lt;br /&gt;
*: &lt;br /&gt;
*:&amp;lt;pre&amp;gt;&amp;lt;A HREF=&amp;quot;orders/mail.html&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
*Most popular web browsers support SSL, but some older web browsers still do not. If you experience problems while trying to access your secure web sites, we recommend upgrading your browser or using one, such as Netscape, that supports SSL. To accommodate your visitors that may not be able to use SSL, it is a good idea to have &amp;quot;SECURE&amp;quot;  and &amp;quot;UNSECURE&amp;quot; areas to give them a backup option. &lt;br /&gt;
&lt;br /&gt;
If you have a Virtual  Hosting account with XMission, and you&#039;d like to use SSL with your domain,  please read [[SSL]].&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=How_Secure_Web_(SSL)_Works&amp;diff=190</id>
		<title>How Secure Web (SSL) Works</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=How_Secure_Web_(SSL)_Works&amp;diff=190"/>
		<updated>2007-07-29T00:45:41Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
Most web sites will use SSL encryption for collecting personal  or confidential information. You&#039;ll most often see the use of SSL encryption when purchasing something online or viewing private statistics or documents. You&#039;ll notice that the URL (or web address) will start with https:// instead of http://. Your browser will recognize this is secure. The process is usually very smooth on the client&#039;s side. This may be an option that you&#039;re looking into for your web site hosted by XMission.&lt;br /&gt;
&lt;br /&gt;
In more detail, SSL, Secure Sockets Layer, is the leading security protocol on the Internet. When an SSL session is started, the browser sends its public key to the server so that the server can securely send a secret key to the browser. The browser and server exchange data via secret key encryption during that session.&lt;br /&gt;
&lt;br /&gt;
An SSL certificate is a unique digital ID that can be used to verify the identity of a person, web site, or JavaScript/Java Applet. The certificate always includes a public key, the name of the entity it identifies, an expiration date, the name of the certificate authority (CA) that issued the certificate, the digital signature of the CA, and a serial number. These certificates use public key cryptography to sign and authenticate signatures and are protected by public and private key pairs linked by cryptographic algorithms. These keys have the ability to encrypt and decrypt information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Your Options==&lt;br /&gt;
If you&#039;d like to use SSL encryption for your web site/domain hosted on XMission, you have a few options.&lt;br /&gt;
&lt;br /&gt;
The first, and easiest, would be to use XMission&#039;s certificate. To do this, change the URL&#039;s of the pages you wish to secure to https://www.xmission.com/~username/securepage.html where you replace user name with your XMission user name and securepage.html with the page you wish to secure. This could, however, be a problem for you if you have your own domain name. Reason being, you must use the XMission domain in the URL instead of www.yourdomain.com. For more details about using this method, please refer to the [[SSL Tutorial]]. &lt;br /&gt;
&lt;br /&gt;
If you have your own domain and you do not wish to use the XMission domain in the pages you wish to secure, you may get a certificate signed by XMission. A certificate signed by XMission is free of charge to any XMission customer. Once again, however, there is a problem with this method. Your visitors will be prompted with &amp;quot;Unknown Authority&amp;quot; (or something similar, depending on the browser used) when they first visit the secured pages. This has the possibility of scaring off potential clients or customers that are easily spooked by &amp;quot;hackers&amp;quot; or viruses. A certificate signed by XMission, however, is just as secure as a certificate signed by a public CA. You can request a certificate signed by XMission by filling out the request form.&lt;br /&gt;
&lt;br /&gt;
The last means of using SSL with XMission would be to purchase a signed certificate and key from Verisign or another public CA. When this is done, you will need to upload the signed certificate (public key) and the RSA key (private key) in PEM format. To make this process more secure, you may request that XMission generate the RSA key to be kept on XMission and send you the unsigned certificate. You can then have the certificate signed and returned to XMission with less threat of the RSA key (which will won&#039;t leave XMission&#039;s hands) to be seen by another party. Just indicate on [http://www.xmission.com/help/publishing/security/certreq.html the request form] that you want the certificate to be signed by a public CA and it will be sent to you. You&#039;ll need to upload the signed certificate to your home directory and notify us at [mailto:ssl@xmission.com ssl@xmission.com] to complete the process.&lt;br /&gt;
&lt;br /&gt;
Here is a small list of public CA&#039;s you can purchase certificates from (in alphabetical order).&lt;br /&gt;
&lt;br /&gt;
*[http://www.abaecom.com/ ABAecom]&lt;br /&gt;
*[http://www.digsigtrust.com/ Digital Signature Trust Co.]&lt;br /&gt;
*[http://www.e-certify.com/ E-Certify]&lt;br /&gt;
*[http://www.entrust.net/ Entrust]&lt;br /&gt;
*[http://www.equifax.com/ Equifax]&lt;br /&gt;
*[http://www.globalsign.com/ GlobalSign]&lt;br /&gt;
*[http://www.tc-trustcenter.com/ TC Trustcenter]&lt;br /&gt;
*[http://www.thawte.com/ Thawte]&lt;br /&gt;
*[http://www.valicert.com/ Valicert]&lt;br /&gt;
*[http://www.verisign.com/ Verisign]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Fetch_Setup&amp;diff=189</id>
		<title>Fetch Setup</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Fetch_Setup&amp;diff=189"/>
		<updated>2007-07-29T00:41:53Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Configuring==&lt;br /&gt;
&lt;br /&gt;
The first time you open Fetch you will see a &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Session Profile&amp;lt;/span&amp;gt; window. If it doesn&#039;t come up by itself, click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;New Connection&amp;lt;/span&amp;gt;. Fill it out as follows:&lt;br /&gt;
&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Host:&amp;lt;/span&amp;gt; field, enter &amp;lt;tt&amp;gt;ftp.xmission.com&amp;lt;/tt&amp;gt;.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;User ID:&amp;lt;/span&amp;gt; field, enter your XMission account name.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password:&amp;lt;/span&amp;gt; field, enter your XMission password.&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt; to connect.&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Customize&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Preferences&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Upload&amp;lt;/span&amp;gt; tab.&lt;br /&gt;
#Next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Default text format:&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Text&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Next to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Default non-text format:&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Raw Data&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Uncheck &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Add .txt suffix to text files&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Uploading==&lt;br /&gt;
&lt;br /&gt;
#Open Fetch and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the left, locate the directory on the remote server that you want to upload the file to. For example, &#039;&#039;/home/users/a/acctname/public_html&#039;&#039;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Put File&amp;lt;/span&amp;gt; button&lt;br /&gt;
#Locate the file you would like to upload and select it.&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Make sure the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Format&amp;lt;/span&amp;gt; is correct for the type of file you&#039;re uploading For example; .html, .txt, and .cgi files should be &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Text&amp;lt;/span&amp;gt;, and .wav, .jpg, and .gif files should be &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Raw Data&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt; button to begin uploading the file&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You can also drag-and-drop files from any open folder to the Fetch window to upload them.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
#Open Fetch and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the left, locate the file on the remote system that you want to download.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Get&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You can also drag-and-drop files from Fetch to any open folder to download them.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Renaming==&lt;br /&gt;
&lt;br /&gt;
#Open Fetch and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the left, click on the file that you wish to rename.&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Rename Directory or File...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Type the new name for the file.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deleting==&lt;br /&gt;
&lt;br /&gt;
#Open Fetch and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the left, click on the file that you wish to delete.&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Delete Directory or File...&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Changing Permissions==&lt;br /&gt;
&lt;br /&gt;
#Open Fetch and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#Select the file you want to change the permissions on.&lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Set Permissions&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Check or uncheck boxes to set the read, write, and execute permission on the file.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You may set all public_html permissions to defaults by logging in to http://home.xmission.com/ and selecting the &amp;quot;My Account&amp;quot; tab. There, you will find a &amp;quot;Repair Your Web Permissions&amp;quot; option under the &amp;quot;XMission Tools&amp;quot; section.&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Frontpage_Setup&amp;diff=188</id>
		<title>Frontpage Setup</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Frontpage_Setup&amp;diff=188"/>
		<updated>2007-07-29T00:40:28Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;As of mid-2006, [http://office.microsoft.com/en-us/frontpage/default.aspx#5 Microsoft has discontinued support for FrontPage]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The FrontPage FTP method does &#039;&#039;&#039;&#039;&#039;not&#039;&#039;&#039;&#039;&#039; use FrontPage extensions. This is &#039;&#039;not&#039;&#039; the ideal way to ftp your files to your web space. For a more  reliable alternative, please read our [FTP FAQ].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==FrontPage 98==&lt;br /&gt;
&lt;br /&gt;
#Create a web page and save it &lt;br /&gt;
#In the FrontPage Explorer, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Publish&amp;lt;/span&amp;gt; &lt;br /&gt;
#A box will come up asking you for a destination to publish to.  Type in &amp;lt;tt&amp;gt;http://www.xmission.com/~username&amp;lt;/tt&amp;gt;, where &amp;quot;username&amp;quot; is  your user name &lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt; &lt;br /&gt;
#After a long minute of searching, FrontPage will pop up the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Microsoft  Web Publishing Wizard&amp;lt;/span&amp;gt;. Where it asks you to fill in the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;FTP Server  Name&amp;lt;/span&amp;gt;, type in &amp;lt;tt&amp;gt;ftp.xmission.com&amp;lt;/tt&amp;gt; &lt;br /&gt;
#Where it asks for a &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Directory Path&amp;lt;/span&amp;gt;, fill in &amp;lt;tt&amp;gt;/home/users/u/username/public_html&amp;lt;/tt&amp;gt;  where &amp;quot;u&amp;quot; is the first letter of your user name and &amp;quot;username&amp;quot; is  your user name &lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Next&amp;lt;/span&amp;gt; &lt;br /&gt;
#In the following box, you will need to fill in your user name  and password. Under &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;User Name&amp;lt;/span&amp;gt;, enter your user name &lt;br /&gt;
#Under &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password&amp;lt;/span&amp;gt;, enter your password &lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Finish&amp;lt;/span&amp;gt; &lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You will always get an error message when you do this  and we have not discovered a way to resolve it. So far as we can  tell, it&#039;s just trying to read the page back using extensions (which  aren&#039;t set up for this). It doesn&#039;t seem to cause any problems with  the page on the server. Just click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt; when you get this error.  It should read... &lt;br /&gt;
#:&lt;br /&gt;
#:&amp;quot;The server could not complete your request. Contact your Internet  service provider or web server administrator to make sure the server  has the FrontPage Server Extensions installed. For more specific  information, click Details&amp;quot;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==FrontPage 2000==&lt;br /&gt;
&lt;br /&gt;
#Create a web page and save it &lt;br /&gt;
#Click on &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File&amp;lt;/span&amp;gt;, then &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Publish Web&amp;lt;/span&amp;gt; &lt;br /&gt;
#A box will come up asking for a destination to publish to. Type  in &amp;lt;tt&amp;gt;ftp://ftp.xmission.com/%2fhome/users/u/username/public_html&amp;lt;/tt&amp;gt; where  &amp;quot;u&amp;quot; is the first letter of your user name and &amp;quot;username&amp;quot; is your  user name. &lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Publish&amp;lt;/span&amp;gt;  &amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Frontpage 2003==&lt;br /&gt;
#Create a web page and save it&amp;lt;/li&amp;gt;&lt;br /&gt;
#Go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File&amp;lt;/span&amp;gt; and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Publish Web&amp;lt;/span&amp;gt;&lt;br /&gt;
#A box will come up asking for a destination to publish to. Type in &amp;lt;tt&amp;gt;ftp://ftp.xmission.com&amp;lt;/tt&amp;gt; and click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Publish&amp;lt;/span&amp;gt;&lt;br /&gt;
#When prompted, enter your XMission username and password, hit &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Enter&amp;lt;/span&amp;gt; and you will be connected to your &amp;quot;home&amp;quot; space.&lt;br /&gt;
#Go to your &amp;quot;public_html&amp;quot; directory to publish or download your web site&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=WSFTP_Setup&amp;diff=187</id>
		<title>WSFTP Setup</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=WSFTP_Setup&amp;diff=187"/>
		<updated>2007-07-29T00:38:10Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Configuring==&lt;br /&gt;
The first time you open WS_FTP, a &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Session Profile&amp;lt;/span&amp;gt; window will appear.  Fill it out as follows:&lt;br /&gt;
#Enter &amp;quot;XMission&amp;quot; in the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Profile Name:&amp;lt;/span&amp;gt; field.&lt;br /&gt;
#Enter &amp;quot;ftp.xmission.com&amp;quot; in the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Host Name:&amp;lt;/span&amp;gt; field.&lt;br /&gt;
#For &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Host Type:&amp;lt;/span&amp;gt;, select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Automatic detect&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Enter your XMission username in the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;User ID:&amp;lt;/span&amp;gt; field.&lt;br /&gt;
#Enter your XMission password in the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password:&amp;lt;/span&amp;gt; field.&lt;br /&gt;
#Check &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save Password&amp;lt;/span&amp;gt; if you don&#039;t wish to type it every  time.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote Host:&amp;lt;/span&amp;gt; field, where the word account  is your XMission username, enter &amp;lt;tt&amp;gt;/home/users/a/account/public_html&amp;lt;/tt&amp;gt;.&lt;br /&gt;
#Click the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Save&amp;lt;/span&amp;gt; button.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt; button to connect.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Uploading==&lt;br /&gt;
#Open WS_FTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the left side, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Local System&amp;lt;/span&amp;gt;, find the folder which  contains the file you wish to upload For example, &amp;quot;C:\Documents and Settings\User\My Documents\website\&amp;quot;. &lt;br /&gt;
#On the right side, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote System&amp;lt;/span&amp;gt;, find the directory  you wish to upload your page to For example, &amp;lt;tt&amp;gt;/home/users/a/acctname/public_html/&amp;lt;/tt&amp;gt;. &lt;br /&gt;
#If you are uploading .html, .cgi, or any other text  files, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;ASCII&amp;lt;/span&amp;gt;. If you are uploading .jpg, .exe, .wav, .mov, or  any other binary files, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Binary&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Click ONCE on the file you wish to upload to highlight  it.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;-&amp;gt;&amp;lt;/span&amp;gt; button in the middle of the window  to upload the file.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You can also drag-and-drop files from the left window to the  right to upload them.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
#Open WS_FTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the right side, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote System&amp;lt;/span&amp;gt;, find the folder  which contains the file you wish to download For example, &amp;lt;tt&amp;gt;/home/users/a/acctname/public_html&amp;lt;/tt&amp;gt;. &lt;br /&gt;
#On the left side, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Local System&amp;lt;/span&amp;gt;, find the directory  you wish to download your page to For example, &amp;quot;C:\Program Files\Microsoft  FrontPage\pages\&amp;quot;. &lt;br /&gt;
#If you are downloading .html, .cgi, or any other text  files, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;ASCII&amp;lt;/span&amp;gt;. If you are downloading .jpg, .exe, .wav, .mov,  or any other binary files, click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Binary&amp;lt;/span&amp;gt;. &lt;br /&gt;
#Click once on the file you wish to download to highlight  it. &lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;&amp;lt;-&amp;lt;/span&amp;gt; button in the middle of the window  to download the file. &lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You can also drag-and-drop files from the right window to the  left to download them.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Renaming==&lt;br /&gt;
#Open WS_FTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the right side, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote System&amp;lt;/span&amp;gt;, find the folder  which contains the file you wish to rename For example, &amp;lt;tt&amp;gt;/home/users/a/acctname/public_html&amp;lt;/tt&amp;gt;. &lt;br /&gt;
#Click ONCE on the file you wish to rename to highlight  it. &lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Rename&amp;lt;/span&amp;gt; button on the right.&lt;br /&gt;
#Enter the new name for the file in the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Input&amp;lt;/span&amp;gt; box.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deleting==&lt;br /&gt;
#Open WS_FTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the right side, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote System&amp;lt;/span&amp;gt;, find the folder  which contains the file you wish to delete For example, &amp;lt;tt&amp;gt;/home/users/a/acctname/public_html&amp;lt;/tt&amp;gt;. &lt;br /&gt;
#Click ONCE on the file you wish to delete to highlight  it.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Delete&amp;lt;/span&amp;gt; button on the right.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: This can also be done by highlighting the file and hitting the  &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Delete&amp;lt;/span&amp;gt; key on your keyboard.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Changing Permissions==&lt;br /&gt;
#Open WS_FTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the right side, &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Remote System&amp;lt;/span&amp;gt;, find the folder  which contains the file you wish to change permissions on. For example,  &amp;lt;tt&amp;gt;/home/users/a/acctname/public_html&amp;lt;/tt&amp;gt;.&lt;br /&gt;
#Right-click on the file you want to change permissions  for, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;chmod (UNIX)&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Check the appropriate boxes for read, write, or execute  permissions.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You may set all public_html permissions to defaults by logging in to http://home.xmission.com/ and selecting the &amp;quot;My Account&amp;quot; tab. There, you will find a &amp;quot;Repair Your Web Permissions&amp;quot; option under the &amp;quot;XMission Tools&amp;quot; section.&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=CuteFTP_Setup&amp;diff=186</id>
		<title>CuteFTP Setup</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=CuteFTP_Setup&amp;diff=186"/>
		<updated>2007-07-29T00:37:18Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Configuring==&lt;br /&gt;
&lt;br /&gt;
The first time you open CuteFTP you will see a &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Site Manager&amp;lt;/span&amp;gt; window.  Fill it out as follows:&lt;br /&gt;
&lt;br /&gt;
#On the left hand side, click on the folder you want  to save the profile in.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Add site&amp;lt;/span&amp;gt; button.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Site Label&amp;lt;/span&amp;gt; field, enter &amp;lt;tt&amp;gt;XMission&amp;lt;/tt&amp;gt;.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Host Address&amp;lt;/span&amp;gt; field, enter &amp;lt;tt&amp;gt;ftp.xmission.com&amp;lt;/tt&amp;gt;.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;User ID&amp;lt;/span&amp;gt; field, enter your XMission account  name.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Password&amp;lt;/span&amp;gt; field, enter your XMission password.&lt;br /&gt;
#In the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Initial Remote Directory&amp;lt;/span&amp;gt; field, where the word  &amp;quot;username&amp;quot; is your XMission username, enter &amp;lt;tt&amp;gt;/home/users/u/username/public_html&amp;lt;/tt&amp;gt;.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Connect&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Uploading==&lt;br /&gt;
&lt;br /&gt;
#Open CuteFTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the left side, your local system, find the folder  which contains the file you wish to upload. For example, &amp;quot;C:\Program  Files\Microsoft FrontPage\pages\&amp;quot;.&lt;br /&gt;
#On the right side, the remote system, find the directory  you wish to upload your page to For example, &#039;&#039;/home/users/u/username/public_html/&#039;&#039;.&lt;br /&gt;
#On the left side, click ONCE on the file you wish to  upload to highlight it.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Commands&amp;lt;/span&amp;gt; menu at the top of the window,  go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File actions&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Upload&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You can also drag-and-drop files from the left window to the  right to upload them.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
#Open CuteFTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the right side, the remote system, find the folder  which contains the file you wish to download. For example, &#039;&#039;/home/users/u/username/public_html&#039;&#039;.&lt;br /&gt;
#On the left side, the local system, find the directory  you wish to download your page to For example, &amp;quot;C:\Documents and Settings\User\My Documents\website\&amp;quot;.&lt;br /&gt;
#Click ONCE on the file you wish to download to highlight  it.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Commands&amp;lt;/span&amp;gt; menu at the top of the window,  go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File actions&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Download&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You can also drag-and-drop files from the right window to the  left to download them.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Renaming==&lt;br /&gt;
&lt;br /&gt;
#Open CuteFTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the right side, the remote system, find the folder  which contains the file you wish to rename. For example, &#039;&#039;/home/users/u/username/public_html&#039;&#039;.&lt;br /&gt;
#Click ONCE on the file you wish to rename to highlight  it.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Commands&amp;lt;/span&amp;gt; menu at the top of the window,  go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File actions&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Rename&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Type the new name for the file in the dialog box that  appears.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deleting==&lt;br /&gt;
&lt;br /&gt;
#Open CuteFTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the right side, the remote system, find the folder  which contains the file you wish to delete. For example, &#039;&#039;/home/users/u/username/public_html&#039;&#039;.&lt;br /&gt;
#Click ONCE on the file you wish to delete to highlight  it.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Commands&amp;lt;/span&amp;gt; menu at the top of the window,  go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File actions&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Delete&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: This can also be done by highlighting the file and hitting the  &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Delete&amp;lt;/span&amp;gt; key on your keyboard.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Changing Permissions==&lt;br /&gt;
&lt;br /&gt;
#Open CuteFTP and connect using your &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;XMission&amp;lt;/span&amp;gt; profile.&lt;br /&gt;
#On the right side, the remote system, find the folder  which contains the file you wish to change permissions on. For example,  &#039;&#039;/home/users/u/username/public_html&#039;&#039;.&lt;br /&gt;
#Click on the &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;Commands&amp;lt;/span&amp;gt; menu at the top of the window,  go to &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;File actions&amp;lt;/span&amp;gt;, and select &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;CHMOD&amp;lt;/span&amp;gt;.&lt;br /&gt;
#Click the appropriate boxes to add or remove read, write,  and execute permissions.&lt;br /&gt;
#Click &amp;lt;span class=&amp;quot;button&amp;quot;&amp;gt;OK&amp;lt;/span&amp;gt;.&lt;br /&gt;
#:&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: You may set all public_html permissions to defaults by logging in to http://home.xmission.com/ and selecting the &amp;quot;My Account&amp;quot; tab. There, you will find a &amp;quot;Repair Your Web Permissions&amp;quot; option under the &amp;quot;XMission Tools&amp;quot; section.&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=User:DANIEL_MCINTYRE&amp;diff=185</id>
		<title>User:DANIEL MCINTYRE</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=User:DANIEL_MCINTYRE&amp;diff=185"/>
		<updated>2007-07-29T00:34:18Z</updated>

		<summary type="html">&lt;p&gt;Deadguy: added items&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Your Web Space==&lt;br /&gt;
*[[Uploading Basics]]&lt;br /&gt;
&lt;br /&gt;
==FTP Client Setup==&lt;br /&gt;
===Windows Clients===&lt;br /&gt;
*[[FileZilla Setup]] (free)&lt;br /&gt;
*[[SmartFTP Setup]] (free for personal use) &lt;br /&gt;
*[[CuteFTP Setup]] ($)&lt;br /&gt;
*[[WSFTP Setup]] ($)&lt;br /&gt;
*[[Frontpage Setup]]&lt;br /&gt;
&lt;br /&gt;
===Macintosh Clients===&lt;br /&gt;
*[[CyberDuck Setup]] (free)&lt;br /&gt;
*[[Fetch Setup]] ($)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Securing Your Website==&lt;br /&gt;
*[[SSL Info]]&lt;br /&gt;
*[[SSL Tutorial]]&lt;br /&gt;
*[[Password protecting a directory with .htaccess]]&lt;br /&gt;
*[[Formmail.pl security warning]]&lt;br /&gt;
&lt;br /&gt;
==Other info==&lt;br /&gt;
*[[CGIemail]]&lt;br /&gt;
*[[Website Counters]]&lt;br /&gt;
*[[suPHP on XMission]]&lt;br /&gt;
*[[CGI help]]&lt;br /&gt;
*[[Access logs]]&lt;/div&gt;</summary>
		<author><name>Deadguy</name></author>
	</entry>
</feed>