<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ampr.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=KM4VYU</id>
	<title>44Net Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ampr.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=KM4VYU"/>
	<link rel="alternate" type="text/html" href="https://wiki.ampr.org/wiki/Special:Contributions/KM4VYU"/>
	<updated>2026-05-16T03:33:28Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.3</generator>
	<entry>
		<id>https://wiki.ampr.org/w/index.php?title=Setting_up_a_gateway_on_a_VyOS_instance&amp;diff=722</id>
		<title>Setting up a gateway on a VyOS instance</title>
		<link rel="alternate" type="text/html" href="https://wiki.ampr.org/w/index.php?title=Setting_up_a_gateway_on_a_VyOS_instance&amp;diff=722"/>
		<updated>2017-05-28T16:24:14Z</updated>

		<summary type="html">&lt;p&gt;KM4VYU: /* Creating the ax25 script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Setting up a gateway on VyOS ==&lt;br /&gt;
&lt;br /&gt;
VyOS is a Network Operating System, similar to pfSense, where everything is done on CLI. This is a fork of the base Vyatta network OS, which Ubiquiti uses for most of their products. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Assumptions / Pre requisites ==&lt;br /&gt;
&lt;br /&gt;
•	You have already registered with AMPRNet and got your 44.x.x.x/y allocation and it is showing in the encap.txt file&lt;br /&gt;
&lt;br /&gt;
•	You have registered some hosts in the AMPRNet DNS like &amp;lt;your call sign&amp;gt;.ampr.org&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
•	You have already setup VyOS and know how to get around linux. This guide only covers the AMPR connection, not a complete setup.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Warning!! ==&lt;br /&gt;
&lt;br /&gt;
The author does not assume responsibility if you mess up/brick your router. Please make sure to back up your VyOS configuration prior to any change.&lt;br /&gt;
Also make sure you know how to restore your configuration and you know how to restore your router to factory defaults if everything else fails.&lt;br /&gt;
&lt;br /&gt;
== Process of Getting Started ==&lt;br /&gt;
&lt;br /&gt;
We will begin by getting the Jesse repositories installed onto the router.&lt;br /&gt;
To do this, run the following command:&lt;br /&gt;
* sudo curl https://debgen.simplylinux.ch/txt/jessie/sources_fae18d34d49f95f3a5a8a2e2c7b3a633af708da9.txt | sudo tee /etc/apt/sources.list.d/00Debian&lt;br /&gt;
&lt;br /&gt;
Next, run following commands:&lt;br /&gt;
&lt;br /&gt;
*sudo apt-get -f install&lt;br /&gt;
*sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: DO &#039;&#039;NOT&#039;&#039; RUN APT-GET UPGRADE!!!! This will break many things within VyOS&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
From that point it is possible to install many packages from Debian &amp;quot;jessie&amp;quot; distribution.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;OPTIONAL&#039;&#039;&#039;: As in VyOS there is no file manager. To make life a bit easier, you can install Midnight Commander:&lt;br /&gt;
sudo apt-get install mc&lt;br /&gt;
&lt;br /&gt;
Now, it&#039;s time to configure access to 44-net.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Downloading the Source Files for AMPR-RIPd and Compiling ==&lt;br /&gt;
&lt;br /&gt;
What we can do now, is create a folder called ampr within our home directory, and install the materials to build out ampr-ripd.&lt;br /&gt;
&lt;br /&gt;
So do the following:&lt;br /&gt;
* sudo -i # This will log you in as root&lt;br /&gt;
* apt-get update # Just to make sure your lists are updated&lt;br /&gt;
* apt-get install -y build-essential # This installs all the build materials needed to build our binary&lt;br /&gt;
* mkdir /home/ampr &amp;amp;&amp;amp; cd /home/ampr # Self-Explanatory&lt;br /&gt;
* wget http://www.yo2loj.ro/hamprojects/ampr-ripd-1.15.tgz # Again, self-explanatory&lt;br /&gt;
* tar -xvzf ampr-ripd-1.15.tgz # Extracts the compressed file&lt;br /&gt;
* rm -rf ampr-ripd-1.15.tgz # Deletes it after extraction&lt;br /&gt;
* make # Compiles&lt;br /&gt;
* cp ampr-ripd /usr/local/bin/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After this, you need to find out the password for the RIP broadcasts. These broadcasts run every 5 minutes. Run the following command and wait:&lt;br /&gt;
./find_pass.sh&lt;br /&gt;
&lt;br /&gt;
Once it shows the password, Ctrl-C out of there and copy the password down. You will need it.&lt;br /&gt;
Run the following after your done:&lt;br /&gt;
* rm -rf /home/ampr/*&lt;br /&gt;
&lt;br /&gt;
== Creating the ax25 script ==&lt;br /&gt;
&lt;br /&gt;
Copy the text linked here[https://hastebin.com/raw/fipacatota] to a text editor, like notepad, and edit the portions that are commented with &amp;lt;&amp;gt; and []:&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Once done editing, you will copy the text and put it in your clipboard.&lt;br /&gt;
Open back up the terminal, and run the following:&lt;br /&gt;
* sudo nano /etc/rc.local&lt;br /&gt;
You should be at a screen with some text and with some key-commands on the bottom&lt;br /&gt;
&lt;br /&gt;
Using your arrow keys, move your cursor above the part that says &amp;quot;# Do not remove----&amp;quot; and paste the contents of your clipboard into the terminal by right-clicking. You can close out the file once everything is in there.&lt;br /&gt;
Note: Close out of the file and save it, by doing Ctrl-X, then pressing &#039;Y&#039;, then &#039;Enter&#039;.&lt;br /&gt;
&lt;br /&gt;
== Script ==&lt;br /&gt;
Fire-up the ax25 script by just running &#039;ax25&#039; and wait. Remember, there is a rip44 broadcast every 5 minutes.&lt;br /&gt;
After 10-15 minutes, check your routing table.&lt;br /&gt;
&lt;br /&gt;
To check your routing table:&lt;br /&gt;
  ip route show table 1&lt;br /&gt;
Table should be filled-up with many entries pertaining to AMPR&lt;br /&gt;
They should mimic /var/lib/ampr-ripd/encap-txt&lt;/div&gt;</summary>
		<author><name>KM4VYU</name></author>
	</entry>
	<entry>
		<id>https://wiki.ampr.org/w/index.php?title=Setting_up_a_gateway_on_a_VyOS_instance&amp;diff=721</id>
		<title>Setting up a gateway on a VyOS instance</title>
		<link rel="alternate" type="text/html" href="https://wiki.ampr.org/w/index.php?title=Setting_up_a_gateway_on_a_VyOS_instance&amp;diff=721"/>
		<updated>2017-05-28T16:23:32Z</updated>

		<summary type="html">&lt;p&gt;KM4VYU: /* Creating the ax25 script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Setting up a gateway on VyOS ==&lt;br /&gt;
&lt;br /&gt;
VyOS is a Network Operating System, similar to pfSense, where everything is done on CLI. This is a fork of the base Vyatta network OS, which Ubiquiti uses for most of their products. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Assumptions / Pre requisites ==&lt;br /&gt;
&lt;br /&gt;
•	You have already registered with AMPRNet and got your 44.x.x.x/y allocation and it is showing in the encap.txt file&lt;br /&gt;
&lt;br /&gt;
•	You have registered some hosts in the AMPRNet DNS like &amp;lt;your call sign&amp;gt;.ampr.org&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
•	You have already setup VyOS and know how to get around linux. This guide only covers the AMPR connection, not a complete setup.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Warning!! ==&lt;br /&gt;
&lt;br /&gt;
The author does not assume responsibility if you mess up/brick your router. Please make sure to back up your VyOS configuration prior to any change.&lt;br /&gt;
Also make sure you know how to restore your configuration and you know how to restore your router to factory defaults if everything else fails.&lt;br /&gt;
&lt;br /&gt;
== Process of Getting Started ==&lt;br /&gt;
&lt;br /&gt;
We will begin by getting the Jesse repositories installed onto the router.&lt;br /&gt;
To do this, run the following command:&lt;br /&gt;
* sudo curl https://debgen.simplylinux.ch/txt/jessie/sources_fae18d34d49f95f3a5a8a2e2c7b3a633af708da9.txt | sudo tee /etc/apt/sources.list.d/00Debian&lt;br /&gt;
&lt;br /&gt;
Next, run following commands:&lt;br /&gt;
&lt;br /&gt;
*sudo apt-get -f install&lt;br /&gt;
*sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: DO &#039;&#039;NOT&#039;&#039; RUN APT-GET UPGRADE!!!! This will break many things within VyOS&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
From that point it is possible to install many packages from Debian &amp;quot;jessie&amp;quot; distribution.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;OPTIONAL&#039;&#039;&#039;: As in VyOS there is no file manager. To make life a bit easier, you can install Midnight Commander:&lt;br /&gt;
sudo apt-get install mc&lt;br /&gt;
&lt;br /&gt;
Now, it&#039;s time to configure access to 44-net.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Downloading the Source Files for AMPR-RIPd and Compiling ==&lt;br /&gt;
&lt;br /&gt;
What we can do now, is create a folder called ampr within our home directory, and install the materials to build out ampr-ripd.&lt;br /&gt;
&lt;br /&gt;
So do the following:&lt;br /&gt;
* sudo -i # This will log you in as root&lt;br /&gt;
* apt-get update # Just to make sure your lists are updated&lt;br /&gt;
* apt-get install -y build-essential # This installs all the build materials needed to build our binary&lt;br /&gt;
* mkdir /home/ampr &amp;amp;&amp;amp; cd /home/ampr # Self-Explanatory&lt;br /&gt;
* wget http://www.yo2loj.ro/hamprojects/ampr-ripd-1.15.tgz # Again, self-explanatory&lt;br /&gt;
* tar -xvzf ampr-ripd-1.15.tgz # Extracts the compressed file&lt;br /&gt;
* rm -rf ampr-ripd-1.15.tgz # Deletes it after extraction&lt;br /&gt;
* make # Compiles&lt;br /&gt;
* cp ampr-ripd /usr/local/bin/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After this, you need to find out the password for the RIP broadcasts. These broadcasts run every 5 minutes. Run the following command and wait:&lt;br /&gt;
./find_pass.sh&lt;br /&gt;
&lt;br /&gt;
Once it shows the password, Ctrl-C out of there and copy the password down. You will need it.&lt;br /&gt;
Run the following after your done:&lt;br /&gt;
* rm -rf /home/ampr/*&lt;br /&gt;
&lt;br /&gt;
== Creating the ax25 script ==&lt;br /&gt;
&lt;br /&gt;
Copy the text linked here[https://hastebin.com/raw/fipacatota] to a text editor, like notepad, and edit the portions that are commented with &amp;lt;&amp;gt; and []:&lt;br /&gt;
---&lt;br /&gt;
Once done editing, you will copy the text and put it in your clipboard.&lt;br /&gt;
Open back up the terminal, and run the following:&lt;br /&gt;
* sudo nano /etc/rc.local&lt;br /&gt;
You should be at a screen with some text and with some key-commands on the bottom&lt;br /&gt;
&lt;br /&gt;
Using your arrow keys, move your cursor above the part that says &amp;quot;# Do not remove----&amp;quot; and paste the contents of your clipboard into the terminal by right-clicking. You can close out the file once everything is in there.&lt;br /&gt;
Note: Close out of the file and save it, by doing Ctrl-X, then pressing &#039;Y&#039;, then &#039;Enter&#039;.&lt;br /&gt;
&lt;br /&gt;
== Script ==&lt;br /&gt;
Fire-up the ax25 script by just running &#039;ax25&#039; and wait. Remember, there is a rip44 broadcast every 5 minutes.&lt;br /&gt;
After 10-15 minutes, check your routing table.&lt;br /&gt;
&lt;br /&gt;
To check your routing table:&lt;br /&gt;
  ip route show table 1&lt;br /&gt;
Table should be filled-up with many entries pertaining to AMPR&lt;br /&gt;
They should mimic /var/lib/ampr-ripd/encap-txt&lt;/div&gt;</summary>
		<author><name>KM4VYU</name></author>
	</entry>
	<entry>
		<id>https://wiki.ampr.org/w/index.php?title=Setting_up_a_gateway_on_a_VyOS_instance&amp;diff=720</id>
		<title>Setting up a gateway on a VyOS instance</title>
		<link rel="alternate" type="text/html" href="https://wiki.ampr.org/w/index.php?title=Setting_up_a_gateway_on_a_VyOS_instance&amp;diff=720"/>
		<updated>2017-05-28T16:22:48Z</updated>

		<summary type="html">&lt;p&gt;KM4VYU: Created page with &amp;quot; == Setting up a gateway on VyOS ==  VyOS is a Network Operating System, similar to pfSense, where everything is done on CLI. This is a fork of the base Vyatta network OS, whi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Setting up a gateway on VyOS ==&lt;br /&gt;
&lt;br /&gt;
VyOS is a Network Operating System, similar to pfSense, where everything is done on CLI. This is a fork of the base Vyatta network OS, which Ubiquiti uses for most of their products. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Assumptions / Pre requisites ==&lt;br /&gt;
&lt;br /&gt;
•	You have already registered with AMPRNet and got your 44.x.x.x/y allocation and it is showing in the encap.txt file&lt;br /&gt;
&lt;br /&gt;
•	You have registered some hosts in the AMPRNet DNS like &amp;lt;your call sign&amp;gt;.ampr.org&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
•	You have already setup VyOS and know how to get around linux. This guide only covers the AMPR connection, not a complete setup.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Warning!! ==&lt;br /&gt;
&lt;br /&gt;
The author does not assume responsibility if you mess up/brick your router. Please make sure to back up your VyOS configuration prior to any change.&lt;br /&gt;
Also make sure you know how to restore your configuration and you know how to restore your router to factory defaults if everything else fails.&lt;br /&gt;
&lt;br /&gt;
== Process of Getting Started ==&lt;br /&gt;
&lt;br /&gt;
We will begin by getting the Jesse repositories installed onto the router.&lt;br /&gt;
To do this, run the following command:&lt;br /&gt;
* sudo curl https://debgen.simplylinux.ch/txt/jessie/sources_fae18d34d49f95f3a5a8a2e2c7b3a633af708da9.txt | sudo tee /etc/apt/sources.list.d/00Debian&lt;br /&gt;
&lt;br /&gt;
Next, run following commands:&lt;br /&gt;
&lt;br /&gt;
*sudo apt-get -f install&lt;br /&gt;
*sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: DO &#039;&#039;NOT&#039;&#039; RUN APT-GET UPGRADE!!!! This will break many things within VyOS&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
From that point it is possible to install many packages from Debian &amp;quot;jessie&amp;quot; distribution.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;OPTIONAL&#039;&#039;&#039;: As in VyOS there is no file manager. To make life a bit easier, you can install Midnight Commander:&lt;br /&gt;
sudo apt-get install mc&lt;br /&gt;
&lt;br /&gt;
Now, it&#039;s time to configure access to 44-net.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Downloading the Source Files for AMPR-RIPd and Compiling ==&lt;br /&gt;
&lt;br /&gt;
What we can do now, is create a folder called ampr within our home directory, and install the materials to build out ampr-ripd.&lt;br /&gt;
&lt;br /&gt;
So do the following:&lt;br /&gt;
* sudo -i # This will log you in as root&lt;br /&gt;
* apt-get update # Just to make sure your lists are updated&lt;br /&gt;
* apt-get install -y build-essential # This installs all the build materials needed to build our binary&lt;br /&gt;
* mkdir /home/ampr &amp;amp;&amp;amp; cd /home/ampr # Self-Explanatory&lt;br /&gt;
* wget http://www.yo2loj.ro/hamprojects/ampr-ripd-1.15.tgz # Again, self-explanatory&lt;br /&gt;
* tar -xvzf ampr-ripd-1.15.tgz # Extracts the compressed file&lt;br /&gt;
* rm -rf ampr-ripd-1.15.tgz # Deletes it after extraction&lt;br /&gt;
* make # Compiles&lt;br /&gt;
* cp ampr-ripd /usr/local/bin/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After this, you need to find out the password for the RIP broadcasts. These broadcasts run every 5 minutes. Run the following command and wait:&lt;br /&gt;
./find_pass.sh&lt;br /&gt;
&lt;br /&gt;
Once it shows the password, Ctrl-C out of there and copy the password down. You will need it.&lt;br /&gt;
Run the following after your done:&lt;br /&gt;
* rm -rf /home/ampr/*&lt;br /&gt;
&lt;br /&gt;
== Creating the ax25 script ==&lt;br /&gt;
&lt;br /&gt;
Copy the text linked [https://hastebin.com/raw/fipacatota|here] to a text editor, like notepad, and edit the portions that are commented with &amp;lt;&amp;gt; and []:&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Once done editing, you will copy the text and put it in your clipboard.&lt;br /&gt;
Open back up the terminal, and run the following:&lt;br /&gt;
* sudo nano /etc/rc.local&lt;br /&gt;
You should be at a screen with some text and with some key-commands on the bottom&lt;br /&gt;
&lt;br /&gt;
Using your arrow keys, move your cursor above the part that says &amp;quot;# Do not remove----&amp;quot; and paste the contents of your clipboard into the terminal by right-clicking. You can close out the file once everything is in there.&lt;br /&gt;
Note: Close out of the file and save it, by doing Ctrl-X, then pressing &#039;Y&#039;, then &#039;Enter&#039;.&lt;br /&gt;
== Script ==&lt;br /&gt;
Fire-up the ax25 script by just running &#039;ax25&#039; and wait. Remember, there is a rip44 broadcast every 5 minutes.&lt;br /&gt;
After 10-15 minutes, check your routing table.&lt;br /&gt;
&lt;br /&gt;
To check your routing table:&lt;br /&gt;
  ip route show table 1&lt;br /&gt;
Table should be filled-up with many entries pertaining to AMPR&lt;br /&gt;
They should mimic /var/lib/ampr-ripd/encap-txt&lt;/div&gt;</summary>
		<author><name>KM4VYU</name></author>
	</entry>
	<entry>
		<id>https://wiki.ampr.org/w/index.php?title=Archive/Main_Page&amp;diff=719</id>
		<title>Archive/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ampr.org/w/index.php?title=Archive/Main_Page&amp;diff=719"/>
		<updated>2017-05-28T16:07:27Z</updated>

		<summary type="html">&lt;p&gt;KM4VYU: /* How to connect to AMPRNet */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the AMPRNet Wiki.&lt;br /&gt;
