Well, this you have
[radio-secure]
;exten => ${NODE},1,rpt,${NODE}
[radio-secure]
exten => 1995,1,rpt,1995
Needs to look like this
[radio-secure]
exten => ${NODE},1,rpt,${NODE}
Delete the second entry remove the comment on the line ( ; ) and I assume you only have the one public node.
You did have two [radio-secure] entries and the first one was actually empty because of the line being commented out. That is why you lost network connections. The second
[radio-secure] entry was ignored.(asterisk first match)
and the private node, which should be in [radio]
like this
[radio]
exten => 1995,1,rpt,1995
Add that bold line to the existing context [radio], do not create a second [radio] context
And in rpt.conf …this
1995 = radio@149.28.73.32:4569/1995,NONE ;private for voip phones
61679 = radio@149.28.73.32:4569/61679,NONE ;LA-HUB
should better resemble this
1995 = radio@127.0.0.1:4569/1995,NONE ;private for voip phones
61679 = radio@127.0.0.1:4569/61679,NONE ;LA-HUB
You seem to be using a public IP for a internal node. 127.0.0.1 is internal
Also in the rpt.conf file,
place a line in the private node stanza for the private 1995 node
context = radio
(I think with asl2 it defaults to radio anyway?)
You made this difficult sending pdf’s
But it got it done. Give that a shot and tell us where you are.
I did not go over this well, but on quick time. Going to bed.