Hello everyone!
Does anyone have any experience setting up VyOS for use on the AMPR network? I have the IPIP tunnel to UCSD set up, however, I don't know how to proceed from there in terms of RIP.
This is what I did so far: set interfaces tunnel tun0 set interfaces tunnel tun0 local-ip 'wanip' set interfaces tunnel tun0 remote-ip 169.228.66.251 set interfaces tunnel tun0 encap ipip set interfaces tunnel tun0 descr "Tunnel to AMPR Gateway" set interfaces tunnel tun0 multicast enable set protocols static table 1 interface-route 0.0.0.0/0 next-hop-interface tun0 set policy route SOURCE_ROUTE rule 10 set table 1 set policy route SOURCE_ROUTE rule 10 source address 44.0.0.0/16 set interfaces ethernet eth1 vif 44 policy route SOURCE_ROUTE set protocols rip interface eth1.44 set interfaces ethernet eth1 vif 44 ip rip authentication plaintext-password [therippass]
Hello Miguel et al.
Made some tests with AMPR+VyOS.
My test hardware/software configuration: - TL-MR3420v2 router (providing access to Internet) - VirtualBox host machine running on desktop PC (Please note: desktop PC is in DMZ, behind the router) - VyOS-1.1.7 32bit as a guest OS running in VirtualBox
Installing and basic configuration of VyOS is described here: http://wiki.vyos.net/wiki/User_Guide
After reboot VyOS will be ready to communicate with Internet.
Let's skip chapter "Using the Command-Line Interface", and proceed our own way, assuming that the goal is to configure VyOS capable of bidirectional communication with global 44net system.
Next important steps are described here: http://wiki.vyos.net/wiki/FAQ#For_1.0.x.2F1.1.x chapters "How do I install Debian packages?" and "For 1.0.x/1.1.x"
For unknown(?) reason sequence of "set" commands should be reversed:
vyos@vyos:~$ configure [edit] vyos@vyos# set system package repository squeeze url 'http://archive.debian.org/debian' set system package repository squeeze distribution 'squeeze' set system package repositorysqueeze components 'main contrib non-free'
_DO NOT_, I repeat, _Do NOT_ set 'squeeze-lts' repository as it does not exists any more...
Then:
vyos@vyos# commit && save;exit vyos@vyos:~$
Next, run following commands:
vyos@vyos:~$ sudo apt-get -f install vyos@vyos:~$ sudo apt-get check vyos@vyos:~$ sudo apt-get update vyos@vyos:~$ sudo apt-get upgrade
From that point it is possible to installmany packages from Debian "squeeze" distribution.
As in VyOS there is _NO_ any file manager to make life a bit easier, let's install MC: vyos@vyos:~$ sudo apt-get install mc
Now, it's time to configure access to 44-net.
We may use "ax25" script created by N1URO adapting it accordingly or make short script "ax25.sh" containing:
#!/bin/sh # PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/bin:/usr/sbin:/bin:sbin # modprobe -a ipip ifconfig tunl0 <ampr-IP> netmask 255.255.255.255 mtu 1472 multicast arp up ip route add 44/8 via <VyOS_LAN_IP> dev tunl0 proto static onlink ip tunnel change ttl 64 mode ipip tunl0 ip rule add from 44/8 pref 1 table 1 ip rule add to 44/8 pref 1 table 1 /usr/local/bin/ampr=ripd -t 1 -a <public_IP> -p <rip44_password> -i tunl0 -v -s # echo "10" > /proc/sys/kernel/panic echo "1" > /proc/sys/net/ipv4/ip_forward echo 0 > /proc/sys/net/ipv4/conf/all/log_martians #
On freshly installed VyOS system compilation is _NOT POSSIBLE_ therefore we need to obtain binary file ampr-ripd compiled elsewhere and download package ampr-ripd from http://www.yo2loj.ro/hamprojects/ampr-ripd-1.15.tgz to have "manual" and two other scripts.
Next. let's put ampr-ripd binary file in /usr/local/bin/
Fire-up ax25.sh script and wait till nearest rip44 broadcast taking place every 5 minutes. Wait a while after broadcast and check routing table by issuing command: ip route show table 1 Table should be filled-up by many, many entries that are saved in /var/lib/ampr-ripd/encap-txt
If <rip44_password> is not known yet, use script find-pass.sh provided with ampr-ripd package (change interface name ampr0 to tunl0 or to reflect your system!).
That's all... Nevertheless, YMMV...
From now on, enjoy being part of AMPRNet network!
Happy New 2017 Year!
Best regards.
Got it working. This should be universal. Had to change a lot of the content you had. Will see if I can make a wiki post about it.
On Fri, Dec 30, 2016 at 2:55 PM, Tom SP2L SP2L@wp.pl wrote:
(Please trim inclusions from previous messages) _______________________________________________ Hello Miguel et al.
Made some tests with AMPR+VyOS.
My test hardware/software configuration:
- TL-MR3420v2 router (providing access to Internet)
- VirtualBox host machine running on desktop PC (Please note: desktop PC is in DMZ, behind the router)
- VyOS-1.1.7 32bit as a guest OS running in VirtualBox
Installing and basic configuration of VyOS is described here: http://wiki.vyos.net/wiki/User_Guide
After reboot VyOS will be ready to communicate with Internet.
Let's skip chapter "Using the Command-Line Interface", and proceed our own way, assuming that the goal is to configure VyOS capable of bidirectional communication with global 44net system.
Next important steps are described here: http://wiki.vyos.net/wiki/FAQ#For_1.0.x.2F1.1.x chapters "How do I install Debian packages?" and "For 1.0.x/1.1.x"
For unknown(?) reason sequence of "set" commands should be reversed:
vyos@vyos:~$ configure [edit] vyos@vyos# set system package repository squeeze url 'http://archive.debian.org/deb ian' set system package repository squeeze distribution 'squeeze' set system package repositorysqueeze components 'main contrib non-free'
_DO NOT_, I repeat, _Do NOT_ set 'squeeze-lts' repository as it does not exists any more...
Then:
vyos@vyos# commit && save;exit vyos@vyos:~$
Next, run following commands:
vyos@vyos:~$ sudo apt-get -f install vyos@vyos:~$ sudo apt-get check vyos@vyos:~$ sudo apt-get update vyos@vyos:~$ sudo apt-get upgrade
From that point it is possible to installmany packages from Debian "squeeze" distribution.
As in VyOS there is _NO_ any file manager to make life a bit easier, let's install MC: vyos@vyos:~$ sudo apt-get install mc
Now, it's time to configure access to 44-net.
We may use "ax25" script created by N1URO adapting it accordingly or make short script "ax25.sh" containing:
#!/bin/sh # PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/bin:/usr/sbin:/bin:sbin # modprobe -a ipip ifconfig tunl0 <ampr-IP> netmask 255.255.255.255 mtu 1472 multicast arp up ip route add 44/8 via <VyOS_LAN_IP> dev tunl0 proto static onlink ip tunnel change ttl 64 mode ipip tunl0 ip rule add from 44/8 pref 1 table 1 ip rule add to 44/8 pref 1 table 1 /usr/local/bin/ampr=ripd -t 1 -a <public_IP> -p <rip44_password> -i tunl0 -v -s # echo "10" > /proc/sys/kernel/panic echo "1" > /proc/sys/net/ipv4/ip_forward echo 0 > /proc/sys/net/ipv4/conf/all/log_martians #
On freshly installed VyOS system compilation is _NOT POSSIBLE_ therefore we need to obtain binary file ampr-ripd compiled elsewhere and download package ampr-ripd from http://www.yo2loj.ro/hamprojects/ampr-ripd-1.15.tgz to have "manual" and two other scripts.
Next. let's put ampr-ripd binary file in /usr/local/bin/
Fire-up ax25.sh script and wait till nearest rip44 broadcast taking place every 5 minutes. Wait a while after broadcast and check routing table by issuing command: ip route show table 1 Table should be filled-up by many, many entries that are saved in /var/lib/ampr-ripd/encap-txt
If <rip44_password> is not known yet, use script find-pass.sh provided with ampr-ripd package (change interface name ampr0 to tunl0 or to reflect your system!).
That's all... Nevertheless, YMMV...
From now on, enjoy being part of AMPRNet network!
Happy New 2017 Year!
Best regards.
-- Tom - SP2L
It is nice to be important. But it is more important to be nice!
44Net mailing list 44Net@hamradio.ucsd.edu http://hamradio.ucsd.edu/mailman/listinfo/44net
Actually, am I allowed to make a wiki post about it?
On Sat, Dec 31, 2016 at 1:46 AM, Miguel Rodriguez miguemely101@gmail.com wrote:
Got it working. This should be universal. Had to change a lot of the content you had. Will see if I can make a wiki post about it.
On Fri, Dec 30, 2016 at 2:55 PM, Tom SP2L SP2L@wp.pl wrote:
(Please trim inclusions from previous messages) _______________________________________________ Hello Miguel et al.
Made some tests with AMPR+VyOS.
My test hardware/software configuration:
- TL-MR3420v2 router (providing access to Internet)
- VirtualBox host machine running on desktop PC (Please note: desktop PC is in DMZ, behind the router)
- VyOS-1.1.7 32bit as a guest OS running in VirtualBox
Installing and basic configuration of VyOS is described here: http://wiki.vyos.net/wiki/User_Guide
After reboot VyOS will be ready to communicate with Internet.
Let's skip chapter "Using the Command-Line Interface", and proceed our own way, assuming that the goal is to configure VyOS capable of bidirectional communication with global 44net system.
Next important steps are described here: http://wiki.vyos.net/wiki/FAQ#For_1.0.x.2F1.1.x chapters "How do I install Debian packages?" and "For 1.0.x/1.1.x"
For unknown(?) reason sequence of "set" commands should be reversed:
vyos@vyos:~$ configure [edit] vyos@vyos# set system package repository squeeze url ' http://archive.debian.org/debian' set system package repository squeeze distribution 'squeeze' set system package repositorysqueeze components 'main contrib non-free'
_DO NOT_, I repeat, _Do NOT_ set 'squeeze-lts' repository as it does not exists any more...
Then:
vyos@vyos# commit && save;exit vyos@vyos:~$
Next, run following commands:
vyos@vyos:~$ sudo apt-get -f install vyos@vyos:~$ sudo apt-get check vyos@vyos:~$ sudo apt-get update vyos@vyos:~$ sudo apt-get upgrade
From that point it is possible to installmany packages from Debian "squeeze" distribution.
As in VyOS there is _NO_ any file manager to make life a bit easier, let's install MC: vyos@vyos:~$ sudo apt-get install mc
Now, it's time to configure access to 44-net.
We may use "ax25" script created by N1URO adapting it accordingly or make short script "ax25.sh" containing:
#!/bin/sh # PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/bin:/usr/sbin:/bin:sbin # modprobe -a ipip ifconfig tunl0 <ampr-IP> netmask 255.255.255.255 mtu 1472 multicast arp up ip route add 44/8 via <VyOS_LAN_IP> dev tunl0 proto static onlink ip tunnel change ttl 64 mode ipip tunl0 ip rule add from 44/8 pref 1 table 1 ip rule add to 44/8 pref 1 table 1 /usr/local/bin/ampr=ripd -t 1 -a <public_IP> -p <rip44_password> -i tunl0 -v -s # echo "10" > /proc/sys/kernel/panic echo "1" > /proc/sys/net/ipv4/ip_forward echo 0 > /proc/sys/net/ipv4/conf/all/log_martians #
On freshly installed VyOS system compilation is _NOT POSSIBLE_ therefore we need to obtain binary file ampr-ripd compiled elsewhere and download package ampr-ripd from http://www.yo2loj.ro/hamprojects/ampr-ripd-1.15.tgz to have "manual" and two other scripts.
Next. let's put ampr-ripd binary file in /usr/local/bin/
Fire-up ax25.sh script and wait till nearest rip44 broadcast taking place every 5 minutes. Wait a while after broadcast and check routing table by issuing command: ip route show table 1 Table should be filled-up by many, many entries that are saved in /var/lib/ampr-ripd/encap-txt
If <rip44_password> is not known yet, use script find-pass.sh provided with ampr-ripd package (change interface name ampr0 to tunl0 or to reflect your system!).
That's all... Nevertheless, YMMV...
From now on, enjoy being part of AMPRNet network!
Happy New 2017 Year!
Best regards.
-- Tom - SP2L
It is nice to be important. But it is more important to be nice!
44Net mailing list 44Net@hamradio.ucsd.edu http://hamradio.ucsd.edu/mailman/listinfo/44net
-- Miguel Rodriguez 12th Grade Student MIGUELR-DN42 / KM4VYU miguemely101@gmail.com Tel: *561-758-0631 <(561)%20758-0631>*
*Accredited District Since 2008; Re-certification - January 2013*
Home of Florida's first LEED Gold Certified School
*Disclaimer*: Under Florida law, e-mail addresses are *public records*. If you do not want your e-mail address released in response to a public records request, do not send electronic mail to this entity. Instead, contact this office by phone or in writing.
On 30/12/16 20:55, Tom SP2L wrote:
(Please note: desktop PC is in DMZ, behind the router)
Hello Miguel et al.
Made mistake, I apologize. Above statement was _NOT_ correct.
VyOS virtual network card worked in bridged mode, therefore IT'S LAN IP address was in DMZ, behind the router.
Best regards.
Hi.
Congratulations on settin gup the system on VyOS.
Just some info:
- starting with ampr-ripd 1.14 the password is not needed anymore unless it will be changed in the future
- starting with ampr-ripd 1.15 multicast access is always done in raw socket mode
So, the -p and -r parameters are not needed anymore on the command line
Have fun,
Marius, YO2LOJ
On 2016-12-30 21:55, Tom SP2L wrote:
(Please trim inclusions from previous messages) _______________________________________________ Hello Miguel et al.
Made some tests with AMPR+VyOS.
My test hardware/software configuration:
- TL-MR3420v2 router (providing access to Internet)
- VirtualBox host machine running on desktop PC (Please note: desktop PC is in DMZ, behind the router)
- VyOS-1.1.7 32bit as a guest OS running in VirtualBox
Installing and basic configuration of VyOS is described here: http://wiki.vyos.net/wiki/User_Guide
After reboot VyOS will be ready to communicate with Internet.
Let's skip chapter "Using the Command-Line Interface", and proceed our own way, assuming that the goal is to configure VyOS capable of bidirectional communication with global 44net system.
Next important steps are described here: http://wiki.vyos.net/wiki/FAQ#For_1.0.x.2F1.1.x chapters "How do I install Debian packages?" and "For 1.0.x/1.1.x"
For unknown(?) reason sequence of "set" commands should be reversed:
vyos@vyos:~$ configure [edit] vyos@vyos# set system package repository squeeze url 'http://archive.debian.org/debian' set system package repository squeeze distribution 'squeeze' set system package repositorysqueeze components 'main contrib non-free'
_DO NOT_, I repeat, _Do NOT_ set 'squeeze-lts' repository as it does not exists any more...
Then:
vyos@vyos# commit && save;exit vyos@vyos:~$
Next, run following commands:
vyos@vyos:~$ sudo apt-get -f install vyos@vyos:~$ sudo apt-get check vyos@vyos:~$ sudo apt-get update vyos@vyos:~$ sudo apt-get upgrade
From that point it is possible to installmany packages from Debian "squeeze" distribution.
As in VyOS there is _NO_ any file manager to make life a bit easier, let's install MC: vyos@vyos:~$ sudo apt-get install mc
Now, it's time to configure access to 44-net.
We may use "ax25" script created by N1URO adapting it accordingly or make short script "ax25.sh" containing:
#!/bin/sh # PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/bin:/usr/sbin:/bin:sbin # modprobe -a ipip ifconfig tunl0 <ampr-IP> netmask 255.255.255.255 mtu 1472 multicast arp up ip route add 44/8 via <VyOS_LAN_IP> dev tunl0 proto static onlink ip tunnel change ttl 64 mode ipip tunl0 ip rule add from 44/8 pref 1 table 1 ip rule add to 44/8 pref 1 table 1 /usr/local/bin/ampr=ripd -t 1 -a <public_IP> -p <rip44_password> -i tunl0 -v -s # echo "10" > /proc/sys/kernel/panic echo "1" > /proc/sys/net/ipv4/ip_forward echo 0 > /proc/sys/net/ipv4/conf/all/log_martians #
On freshly installed VyOS system compilation is _NOT POSSIBLE_ therefore we need to obtain binary file ampr-ripd compiled elsewhere and download package ampr-ripd from http://www.yo2loj.ro/hamprojects/ampr-ripd-1.15.tgz to have "manual" and two other scripts.
Next. let's put ampr-ripd binary file in /usr/local/bin/
Fire-up ax25.sh script and wait till nearest rip44 broadcast taking place every 5 minutes. Wait a while after broadcast and check routing table by issuing command: ip route show table 1 Table should be filled-up by many, many entries that are saved in /var/lib/ampr-ripd/encap-txt
If <rip44_password> is not known yet, use script find-pass.sh provided with ampr-ripd package (change interface name ampr0 to tunl0 or to reflect your system!).
That's all... Nevertheless, YMMV...
From now on, enjoy being part of AMPRNet network!
Happy New 2017 Year!
Best regards.
Here is the instructions I have worked on. Happy New Year!
-------------------------------------------------------------------------
Due to the fact that squeeze is not a Debian repo anymore, jessie is now used. Follow the instructions below:
Run the following command: sudo curl https://debgen.simplylinux.ch/txt/jessie/sources_fae18d34d49f95f3a5a8a2e2c7b... | sudo tee /etc/apt/sources.list.d/00Debian Then: Next, run following commands:
sudo apt-get -f install sudo apt-get update DO NOT RUN APT-GET UPGRADE!!!! This will break many things within VyOS
From that point it is possible to install many packages from Debian "jessie" distribution.
OPTIONAL: As in VyOS there is no file manager. To make life a bit easier, you can install Midnight Commander: sudo apt-get install mc
Now, it's time to configure access to 44-net.
--- Downloading the Source Files for AMPR-RIPd and Compiling --- What we can do now, is create a folder called ampr within our home directory, and install the materials to build out ampr-ripd.
So do the following: sudo -i # This will log you in as root apt-get update # Just to make sure your lists are updated apt-get install -y build-essential # This installs all the build materials needed to build our binary mkdir /home/ampr && cd /home/ampr # Self-Explanatory wget http://www.yo2loj.ro/hamprojects/ampr-ripd-1.15.tgz # Again, self-explanatory tar -xvzf ampr-ripd-1.15.tgz # Extracts the compressed file rm -rf ampr-ripd-1.15.tgz # Deletes it after extraction make # Compiles cp ampr-ripd /usr/local/bin/
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: ./find_pass.sh
Once it shows the password, Ctrl-C out of there and copy the password down. You will need it. Run the following after your done: rm -rf /home/ampr/*
--- Creating the ax25 script ---
Copy the following text to a text editor, like notepad, and edit the portions that are commented with <> and []: --------------------------------------------------------- ### ## Create AMPRNet Tunnel and routing ##
## Configure Tunnel (put your ISP you received from your ISP Here). ip tunnel add ampr0 mode ipip local [wan-ip] ttl 255
## Bring it up ip link set dev ampr0 up
## Enable Multicast in order to receive routes sudo ifconfig ampr0 multicast ifconfig ampr0 multicast
## Configure Policy Based routing # Packets to 44/8 network use routing table 44 ip rule add to 44.0.0.0/8 table 44 priority 44
# Packets from our 44 subnet use table 44 (put your AMPRNet Subnet here) ip rule add from [44subnet] table 44 priority 45
## Configure static routes # Default route for table 44 is to send traffic to amprnet gateway at UCSD ip route add default dev ampr0 via 169.228.66.251 onlink table 44
# Route packets for our net to local interface (put your AMPRNet Subnet here) ip route add [44subnet] dev eth2 table 44
## Start ampr-ripd to learn rest of mesh routes # Be sure to substitute the password you found earlier for <SecretPassword> # Put your static IP you received from your ISP here. ampr-ripd -s -i ampr0 -a 192.0.2.2 -t 44 -p <SecretPassword>
exit 0 --------------------------------------------------------------------------------------------------------- Once done editing, you will copy the text and put it in your clipboard. Open back up the terminal, and run the following: sudo nano /etc/rc.local You should be at a screen with some text and with some key-commands on the bottom
Using your arrow keys, move your cursor above the part that says ""# Do not remove----" and paste the contents of your clipboard into the terminal by right-clicking and then you can close out the file once checking everything is in there. Close out of the file and save it, by doing Ctrl-X, then pressing 'Y', then 'Enter'. --- Script --- Fire-up the ax25 script by just running 'ax25' and wait. Remember, there is a rip44 broadcast every 5 minutes. After 10-15 minutes, check your routing table.
To check your routing table: ip route show table 1 Table should be filled-up with many entries pertaining to AMPR They should mimic /var/lib/ampr-ripd/encap-txt
On Sat, Dec 31, 2016 at 6:03 AM, Tom SP2L SP2L@wp.pl wrote:
(Please trim inclusions from previous messages) _______________________________________________ On 31/12/16 11:57, Marius Petrescu wrote:
So, the -p and -r parameters are not needed anymore on the command line
Marius.
Thank you for this update...
Best regards.
-- Tom - SP2L
It is nice to be important. But it is more important to be nice!
44Net mailing list 44Net@hamradio.ucsd.edu http://hamradio.ucsd.edu/mailman/listinfo/44net
On 01/01/17 08:13, Miguel Rodriguez wrote:
/etc/apt/sources.list.d/00Debian
Above file should have an extension name too: 00Debian.list
To change the console screen resolution follow belows recipe:
http://forum.vyos.net/showthread.php?tid=26088
Tested in VirtualBox up to 1280x1024 - works excellently!
Best regards.
My mistake.
Thanks for pointing that out!
On Wed, Jan 4, 2017 at 5:15 AM, Tom SP2L SP2L@wp.pl wrote:
(Please trim inclusions from previous messages) _______________________________________________ On 01/01/17 08:13, Miguel Rodriguez wrote:
/etc/apt/sources.list.d/00Debian
Above file should have an extension name too: 00Debian.list
To change the console screen resolution follow belows recipe:
http://forum.vyos.net/showthread.php?tid=26088Tested in VirtualBox up to 1280x1024 - works excellently!
Best regards.
-- Tom - SP2L
It is nice to be important. But it is more important to be nice!
44Net mailing list 44Net@hamradio.ucsd.edu http://hamradio.ucsd.edu/mailman/listinfo/44net
I know this thread is 5 months old, however, I have to ask. Who do I go through to get this onto the AMPR wiki?
On Wed, Jan 4, 2017 at 9:36 AM Miguel Rodriguez miguemely101@gmail.com wrote:
My mistake.
Thanks for pointing that out!
On Wed, Jan 4, 2017 at 5:15 AM, Tom SP2L SP2L@wp.pl wrote:
(Please trim inclusions from previous messages) _______________________________________________ On 01/01/17 08:13, Miguel Rodriguez wrote:
/etc/apt/sources.list.d/00Debian
Above file should have an extension name too: 00Debian.list
To change the console screen resolution follow belows recipe:
http://forum.vyos.net/showthread.php?tid=26088Tested in VirtualBox up to 1280x1024 - works excellently!
Best regards.
-- Tom - SP2L
It is nice to be important. But it is more important to be nice!
44Net mailing list 44Net@hamradio.ucsd.edu http://hamradio.ucsd.edu/mailman/listinfo/44net
-- Miguel Rodriguez 12th Grade Student MIGUELR-DN42 / KM4VYU miguemely101@gmail.com Tel: *561-758-0631 <(561)%20758-0631>*
*Accredited District Since 2008; Re-certification - January 2013*
Home of Florida's first LEED Gold Certified School
*Disclaimer*: Under Florida law, e-mail addresses are *public records*. If you do not want your e-mail address released in response to a public records request, do not send electronic mail to this entity. Instead, contact this office by phone or in writing.
--
Miguel Rodriguez 12th Grade Student MIGUELR-DN42 / KM4VYU e. miguemely101@gmail.com p. *561-758-0631*
*Disclaimer*: Under Florida law, e-mail addresses are *public records*. If you do not want your e-mail address released in response to a public records request, do not send electronic mail to this entity. Instead, contact this office by phone or in writing.
Write to chris@g1fef.co.uk to get a wiki login set up for you and then you can add it to the wiki yourself. - Brian
On Thu, May 11, 2017 at 06:02:40PM +0000, Miguel Rodriguez wrote:
I know this thread is 5 months old, however, I have to ask. Who do I go through to get this onto the AMPR wiki?
Perfect!
Thanks!
On Thu, May 11, 2017 at 2:05 PM Brian Kantor Brian@ucsd.edu wrote:
(Please trim inclusions from previous messages) _______________________________________________ Write to chris@g1fef.co.uk to get a wiki login set up for you and then you can add it to the wiki yourself. - Brian
On Thu, May 11, 2017 at 06:02:40PM +0000, Miguel Rodriguez wrote:
I know this thread is 5 months old, however, I have to ask. Who do I go through to get this onto the AMPR wiki?
44Net mailing list 44Net@hamradio.ucsd.edu http://hamradio.ucsd.edu/mailman/listinfo/44net