&lt;br /&gt;
Since its allocation to Amateur Radio in the mid-1980&#039;s, Internet network 44 (44.0.0.0/8), known as the AMPRNet™, has been used by amateur radio operators to conduct scientific research and to experiment with digital communications over radio with a goal of advancing the state of the art of Amateur Radio networking, and to educate amateur radio operators in these techniques. - [http://www.ampr.org/ www.ampr.org]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IMPORTANT INFORMATION:&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;MAY 2017 - Please be advised that the IP of AMPRGW will change in the near future, see the Services page for the new host address.&#039;&#039;&#039;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
== Starting points ==&lt;br /&gt;
* [[Quickstart]] guide for getting onto the [[AMPRNet]]&lt;br /&gt;
* Basic information about the [[AMPRNet]] and the [[ampr.org]] domain&lt;br /&gt;
* [[Services]] available on AMPRNet&lt;br /&gt;
* If you are looking to get an IP allocation within the 44/8 AMPRNet please read the [[Portal]] page.&lt;br /&gt;
* Frequently Asked Questions (FAQ) [[FAQ]]&lt;br /&gt;
&lt;br /&gt;
== How to connect to AMPRNet ==&lt;br /&gt;
&lt;br /&gt;
* Instructions for [[Setting up a gateway on Linux|setting up a Linux gateway]]&lt;br /&gt;
* Instructions for [[Setting up a gateway on OpenBSD|setting up an OpenBSD gateway]]&lt;br /&gt;
* Instructions for [[setting up a gateway on Cisco Routers|setting up a  gateway on Cisco Routers]].&lt;br /&gt;
* Instructions for [[setting up a gateway on MikroTik Routers|setting up a  gateway on MikroTik Routers]].&lt;br /&gt;
* Instructions for [[setting up a gateway on OpenWRT|setting up a gateway on OpenWRT]].&lt;br /&gt;
* Instructions for [[setting up a gateway on Ubiquiti EdgeRouter|setting up a gateway on Ubiquiti EdgeRouter]].&lt;br /&gt;
* Instructions for [[setting up a gateway on a VyOS instance|setting up a gateway on a VyOS instance]].&lt;br /&gt;
* Instructions for [[announcing your allocation directly|directly announcing your allocation via your Internet Service Provider (ISP)]].&lt;br /&gt;
* Instructions for [[AMPRNet VPN|Accessing AMPRNet via VPN]] (experimental).&lt;br /&gt;
* &amp;lt;b&amp;gt;[[Why can&#039;t I just route my AMPRNet allocation directly myself ?]]&amp;lt;/b&amp;gt;&lt;br /&gt;
* If you already operate a [[gateway]] please ensure you have registered on the [[portal]] and &amp;quot;claimed&amp;quot; your [[gateway]].&lt;br /&gt;
&lt;br /&gt;
== Mailing List ==&lt;br /&gt;
To keep up-to-date on AMPRNet information please consider joining the [[44Net mailing list]].&lt;br /&gt;
&lt;br /&gt;
== Contribute! ==&lt;br /&gt;
If you wish to contribute to the wiki, please send an email to &amp;lt;tt&amp;gt;wiki (at) ampr.org&amp;lt;/tt&amp;gt; introducing yourself. Please specify your full name, amateur radio callsign and your preferred username. A login will then be created for you.&lt;br /&gt;
&lt;br /&gt;
== Terms of Service ==&lt;br /&gt;
Use of 44.0.0.0/8 address space is governed by these [http://www.ampr.org/terms-of-service/ Terms of Service]&lt;br /&gt;
&lt;br /&gt;
== All Pages ==&lt;br /&gt;
[http://wiki.ampr.org/wiki/Special:AllPages Here&#039;s a list of all pages currently on the AMPRNet Wiki]&lt;/div&gt;</summary>
		<author><name>KM4VYU</name></author>
	</entry>
</feed>