On the gateways list page or under the details (at:
https://portal.ampr.org/gateways_list.php) could another column be
added to show the associated call sign of the person who maintains
that entry?
Right now there really doesn't seem to be a way to tell.
Now this guy appears every 60 sec., and he obviously knows what he's
doing. Anyone else seeing him? How does he do it?
Sat Feb 22 14:12:57 2014 - tun0 recv:
IP: len 74 169.228.66.251->192.168.1.149 ihl 20 ttl 50 prot IP
IP: len 54 67.185.10.74->44.135.160.40 ihl 20 ttl 46 DF prot UDP
UDP: len 34 48465->6781 Data 26
0000 CQ AMPR! CQ AMPR! CQ AMPR!
Sat Feb 22 14:12:57 2014 - tun0 recv:
IP: len 74 169.228.66.251->192.168.1.149 ihl 20 ttl 50 prot IP
IP: len 54 67.185.10.74->44.135.160.40 ihl 20 ttl 46 DF prot UDP
UDP: len 34 48465->6781 Data 26
0000 CQ AMPR! CQ AMPR! CQ AMPR!
(encap) 67.185.10.74->44.135.160.40 DF UDP
CQ AMPR! CQ AMPR! CQ AMPR!
Sat Feb 22 14:12:57 2014 - tun0 sent:
IP: len 56 192.168.1.149->67.185.10.74 ihl 20 ttl 254 prot ICMP
ICMP: type Unreachable code Port
Returned IP: len 54 67.185.10.74->44.135.160.40 ihl 20 ttl 46 DF prot UDP
UDP: len 34 48465->6781 Data 26
jerome - ve7ass
------
Email me off list for some examples. I hope you are using something bigger than a 2651xm because the config gets too large for nvram otherwise. I'll also send you a script for converting the encap file to tunnels/routes too.
73
Jason ky9j
-------- Original message --------
From: Phil Pacier - AD6NH <ad6nh(a)aprs2.net>
Date: 02/15/2014 4:34 PM (GMT-05:00)
To: AMPRNet working group <44net(a)hamradio.ucsd.edu>
Subject: [44net] Cisco IOS Example?
(Please trim inclusions from previous messages)
_______________________________________________
Good day all. Does anyone have a rough example of a 44Net tunnel setup
for Cisco IOS? I only have a /32 to play with and would like to put it
on the WAN router. Thanks!
--
Phillip Pacier - AD6NH
APRS Tier2 Network Coordinator
---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com
_________________________________________
44Net mailing list
44Net(a)hamradio.ucsd.edu
http://hamradio.ucsd.edu/mailman/listinfo/44net
Is it just me..... or when first logging into the portal, it appears to not
take your username and password, and gives you a second login screen.
And then the second login screen does log you in.
Am I the only one seeing this ??
Wm Lewis (KG6BAJ)
AMPR Net IP Address Coordinator - Northern and Central California Regions
(A 100% Volunteer Group)
(530) 263-1595 (Home/Office)
______________________________________________
----------
This message is for the designated recipient only and MAY CONTAIN
PRIVILEGED OR CONFIDENTIAL INFORMATION.
If you have received it in error, please notify the sender immediately and
delete the original. Any other use of this E-mail is prohibited.
Brian / Chris:
I take some of that back.....
Upon further testing, if I edit someone's region description, the portal
tells me it saved it. But when I go back into the record, it is *not saved*
at all.
So, bug report of a different nature.
Thanks
Bill Lewis / KG6BAJ
Good day all. Does anyone have a rough example of a 44Net tunnel setup
for Cisco IOS? I only have a /32 to play with and would like to put it
on the WAN router. Thanks!
--
Phillip Pacier - AD6NH
APRS Tier2 Network Coordinator
---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com
44net-request(a)hamradio.ucsd.edu wrote:
> Subject:
> Re: [44net] ampr-ripd 1.8 released
> From:
> "Marius Petrescu" <marius(a)yo2loj.ro>
> Date:
> 02/12/2014 06:15 AM
>
> To:
> "'AMPRNet working group'" <44net(a)hamradio.ucsd.edu>
>
>
> Hi Rob,
>
> -w is a good idea and I will implement it.
>
> Regarding the daemon function, AFAIK it is not available on all systems and
> does not have a standardized behavior.
> I wrote the code as portable as possible (e.g. static memory allocations,
> minimal needed libraries).
> Since the only action on the parent is exit(), I don't think that waiting
> time is relevant.
>
> Thank you for your input.
>
> Marius, YO2LOJ
Ok. I think daemon is available on many Unix/Linux-like platforms. However, it is not a
very complicated function. What you wrote in ampr-ripd is nearly the same, except for
that daemon() closes stdin, stdout and stderr when going to daemon mode.
At least on a debian system, when ampr-ripd is started from a shell script under /etc/init.d,
and when it does not close the controlling tty, init keeps a process running (startpar) that
waits until it does that. I think that is part of the logic that prints the OK or FAIL messages
in the init procedure.
So, you could add some fclose or close calls in that part of the code. (only when verbose=0)
I used the following workaround before I discovered daemon():
ampr-ripd -options </dev/null >/dev/null 2>&1
Rob