Changes

Jump to navigation Jump to search
19,325 bytes added ,  2 years ago
m
no edit summary
Line 1: Line 1: −
Rpt.conf is where the majority of user-facing features, such as the node's CW and voice ID, DTMF commands and timers are set. The default [https://github.com/AllStarLink/DIAL/blob/master/configs/rpt.conf DIAL rpt.conf] is on GitHub and is well commented.  
+
[[Category:Node Configuration]]
 +
[[Category:Config Files]]
 +
Rpt.conf is where the majority of user-facing features, such as the node's CW and voice ID, DTMF commands and timers are set. There is a lot of capability here which can be difficult to grasp. Fortunately the default [https://github.com/pttlink/Asterisk/blob/master/allstar/configs/simpleusb/rpt.conf Node rpt.conf] is well commented and will work fine for most node admins.
    
=DTMF Commands=
 
=DTMF Commands=
DTMF commands may be placed in any one of three [[Structure of Config Files|named stanzas]]. Function stanzas control access to DTMF commands that a user can issue from various  
+
DTMF commands are placed in any one of three [[Structure of Config Files|named stanzas]]. Function stanzas control access to DTMF commands that a user can issue from various  
 
control points.
 
control points.
 
* The [[#Functions Stanza|fuctions stanza]] - to decode DTMF from the node's local receiver.
 
* The [[#Functions Stanza|fuctions stanza]] - to decode DTMF from the node's local receiver.
Line 8: Line 10:  
* The [[#Phone Functions Stanza|phone_functions stanza]] - to decode DTMF from telephone connects.
 
* The [[#Phone Functions Stanza|phone_functions stanza]] - to decode DTMF from telephone connects.
 
   
 
   
Nodes on the same server can have separate (or the same) function stanzas. A function stanza key/value pair has the following format:
+
A function stanza key/value pair has the following format:
    
dtmfcommand=functionclass,[functionmethod],[parameters]
 
dtmfcommand=functionclass,[functionmethod],[parameters]
 
Where:
 
Where:
 
+
* dtmfcommand is a DTMF digit sequence '''minus''' the [[#funcchar=|start character]] (usually *)
* dtmfcommand is a DTMF digit sequence minus the start character (usually *)
+
* functionclass is a string which defines what class of command; link, status or COP
* functionclass is a string which defines what class of command (see the next page)
   
* functionmethod defines the optional method number to use in the function class.
 
* functionmethod defines the optional method number to use in the function class.
 
* functionoptions are one or more optional comma separated parameters which further define a command.
 
* functionoptions are one or more optional comma separated parameters which further define a command.
   −
Sample:
+
==Status Commands==
<pre>
+
Status commands (functioncalss 'status') provide general information about the node.  
989=cop,4  ; generate test tone.
  −
</pre>
  −
This stanza is named (pointed to) by the [[#functions=|functions=]], link_functions=, or the phone_functions= key/value pairs in the node stanza.
      +
<syntaxhighlight lang="ini">712 = status,12  ; Give Time of Day (local only)</syntaxhighlight>
   −
==Status Commands==
  −
Status commands provide general information about the node.
   
{| class="wikitable"
 
{| class="wikitable"
! Status !! Status Function
+
! Status !! Description
 
|-
 
|-
 
|  1 || Force ID (global)
 
|  1 || Force ID (global)
Line 43: Line 40:  
|-
 
|-
 
|  12 || Give Time of Day (local only)
 
|  12 || Give Time of Day (local only)
 +
|}
 +
 +
==Link Commands==
 +
Link commands (functioncalss 'link') connect to, disconnect from, monitor (Rx only) other nodes and give link status.
 +
 +
<syntaxhighlight lang="ini">3 = ilink,3  ; Connect specified link -- transceive</syntaxhighlight>
 +
 +
{| class="wikitable"
 +
! ilink !! Description
 +
|-
 +
| 1 || Disconnect specified link
 +
|-
 +
| 2 || Connect specified link -- monitor only
 +
|-
 +
| 3 || Connect specified link -- tranceive
 +
|-
 +
| 4 || Enter command mode on specified link
 +
|-
 +
| 5 || System status
 +
|-
 +
| 6 || Disconnect all links
 +
|-
 +
| 7 || Last Node to Key Up
 +
|-
 +
| 8 || Connect specified link -- local monitor only
 +
|-
 +
| 9 || Send Text Message (9,<destnodeno or 0 (for all)>,Message Text, etc.
 +
|-
 +
| 10 || Disconnect all RANGER links (except permalinks)
 +
|-
 +
| 11 || Disconnect a previously permanently connected link
 +
|-
 +
| 12 || Permanently connect specified link -- monitor only
 +
|-
 +
| 13 || Permanently connect specified link -- tranceive
 +
|-
 +
| 15 || Full system status (all nodes)
 +
|-
 +
| 16 || Reconnect links disconnected with "disconnect all links"
 +
|-
 +
| 17 || MDC test (for diag purposes)
 +
|-
 +
| 18 || Permanently Connect specified link -- local monitor only
 
|}
 
|}
    
==COP Commands==
 
==COP Commands==
COP (control operator) commands are privileged commands. Node admins may provide some of these to their user community based on personal preference. COP commands within rpt.conf take the general format of [[Structure of Config Files|key/value pairs]]. This COP 7 example would set touchtone *99 to enable the timeout timer.
+
Control operator (functionclass 'cop') commands are privileged commands. Node admins may provide some of these to their user community based on personal preference.  
   −
<pre>99 = cop,7</pre>
+
<syntaxhighlight lang="ini">99 = cop,7   ; enable timeout timer</syntaxhighlight>
    
Some COP commands can take multiple parameters. For example this COP 48 would send #3#607 on command.
 
Some COP commands can take multiple parameters. For example this COP 48 would send #3#607 on command.
   −
<pre>900=cop,48,#,3,#,6,0,7</pre>  
+
<syntaxhighlight lang="ini">900 = cop,48,#,3,#,6,0,7</syntaxhighlight>
    
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
! COP !! COP Function
+
! COP !! Description
 
|-
 
|-
 
|  1  || System warm boot
 
|  1  || System warm boot
Line 191: Line 231:  
|-
 
|-
 
|  65 || Send POCSAG page (equipped channel types only)
 
|  65 || Send POCSAG page (equipped channel types only)
 +
|}
    +
==Remote Base Commands==
 +
Remote base commands (functionclass 'remote') provide remote base control. This stanza is [[Structure of Config Files#Settings to name other Stanzas|named by]] the remote base [[#Remote Base Functions=|Remote Base Functions]] key/value pair.
 +
 +
{| class="wikitable"
 +
! remote !! Description
 +
|-
 +
| 1 || Retrieve Memory
 +
|-
 +
| 2 || Set freq.
 +
|-
 +
| 3 || Set tx PL tone
 +
|-
 +
| 4 || Set rx PL tone
 +
|-
 +
| 5 || Long status query
 +
|-
 +
| 99,CALLSIGN,LICENSETAG || Remote Base login
 +
|-
 +
| 100 || Rx PL off
 +
|-
 +
| 101 || Rx PL on
 +
|-
 +
| 102 || Tx PL off
 +
|-
 +
| 103 || Tx PL on
 +
|-
 +
| 104 || Low Power
 +
|-
 +
| 105 || Medium Power
 +
|-
 +
| 106 || High Power
 +
|-
 +
| 107 || Bump -20
 +
|-
 +
| 108 || Bump -100
 +
|-
 +
| 109 || Bump -500
 +
|-
 +
| 110 || Bump +20
 +
|-
 +
| 111 || Bump +100
 +
|-
 +
| 112 || Bump +500
 +
|-
 +
| 113 || Scan - slow
 +
|-
 +
| 114 || Scan - quick
 +
|-
 +
| 115 || Scan - fast
 +
|-
 +
| 116 || Scan + slow
 +
|-
 +
| 117 || Scan + quick
 +
|-
 +
| 118 || Scan + fast
 +
|-
 +
| 119 || Tune
 +
|-
 +
| 140 || Short status query
 +
|-
 +
| 210 || Send a *
 +
|-
 +
| 211 || Send a #
 
|}
 
|}
 +
 +
Not all commands above are supported by all radios. For example radios which don't support SSB, would not be able to be placed in LSB or USB mode.
 +
 +
===Remote Base Login===
 +
When [[#authlevel=|authlevel=]] is greater than zero, remote 99 is used to define a different dtmf sequence for each user authorized to use the remote base. The remote base will announce the callsign as access is granted.
 +
 +
<syntaxhighlight lang="ini">
 +
[remote node#]
 +
authlevel = 2 ; Remote base authentication level
 +
; authlevel = 0 : Anyone can use it
 +
; authlevel = 1 : Requires log in, Waits for Tx key to ask for it
 +
; authlevel = 2 : Requires log in, asks for it automously
 +
 +
[remote-functions]
 +
8xx=remote,99,OK,E ; password
 +
</syntaxhighlight>
 +
<syntaxhighlight lang="ini">
 +
9139583 = remote,99,WB6NIL,G  ; grant access to Jim (general)
 +
9148351 = remote,99,WA6ZFT,E  ; grant access to Steve (extra)
 +
</syntaxhighlight>
 +
When the remote base is disconnected from the originating node, the
 +
user will be logged out.
 +
 +
The LICENSETAG argument is used to enforce
 +
tx frequency limits. Need info [txlimits].
 +
 +
= Settings to name other Stanzas =
 +
Within the node stanza, some key=value pairs point to other stanzas. This allows nodes on the same Asterisk/app_rpt server to have the same settings (without duplicate entries) or different settings in some cases. For example the phone patch command may be *6 on one node, yet *61 on another.
 +
 +
For example:
 +
<syntaxhighlight lang="ini">
 +
[1000]
 +
functions=functionsVHF
 +
 +
[1001]
 +
functions=functionsVHF
 +
 +
[1002]
 +
functions=functionsUHF
 +
 +
[functionsVHF]
 +
; Two meter Autopatch up is *6
 +
6=autopatchup,noct=1,farenddisconnect=1,dialtime=20000
 +
0=autopatchdn      ; Autopatch down
 +
 +
[functionsUHF]
 +
; 440 Autopatch up is *61
 +
61=autopatchup,noct=1,farenddisconnect=1,dialtime=20000  ; Autopatch up
 +
0=autopatchdn      ; Autopatch down
 +
* controlstates=
 +
* functions=
 +
* link_functions=
 +
* macro=
 +
* phone_functions=
 +
* telemetry=
 +
* wait_times=
 +
</syntaxhighlight>
    
=Node Number Stanza=
 
=Node Number Stanza=
 
The node number stanza is the first stanza in rpt.conf.  
 
The node number stanza is the first stanza in rpt.conf.  
   −
<pre>
+
<syntaxhighlight lang="ini">[1999]    ; Replace with your assigned node number</syntaxhighlight>
[1999]    ; Replace with your assigned node number
  −
</pre>
      
The node number stanza contains the following key/value pairs.  
 
The node number stanza contains the following key/value pairs.  
Line 205: Line 364:  
This controls the length of the repeater hang time when the alternate hang timer is selected with a control operator function. It is specified in milliseconds.  
 
This controls the length of the repeater hang time when the alternate hang timer is selected with a control operator function. It is specified in milliseconds.  
   −
Sample:
+
<syntaxhighlight lang="ini">althangtime=4000  ; 4 seconds</syntaxhighlight>
<pre>
+
 
althangtime=4000  ; 4 seconds
  −
</pre>
   
==beaconing===
 
==beaconing===
 
When set to 1 will send the repeater ID at the idtime interval regardless of whether there was repeater activity or not. This feature appears to be required in the UK, but is probably illegal in the US.
 
When set to 1 will send the repeater ID at the idtime interval regardless of whether there was repeater activity or not. This feature appears to be required in the UK, but is probably illegal in the US.
   −
Sample:
+
<syntaxhighlight lang="ini">beaconing=1  ;Set to 1 to beacon. Defaults to 0</syntaxhighlight>
<pre>
+
 
beaconing=1  ;Set to 1 to beacon. Defaults to 0
  −
</pre>
   
==callerid===
 
==callerid===
 
This setting allows the autopatch on the node to be identified with a specific caller ID. The default setting is as follows
 
This setting allows the autopatch on the node to be identified with a specific caller ID. The default setting is as follows
 +
<syntaxhighlight lang="ini">callerid="Repeater" <0000000000></syntaxhighlight>
   −
<pre>
+
''Note'': The value in quotes is the name of the autopatch caller, and the numbers in angle brackets are the originating telephone number to use.
callerid="Repeater" <0000000000>
  −
</pre>
     −
''Note'': The value in quotes is the name of the autopatch caller, and the numbers in angle brackets are the originating telephone number to use.
+
==connpgm= and discpgm= ==
 +
 
 +
Runs user defined scripts. Example from https://www.qsl.net/k0kn/swissarmy_debian
 +
<syntaxhighlight lang="ini">
 +
# Place these lines in rpt.conf for each node:
 +
#    connpgm=/home/kyle/swissarmy 1
 +
#    discpgm=/home/kyle/swissarmy 0
 +
</syntaxhighlight>
    
==context===
 
==context===
    
This setting directs the autopatch for the node to use a specific context in extensions.conf for outgoing autopatch calls. The default is to specify a context name of radio.
 
This setting directs the autopatch for the node to use a specific context in extensions.conf for outgoing autopatch calls. The default is to specify a context name of radio.
 
+
<syntaxhighlight lang="ini">context=radio</syntaxhighlight>
<pre>
  −
context=radio
  −
</pre>
      
==controlstates===
 
==controlstates===
 
This setting defines the name of the [[Structure of Config Files|variable named]] control state stanza. Control states are an optional feature which allows groups of control operator commands to be executed all at once. To use control states, define an entry in your node stanzas to point to a dedicated control state stanza like this:
 
This setting defines the name of the [[Structure of Config Files|variable named]] control state stanza. Control states are an optional feature which allows groups of control operator commands to be executed all at once. To use control states, define an entry in your node stanzas to point to a dedicated control state stanza like this:
<pre>
+
<syntaxhighlight lang="ini">controlstates = controlstates  ; points to control state stanza</syntaxhighlight>
controlstates = controlstates  ; points to control state stanza
      +
<syntaxhighlight lang="ini">
 
[controlstates]
 
[controlstates]
 
0 = rptena,lnkena,apena,totena,ufena,noicd  ; Normal operation                                   
 
0 = rptena,lnkena,apena,totena,ufena,noicd  ; Normal operation                                   
 
1 = rptena,lnkena,apdis,totdis,ufena,noice  ; Net and news operation                                             
 
1 = rptena,lnkena,apdis,totdis,ufena,noice  ; Net and news operation                                             
 
2 = rptena,lnkdis,apdis,totena,ufdis,noice  ; Repeater only operation
 
2 = rptena,lnkdis,apdis,totena,ufdis,noice  ; Repeater only operation
</pre>
+
</syntaxhighlight>
   −
The [[#Control States Stanza|control state stanza]] (below) describes these mnemonics.
+
The [[#Control States Stanza|control state stanza]] describes these mnemonics.
    
==duplex===
 
==duplex===
Line 257: Line 415:  
| 2 || Full Duplex with telemetry tones and hang time. This mode is preferred when interfacing a repeater.  
 
| 2 || Full Duplex with telemetry tones and hang time. This mode is preferred when interfacing a repeater.  
 
|-  
 
|-  
| 3 || Full Duplex with telemetry tones and hang time, but no repeated audio.
+
| 3 || Full Duplex with telemetry tones and hang time, but no repeated audio. [[Duplex Mode 3|See details]]
 
|-  
 
|-  
 
| 4 || Full Duplex with telemetry tones and hang time. Repeated audio only when the autopatch is down.
 
| 4 || Full Duplex with telemetry tones and hang time. Repeated audio only when the autopatch is down.
 
|}
 
|}
   −
Sample:
+
<syntaxhighlight lang="ini>
<pre>
   
duplex = 0    ; 0 = Half duplex with no telemetry tones or hang time.
 
duplex = 0    ; 0 = Half duplex with no telemetry tones or hang time.
</pre>
+
</syntaxhighlight>
    
==endchar===
 
==endchar===
Line 272: Line 429:  
==erxgain===
 
==erxgain===
 
Echolink receive gain adjustment in +/- db-volts. Used to balance Echolink recieve audio on an app_rpt node.  
 
Echolink receive gain adjustment in +/- db-volts. Used to balance Echolink recieve audio on an app_rpt node.  
 
+
<syntaxhighlight lang="ini">erxgain = -3</syntaxhighlight>
<pre>
  −
erxgain = -3
  −
</pre>
      
See [[:Category:How to|Echolink How to]]
 
See [[:Category:How to|Echolink How to]]
Line 281: Line 435:  
==etxgain===
 
==etxgain===
 
Echolink transmit gain adjustment in +/- db-volts. Used to balance Echolink transmit audio on an app_rpt node.  
 
Echolink transmit gain adjustment in +/- db-volts. Used to balance Echolink transmit audio on an app_rpt node.  
 
+
<syntaxhighlight lang="ini">etxgain = 3</syntaxhighlight>
<pre>
  −
etxgain = 3
  −
</pre>
      
See [[:Category:How to|Echolink How to]]
 
See [[:Category:How to|Echolink How to]]
Line 294: Line 445:  
This [[Structure of Config Files#Settings to name other Stanzas|names (points to)]] the [[#Functions Stanza|function stanza]].
 
This [[Structure of Config Files#Settings to name other Stanzas|names (points to)]] the [[#Functions Stanza|function stanza]].
   −
Sample:
+
<syntaxhighlight lang="ini">functions = functionsUHF  ; pointer to 440 repeater functions stanza</syntaxhighlight>
<pre>
+
 
functions = functionsUHF  ; pointer to 440 repeater functions stanza
+
== GUI ==
</pre>
+
{| class="wikitable"
 +
!Key
 +
!Valid Values
 +
!Default
 +
|-
 +
|guilinkdefault
 +
|0 = telemetry output off, 1 = telemetry output on, 2 = timed telemetry output on command execution and for a short time thereafter, 3 = follow local telemetry mode
 +
|1
 +
|-
 +
|guilinkdynamic
 +
|0 = disallow users to change the gui telemetry setting with a COP command, 1 = Allow users to change the setting with a COP command
 +
|1
 +
|}
 +
 
 +
= Function Classes =
 +
Function classes are names for categories of functions. There are several function classes defined. They are described in the table below:
 +
{| class="wikitable"
 +
!Class
 +
!Description
 +
|-
 +
|cop
 +
|Control operator commands
 +
|-
 +
|ilink
 +
|Internet linking commands
 +
|-
 +
|status
 +
|User Status Commands
 +
|-
 +
|autopatchup
 +
|Autopatch up commands
 +
|-
 +
|autopatchdn
 +
|Autopatch down commands
 +
|-
 +
|remote
 +
|Remote base commands
 +
|-
 +
|macro
 +
|Command Macros
 +
|}
 +
Most of the above command classes require a function method and possibly one or more additional command parameters. Function methods are discussed next.
 +
 
 +
= Function Methods =
 +
Function methods are numbers which identify a specific function to execute within a function class. Function Methods are optional and in some cases should be omitted (Such as with the autopatchup method) A complete and up-to-date description of all functon methods can be found in the app_rpt.c source file. Some function methods are shown below as an example below:
 +
1  - Force ID (global)
 +
2  - Give Time of Day (global)
 +
3  - Give software Version (global)
 +
11 - Force ID (local only)
 +
12 - Give Time of Day (local only)
 +
 
 +
= Function Options =
 +
Some Function Methods can take function options. These are specified after the Function Method separated with commas. Not all commands require or take Function options. An example of a method which can accept Function Options is the autopatchup method.
 +
 
 +
= Putting it all Together =
 +
A small excerpt from the function stanza of rpt.conf is hown below.
 +
<syntaxhighlight lang="ini">
 +
[functions]
 +
1=ilink,1                                              ; Specific link disconnect
 +
6=autopatchup,noct=1,farenddisconnect=1,dialtime=2000  ; Autopatch up
 +
</syntaxhighlight>
 +
The above example contains DTMF functions with all of the parameters discussed on previous pages.
 +
 
 +
In the above example:
 +
* *1 followed by a node number disconnects a specific link. The function class is ''ilink'' and the function method is ''1''
 +
* *6 followed by a phone number brings up the autopatch with the function options specified. Note that there is no function method defined, but there are function options present.
    
==hangtime===
 
==hangtime===
 
This controls the length of the repeater hang time. It is specified in milliseconds.  
 
This controls the length of the repeater hang time. It is specified in milliseconds.  
   −
Sample:
+
<syntaxhighlight lang="ini">hangtime = 1000  ;Set hang time for 1 second</syntaxhighlight>
<pre>
  −
hangtime = 1000  ;Set hang time for 1 second
  −
</pre>
      
==holdofftelem===
 
==holdofftelem===
 
This node stanza configuration key forces all telemetry to be held off until a local user on the receiver or a remote user over a link unkeys. There is one exception to this behavior: When an ID needs to be sent and there is activity coming from a linked node.
 
This node stanza configuration key forces all telemetry to be held off until a local user on the receiver or a remote user over a link unkeys. There is one exception to this behavior: When an ID needs to be sent and there is activity coming from a linked node.
   −
Sample:
+
<syntaxhighlight lang="ini">holdofftelem = 1  ;Set to 1 to hold off. Default is 0</syntaxhighlight>
<pre>
+
 
holdofftelem = 1  ;Set to 1 to hold off. Default is 0
+
== telemdefault= ==
</pre>
+
<syntaxhighlight lang="ini">telemdefault =  0 = telemetry output off, 1 = telemetry output on, 2 = timed telemetry output on command execution and for a short time thereafter. Default is 1</syntaxhighlight>
 +
 
 +
== telemdynamic= ==
 +
<syntaxhighlight lang="ini">telemdynamic = 0 = disallow users to change the local telemetry setting with a COP command, 1 = Allow users to change the setting with a COP command. Default is 1</syntaxhighlight>
 +
 
 +
== phonelinkdefault= ==
 +
<syntaxhighlight lang="ini">phonelinkdefault = 0 = telemetry output off, 1 = telemetry output on, 2 = timed telemetry output on command execution and for a short time thereafter, 3 = follow local telemetry mode  Default is 1</syntaxhighlight>
 +
 
 +
== phonelinkdynamic= ==
 +
<syntaxhighlight lang="ini">phonelinkdynamic = 0 = disallow users to change phone telemetry setting with a COP command, 1 = Allow users to change the setting with a COP command  Default is 1</syntaxhighlight>
    
==idrecording===
 
==idrecording===
 
The identifier message is stored in the node stanza using the idrecording key. It can be changed to a different call sign by changing the value to something different. The value can be either a morse code identification string prefixed with |i, or the name of a sound file containing a voice identification message. When using a sound file, the default path for the sound file is /var/lib/asterisk/sounds.  
 
The identifier message is stored in the node stanza using the idrecording key. It can be changed to a different call sign by changing the value to something different. The value can be either a morse code identification string prefixed with |i, or the name of a sound file containing a voice identification message. When using a sound file, the default path for the sound file is /var/lib/asterisk/sounds.  
   −
Sample:
+
<syntaxhighlight lang="ini">idrecording = |iwa6zft/r  ; Morse Code ID</syntaxhighlight>
<pre>
  −
idrecording = |iwa6zft/r  ; Morse Code ID
  −
</pre>
   
or
 
or
<pre>
+
<syntaxhighlight lang="ini">idrecording = /var/lib/asterisk/sounds/myid  ; Voice ID</syntaxhighlight>
idrecording = /var/lib/asterisk/sounds/myid  ; Voice ID
  −
</pre>
   
''Note'': ID recording files must have extension gsm,ulaw,pcm, or wav. The extension is left off when it is defined as the example shows above. File extensions are used by Asterisk to determine how to decode the file. All ID recording files should be sampled at 8KHz. See [[Recording Audio Files|Recording audio files]]
 
''Note'': ID recording files must have extension gsm,ulaw,pcm, or wav. The extension is left off when it is defined as the example shows above. File extensions are used by Asterisk to determine how to decode the file. All ID recording files should be sampled at 8KHz. See [[Recording Audio Files|Recording audio files]]
   Line 331: Line 548:  
The ID talkover message is stored in the node stanza using the idtalkover setting. The purpose of idtalkover is to specify an alternate ID to use when the ID must be sent over the top of a user transmission, This can be a shorter voice ID or an ID in morse code. The value can be either a morse code identification string prefixed with |i, or the name of a sound file containing a voice identification message. When using a sound file, the default path for the sound file is /var/lib/asterisk/sounds. Example usages are as follows:
 
The ID talkover message is stored in the node stanza using the idtalkover setting. The purpose of idtalkover is to specify an alternate ID to use when the ID must be sent over the top of a user transmission, This can be a shorter voice ID or an ID in morse code. The value can be either a morse code identification string prefixed with |i, or the name of a sound file containing a voice identification message. When using a sound file, the default path for the sound file is /var/lib/asterisk/sounds. Example usages are as follows:
   −
Sample:
+
<syntaxhighlight lang="ini">idtalkover = |iwa6zft/r  ; Morse Code ID</syntaxhighlight>
<pre>
  −
idtalkover = |iwa6zft/r  ; Morse Code ID
  −
</pre>
   
or
 
or
<pre>
+
<syntaxhighlight lang="ini">idtalkover = /var/lib/asterisk/sounds/myid  ; Voice ID</syntaxhighlight>
idtalkover = /var/lib/asterisk/sounds/myid  ; Voice ID
  −
</pre>
   
''Note'': ID recording files must have extension gsm,ulaw,pcm, or wav. The extension is left off when it is defined as the example shows above. File extensions are used by Asterisk to determine how to decode the file. All ID recording files should be sampled at 8KHz. See [[Recording Audio Files|Recording audio files]]
 
''Note'': ID recording files must have extension gsm,ulaw,pcm, or wav. The extension is left off when it is defined as the example shows above. File extensions are used by Asterisk to determine how to decode the file. All ID recording files should be sampled at 8KHz. See [[Recording Audio Files|Recording audio files]]
   Line 354: Line 566:  
* dialtone is optional. Set to Y for dial tone on successful funcchars.
 
* dialtone is optional. Set to Y for dial tone on successful funcchars.
   −
Sample:
+
<syntaxhighlight lang="ini">inxlat = #56,#57,0123456789ABCD ; string xlat from radio port to sys</syntaxhighlight>
<pre>
  −
inxlat = #56,#57,0123456789ABCD ; string xlat from radio port to sys
  −
</pre>
      
==link_functions===
 
==link_functions===
Line 364: Line 573:  
The link_functions setting directs the node to use a particular function stanza for functions dialed by users accessing the node via a link from another node. The traditional default is to point it to a function stanza named "functions".
 
The link_functions setting directs the node to use a particular function stanza for functions dialed by users accessing the node via a link from another node. The traditional default is to point it to a function stanza named "functions".
   −
Sample:
+
<syntaxhighlight lang="ini">link_functions = functions ; pointer to the Link Function stanza</syntaxhighlight>
<pre>
  −
link_functions = functions ; pointer to the Link Function stanza
  −
</pre>
      
==linkmongain===
 
==linkmongain===
 
Link Monitor Gain adjusts the audio level of monitored nodes when a signal from another node or the local receiver is received. If linkmongain is set to a negative number the monitored audio will decrease by the set amount in db. If linkmongain set to a positive number monitored audio will increase by the set amount in db. The value of linkmongain is in db. The default value is 0 db.
 
Link Monitor Gain adjusts the audio level of monitored nodes when a signal from another node or the local receiver is received. If linkmongain is set to a negative number the monitored audio will decrease by the set amount in db. If linkmongain set to a positive number monitored audio will increase by the set amount in db. The value of linkmongain is in db. The default value is 0 db.
   −
Sample:
+
<syntaxhighlight lang="ini">linkmongain = -20  ; reduce link volume 20dB</syntaxhighlight>
<pre>
  −
linkmongain = -20  ; reduce link volume 20dB
  −
</pre>
      
==linktolink===
 
==linktolink===
 
When operating in duplex mode 0, this forces the radio interface to operate in full duplex mode, but keeps all the other duplex mode 0 semantics. This is used when a radio interface is connected to a multiport analog repeater controller. The linktolink= key can take two values: yes or no.
 
When operating in duplex mode 0, this forces the radio interface to operate in full duplex mode, but keeps all the other duplex mode 0 semantics. This is used when a radio interface is connected to a multiport analog repeater controller. The linktolink= key can take two values: yes or no.
   −
Sample:
+
<syntaxhighlight lang="ini">linktolink = yes  ; set to yes to enable. Default is no.</syntaxhighlight>
<pre>
  −
linktolink = yes  ; set to yes to enable. Default is no.
  −
</pre>
      
==linkunkeyct===
 
==linkunkeyct===
 
The linkunkeyct setting selects the courtesy tone to send when a connected remote node unkeys. The default is no courtesy tone when a remote node unkeys.
 
The linkunkeyct setting selects the courtesy tone to send when a connected remote node unkeys. The default is no courtesy tone when a remote node unkeys.
   −
Sample:
+
<syntaxhighlight lang="ini">linkunkeyct = ct8  ; use courtesy tone 8</syntaxhighlight>
<pre>
+
 
linkunkeyct = ct8  ; use courtesy tone 8
+
==macro===
</pre>
+
The marco key/value points to by the [[#Macro Stanza|Macro Stanza]] key/value pair. Macros are DTMF shortcuts.
 +
 
 +
<syntaxhighlight lang="ini">macro=macro  ; use stanza names 'macros'
 +
 
 +
[macro]
 +
1 = *32000*32001    ; connect to nodes 2000 and 2001
 +
</syntaxhighlight>
    
==nounkeyct===
 
==nounkeyct===
 
The nounkeyct node stanza key completely disables the courtesy tone. This is useful for eliminating TX time in applications using simplex uplinks to repeaters on the repeater pair itself.  This practice is '''strongly''' discouraged.
 
The nounkeyct node stanza key completely disables the courtesy tone. This is useful for eliminating TX time in applications using simplex uplinks to repeaters on the repeater pair itself.  This practice is '''strongly''' discouraged.
   −
Sample:
+
<syntaxhighlight lang="ini">nounkeyct = yes  ; :(</syntaxhighlight>
<pre>
  −
nounkeyct = yes  ; :(
  −
</pre>
      
==politeid===
 
==politeid===
 
The politeid setting specified the number of milliseconds prior to the end of the id cycle where the controller will attempt to play the ID in the tail when a user unkeys. If the controller does not get a chance to send the ID in the tail, the ID will be played over the top of the user transmission. Optional, default 30000.
 
The politeid setting specified the number of milliseconds prior to the end of the id cycle where the controller will attempt to play the ID in the tail when a user unkeys. If the controller does not get a chance to send the ID in the tail, the ID will be played over the top of the user transmission. Optional, default 30000.
   −
Sample:
+
<syntaxhighlight lang="ini">politeid = 30000  ; 30 seconds</syntaxhighlight>
<pre>
  −
politeid = 30000  ; 30 seconds
  −
</pre>
      
==propagate_dtmf===
 
==propagate_dtmf===
Line 413: Line 613:  
This setting is meant to be used in conjunction with linktolink, inxlat, and outxlat when interfacing a radio port to a multiport analog repeater controller on an RF-linked system.
 
This setting is meant to be used in conjunction with linktolink, inxlat, and outxlat when interfacing a radio port to a multiport analog repeater controller on an RF-linked system.
   −
Sample:
+
<syntaxhighlight lang="ini">propagate_dtmf = no</syntaxhighlight>
<pre>
  −
propagate_dtmf = no
  −
</pre>
   
''Note'': There is a separate setting propagate_phonedtmf for use by dial-in (phone and dphone) users.
 
''Note'': There is a separate setting propagate_phonedtmf for use by dial-in (phone and dphone) users.
   Line 422: Line 619:  
The remotect setting allows the selection of the remote linked courtesy tone so that the users can tell there is a [[:Category:Remote Base|remote base]] connected locally.
 
The remotect setting allows the selection of the remote linked courtesy tone so that the users can tell there is a [[:Category:Remote Base|remote base]] connected locally.
   −
Sample:
+
<syntaxhighlight lang="ini">remotect = ct3  ; use courtesy tone 3</syntaxhighlight>
<pre>
  −
remotect = ct3  ; use courtesy tone 3
  −
</pre>
      
==rxburstfreq===
 
==rxburstfreq===
 
If rx tone burst operation is desired, specify the frequency in hertz of the desired tone burst. Setting to 0 (or not specifying) indicates no tone burst operation.
 
If rx tone burst operation is desired, specify the frequency in hertz of the desired tone burst. Setting to 0 (or not specifying) indicates no tone burst operation.
   −
Sample:
+
<syntaxhighlight lang="ini">rxburstfreq = 1000</syntaxhighlight>
<pre>
  −
rxburstfreq = 1000
  −
</pre>
      
==rxburstthreshold===
 
==rxburstthreshold===
Line 450: Line 641:  
| dahdi/pseudo || No radio, used for hubs
 
| dahdi/pseudo || No radio, used for hubs
 
|-  
 
|-  
| SimpleUSB/usb_1999 || SimpleUSB (limited DSP)  
+
| SimpleUSB/usb_1999 || [[SimpleUSB_Channel_Driver|SimpleUSB (limited DSP)]]
 
|-  
 
|-  
| Radio/usb_1999 || USBRadio (full DSP)  
+
| Radio/usb_1999 || [[Usbradio.conf|USBRadio (full DSP)]]
 
|-  
 
|-  
| voter/1990 || RTCM  
+
| voter/1990 || [[Voter.conf|RTCM]]
 
|-  
 
|-  
 
| Pi/1 || Raspberry Pi PiTA  
 
| Pi/1 || Raspberry Pi PiTA  
Line 464: Line 655:  
| USRP/127.0.0.1:34001:32001 || GNU Radio interface USRP
 
| USRP/127.0.0.1:34001:32001 || GNU Radio interface USRP
 
|}
 
|}
Sample:
+
<syntaxhighlight lang="ini">rxchannel = dahdi/pseudo    ; No radio (hub)</syntaxhighlight>
<pre>
  −
rxchannel = dahdi/pseudo    ; No radio (hub)
  −
</pre>
      
''Note'': This is selecting what is known as (in Asterisk terminology) the channel driver.
 
''Note'': This is selecting what is known as (in Asterisk terminology) the channel driver.
 +
 +
==scheduler===
 +
This setting defines the scheduler stanza. The scheduler is used to execute commands at a particular time.
 +
 +
<syntaxhighlight lang="ini">scheduler = schedule  ; name scheduler to 'schedule'
 +
 +
[schedule]
 +
...
 +
</syntaxhighlight>
    
==sleeptime===
 
==sleeptime===
 
This sets the inactivity period in seconds for no signal on the repeater receiver before the system goes to sleep.  
 
This sets the inactivity period in seconds for no signal on the repeater receiver before the system goes to sleep.  
   −
Sample:
+
<syntaxhighlight lang="ini">sleeptime = 300  ; go to sleep after 5 mins of no activity</syntaxhighlight>
<pre>
  −
sleeptime = 300  ; go to sleep after 5 mins of no activity
  −
</pre>
      
==startup_macro===
 
==startup_macro===
 
The startup_macro is executed once on system startup. Each node can have one startup macro defined in its node stanza.
 
The startup_macro is executed once on system startup. Each node can have one startup macro defined in its node stanza.
   −
Sample:
+
<syntaxhighlight lang="ini">startup_macro = *31000 *31001 *31002  ; Connect to 1000, 1001 and 1002 at startup</syntaxhighlight>
<pre>
+
 
startup_macro = *31000*31001*31002  ; Connect to 1000, 1001 and 1002 at startup
+
One string of one or multiple commands executed in order.
</pre>
+
Note that this line of commands does NOT terminate with a # like a normal macro. And you can call any number of regular macros with it.
    
==tailmessagelist===
 
==tailmessagelist===
 
The tailmessagelist setting allows a comma separated list of audio files to be specified for the tail message function. The tail messages will rotate from one to the next until the end of the list is reached at which point the first message in the list will be selected. If no absolute path name is specified, the directory var/lib/asterisk/sounds will be searched for the sound file. The file extension should be omitted.
 
The tailmessagelist setting allows a comma separated list of audio files to be specified for the tail message function. The tail messages will rotate from one to the next until the end of the list is reached at which point the first message in the list will be selected. If no absolute path name is specified, the directory var/lib/asterisk/sounds will be searched for the sound file. The file extension should be omitted.
   −
Sample:
+
<syntaxhighlight lang="ini">tailmessagelist = welcome,clubmeeting,wx  ; rotate 3 tail messages</syntaxhighlight>
<pre>
  −
tailmessagelist = welcome,clubmeeting,wx  ; rotate 3 tail messages
  −
</pre>
      
''Note'': ID recording files must have extension gsm,ulaw,pcm, or wav. The extension is left off when it is defined as the example shows above. File extensions are used by Asterisk to determine how to decode the file. All ID recording files should be sampled at 8KHz. See [[Recording Audio Files|Recording audio files]]
 
''Note'': ID recording files must have extension gsm,ulaw,pcm, or wav. The extension is left off when it is defined as the example shows above. File extensions are used by Asterisk to determine how to decode the file. All ID recording files should be sampled at 8KHz. See [[Recording Audio Files|Recording audio files]]
Line 500: Line 691:  
This sets the amount of time in milliseconds between tail messages. Tail Messages are played when a user unkeys on the repeater input at the point where the hang timer expires after the courtesy tone is sent.
 
This sets the amount of time in milliseconds between tail messages. Tail Messages are played when a user unkeys on the repeater input at the point where the hang timer expires after the courtesy tone is sent.
   −
Sample:
+
<syntaxhighlight lang="ini">tailmessagetime = 900000  ; 15 minutes between tail messages</syntaxhighlight>
<pre>
  −
tailmessagetime = 900000  ; 15 minutes between tail messages
  −
</pre>
      
==tailsquashedtime===
 
==tailsquashedtime===
 
If a tail message is "squashed" by a user keying up over the top of it, a separate time value can be loaded to make the tail message be retried at a shorter time interval than the standard tailmessagetime= setting. The tailsquashedtime= setting takes a value in milliseconds.
 
If a tail message is "squashed" by a user keying up over the top of it, a separate time value can be loaded to make the tail message be retried at a shorter time interval than the standard tailmessagetime= setting. The tailsquashedtime= setting takes a value in milliseconds.
   −
Sample:
+
<syntaxhighlight lang="ini">tailsquashedtime = 300000  ; 5 minutes</syntaxhighlight>
<pre>
  −
tailsquashedtime = 300000  ; 5 minutes
  −
</pre>
      
==totime===
 
==totime===
This defines the time out timer interval. The value is in milliseconds.
+
This defines the time out timer interval. The value is in milliseconds. The default value is 180000.
   −
Sample:
+
<syntaxhighlight lang="ini">totime = 180000  ; Repeater timeout 3 minutes </syntaxhighlight>
<pre>
+
 
totime = 180000  ; 3 minutes
+
Related: [[#COP Commands | COP Commands 7 and 8]] and [[#controlstates= | controlstates=]] and [[#Control States Stanza | Control States Stanza]]
</pre>
      
==unlinkedct===
 
==unlinkedct===
 
The unlinkedct setting selects the courtesy tone to be used when the system has no remote nodes connected and is operating as a standalone repeater.
 
The unlinkedct setting selects the courtesy tone to be used when the system has no remote nodes connected and is operating as a standalone repeater.
   −
Sample:
+
<syntaxhighlight lang="ini>
<pre>
   
unlinkedct = ct2  ; use courtesy tone 2
 
unlinkedct = ct2  ; use courtesy tone 2
</pre>
+
</syntaxhighlight>
 +
 
 +
==wait-times===
 +
Wait-times points to the [[#Wait Times Stanza|Wait Times Stanza]].
 +
 
 +
<syntaxhighlight lang="ini>
 +
wait-times = wait-times  ; name wait-times to 'wait-times'
 +
</syntaxhighlight>
    
=Functions Stanza=
 
=Functions Stanza=
The functions stanza is a named stanza [[Structure of Config Files#Settings to name other Stanzas|pointed to]] by the [[#functions=|function=]] key/value pair.  Functions within this stanza are used to decode DTMF commands when accessing the node from its receiver.  This stanza is typically named functions. See [[#DTMF Commands|DTMF Commands]] for the list of functions available.
+
The functions stanza is a named stanza [[Structure of Config Files#Settings to name other Stanzas|pointed to]] by the [[#functions=|function=]] key/value pair.  Functions within this stanza are used to decode DTMF commands when accessing the node from its receiver.  This stanza is typically named 'functions'.
   −
Sample:
+
<syntaxhighlight lang="ini>
<pre>
+
functions = functions  ; name the functions stanza 'functions'
functions = functions  ;name the functions stanza 'functions'
      
[functions]
 
[functions]
712 = status,12  ; Give Time of Day (local only)
+
...
</pre>
+
</syntaxhighlight>
 +
See [[#DTMF Commands|DTMF Commands]] for the list of functions available.
    
=Link Functions Stanza=
 
=Link Functions Stanza=
 
The link functions stanza is a named stanza [[Structure of Config Files#Settings to name other Stanzas|pointed to]] by the [[#link_functions=|link_function=]] key/value pair.  Functions within this stanza are used decode DTMF commands when accessing the node via a link from another node. The traditional usage is to point link_functions= to the same stanza as named  by [[#functions=|functions=]] thereby having functions from a linked node and from the local node the same.
 
The link functions stanza is a named stanza [[Structure of Config Files#Settings to name other Stanzas|pointed to]] by the [[#link_functions=|link_function=]] key/value pair.  Functions within this stanza are used decode DTMF commands when accessing the node via a link from another node. The traditional usage is to point link_functions= to the same stanza as named  by [[#functions=|functions=]] thereby having functions from a linked node and from the local node the same.
   −
Sample:
+
<syntaxhighlight lang="ini>
<pre>
+
functions = functions        ; name the functions stanza 'functions'
link_functions = functions  ; use local functions
+
link_functions = functions  ; use the same stanza
    
[functions]
 
[functions]
 
...
 
...
</pre>
+
</syntaxhighlight>
or
+
If a different set of either limited or more capable functions is desired:
<pre>
+
<syntaxhighlight lang="ini>
link_functions = my_link_functions  ; use link functions
+
functions = functions                ; name the functions stanza 'functions'
 +
link_functions = my_link_functions  ; use a different stanza
    
[functions]
 
[functions]
Line 559: Line 750:  
[my_link_functions]
 
[my_link_functions]
 
...
 
...
</pre>
+
</syntaxhighlight>
 +
See [[#DTMF Commands|DTMF Commands]] for the list of functions available.
    
=Phone Functions Stanza=
 
=Phone Functions Stanza=
 
The phone functions stanza is a named stanza [[Structure of Config Files#Settings to name other Stanzas|pointed to]] by the [[#phone_functions=|phone_function=]] key/value pair.  Functions within this stanza are used decode DTMF commands when accessing the node from a telephone. The traditional usage is to point phone_functions= to the same stanza as named  by [[#functions=|functions=]] thereby having functions from a phone and from the local node the same.  
 
The phone functions stanza is a named stanza [[Structure of Config Files#Settings to name other Stanzas|pointed to]] by the [[#phone_functions=|phone_function=]] key/value pair.  Functions within this stanza are used decode DTMF commands when accessing the node from a telephone. The traditional usage is to point phone_functions= to the same stanza as named  by [[#functions=|functions=]] thereby having functions from a phone and from the local node the same.  
   −
Sample:
+
<syntaxhighlight lang="ini>
<pre>
+
functions = functions         ; name the functions stanza 'functions'
functions = functions   ; radio functions
+
phone_functions = functions  ; use the same stanza
phone_functions = functions  ; use same functions
      
[functions]
 
[functions]
 
...
 
...
</pre>
+
</syntaxhighlight>
 
If a different set of either limited or more capable functions is desired:
 
If a different set of either limited or more capable functions is desired:
<pre>
+
<syntaxhighlight lang="ini>
functions = functions   ; radio functions
+
functions = functions                 ; name the functions stanza 'functions'
phone_functions = my_phone_functions  ; use phone functions
+
phone_functions = my_phone_functions  ; use a different stanza
    
[functions]
 
[functions]
Line 582: Line 773:  
[my_phone_functions]
 
[my_phone_functions]
 
...
 
...
</pre>
+
</syntaxhighlight>
 +
See [[#DTMF Commands|DTMF Commands]] for the list of functions available.
 +
 
 +
=Macro Stanza=
 +
The marco stanza is named stanza pointed to by the [[#macro=|macro=]] key/value pair. Macros are DTMF shortcuts.
   −
=Node Number Stanza=
+
<syntaxhighlight lang="ini>
The node number stanza is the first stanza in rpt.conf.
+
macro=macro  ; use stanza names 'macros'
 +
 
 +
[macro]
 +
1 = *32000*32001    ; connect to nodes 2000 and 2001
 +
</syntaxhighlight>
 +
 
 +
[https://wiki.allstarlink.org/index.php?title=Macro_use_and_format&modqueued=1 Full Macro Use And Format]
    
=Remote Base Stanza=
 
=Remote Base Stanza=
 +
Here are [[Structure of Config Files|key/value pairs]] required to configure a remote base.
 +
 +
==authlevel===
 +
The authlevel= key is used to enable or disable login requirements for a remote base.
 +
 +
* authlevel=0 Disables all access control (not recommended, unsecured)
 +
* authlevel=1 Enables access control, and waits for key up before prompting for the access code
 +
* authlevel=2 Enables access control, and prompts for the access code at the time of connection
 +
 +
<syntaxhighlight lang="ini>
 +
autllevel = 0  ; allow all comers
 +
</syntaxhighlight>
 +
 +
==civaddr===
 +
civaddr= is used with ICOM band radios to set the CIV address. The value is a 2 digit hexadecimal number. If this key is not specified, then the CIV address will be set to the default of 88.
 +
 +
<syntaxhighlight lang="ini>
 +
civaddr = 98  ; set CIV to 98
 +
</syntaxhighlight>
 +
 +
==Remote Base functions===
 +
functions= is a pointer to a remote base function stanza.
 +
 +
<syntaxhighlight lang="ini>
 +
functions = functions-remote  ; name the functions stanza 'functions-remote'
 +
 +
[functions-remote]
 +
...
 +
</syntaxhighlight>
 +
 +
See [[#Remote Base Functions Stanza|Remote Base Functions Stanza]].
 +
 +
==ioaddr===
 +
ioaddr= refers to a parallel port I/O address. It is specified as a hexadecimal number with a 0x prefix. The parallel port is used when the Doug Hall RBI-1 interface is employed.
 +
 +
<syntaxhighlight lang="ini>
 +
ioaddr = 0x378  ; set RB-1 address
 +
</syntaxhighlight>
 +
 +
==ioport===
 +
ioport= sets the serial port. On Linux Systems, these are typically path names to special files in the /dev directory.
 +
 +
<syntaxhighlight lang="ini>
 +
ioport = /dev/ttyS1  ; Linux com1
 +
</syntaxhighlight>
 +
 +
==Remote Base phone_functions===
 +
phone_functions= is a pointer to a remote base phone function stanza. It is equivalent to phone_functions in the [[#Phone Functions Stanza|Phone Functions Stanza]] but provides a separate set of commands. 
 +
 +
<syntaxhighlight lang="ini>
 +
phone_functions = functions-remote
 +
</syntaxhighlight>
 +
 +
==remote===
 +
remote= sets the type of radio. It also ensures that the node will be defined as a remote base node and not a standard node.
 +
 +
<syntaxhighlight lang="ini>
 +
remote = xcat  ; set xcat interface
 +
</syntaxhighlight>
 +
 +
{| class="wikitable"
 +
! Radio !! Value !! Comments
 +
|-
 +
| Dumb || y || Use for single channel remote base radios
 +
|-
 +
| FT-897 || ft897 || Must specify serial port using ioport=
 +
|-
 +
| TMG-707 || kenwood || Must specify serial port using ioport=
 +
|-
 +
| IC-706 || ic706 || Must specify serial port using ioport=. Must specify civaddr using civaddr=
 +
|-
 +
| TM-271 || tm271 || Must specify serial port using ioport=
 +
|-
 +
| Syntor Xcat || xcat || Must specify serial port using ioport=. Must specify civaddr using civaddr=
 +
|-
 +
| Doug Hall || rbi || Requires Parallel Port Address https://wiki.allstarlink.org/wiki/Remote_Base:_Doug_Hall_RBI-1=
 +
|}
 +
 +
==remote_inact_timeout===
 +
 +
Specifies the amount of time without keying from the link. Set to 0 to disable timeout.
 +
 +
<syntaxhighlight lang="ini>
 +
remote_inact_timeout = 0  ; do not time out
 +
</syntaxhighlight>
 +
 +
==remote_timeout===
 +
Session time out for remote base. Set to 0 to disable.
 +
 +
<syntaxhighlight lang="ini>
 +
remote_timeout = 0  ; do not timeout
 +
</syntaxhighlight>
 +
 +
==remote_timeout_warning===
 +
 +
==remote_timeout_freq===
 +
 +
==Remote Base rxchannel===
 +
This should contain the name of a usb radio interface which has been defined in [[usbradio.conf]] or a zaptel interface number if using a Quad Radio PCI Card.
 +
 +
<syntaxhighlight lang="ini>
 +
rxchannel = usbRadio/usb1
 +
</syntaxhighlight>
 +
 +
==Sample Remote Configuration==
 +
<syntaxhighlight lang="ini>
 +
[1234]
 +
; Rx audio/signaling channel                                                                                 
 +
rxchannel = Radio/usb
 +
 +
; Serial port for control
 +
ioport = /dev/ttyS1
 +
 +
; Radio Type               
 +
remote = ft897
 +
 +
; Function list from link                                         
 +
functions = functions-remote 
 +
 +
; Function list from phone       
 +
phone_functions = functions-remote
 +
 +
; Authorization level                                       
 +
authlevel = 0     
 +
</syntaxhighlight>
    
=Nodes Stanza=
 
=Nodes Stanza=
 +
The [nodes] stanza is a list of nodes, their IP addresses, port and "NONE" for non-remote base nodes. The nodes stanza is used to identify which node is mapped to which Internet call and to determine the destination to send the call to. If you are using automatic update for Allstar link (public) nodes, no Allstar link nodes should be defined here. Only place a definition for your local nodes, and private (off of allstar link) nodes or nodes behind the same NAT router here.
 +
 +
<syntaxhighlight lang="ini>
 
[nodes]
 
[nodes]
 +
1000 = radio@127.0.0.1/1000,NONE              ; Private hub on this server
 +
1001 = radio@host.domain.com/1001,NONE        ; Private node on another server
 +
2501 = radio@127.0.0.1/2501,NONE              ; Public node on this server
 +
2502 = radio@127.0.0.1/2502,NONE              ; Another public node on this server
 +
2503 = radio@192.168.1.20:4570/2503,NONE      ; Public node behind the same NAT router
 +
</syntaxhighlight>
 +
The [nodes] stanza performs a function similar to an OS hosts file. When looking up node information, app_rpt looks in the [nodes] stanza first then searches (what could be called the Allstar DNS) the /var/lib/asterisk/rpt_extnodes file.
 +
 
=Telemetry Stanza=
 
=Telemetry Stanza=
 +
This stanza is named by the telemetry= key/value pair. Telemetry entries can be shared across all nodes on the Asterisk/app_rpt server, or defined for each node. Can be a tone sequence, morse string, or a file as follows:
 +
 +
* |t - Tone escape sequence:
 +
** Tone sequences consist of 1 or more 4-tuple entries (freq1, freq2, duration, amplitude). Single frequencies are created by setting freq1 or freq2 to zero.
 +
* |m - Morse escape sequence:
 +
**Sends Morse code at the '''telemetry amplitude and telemetry frequency''' as defined in the [morse] section. Follow with an alphanumeric string.
 +
* |i - Morse ID escape sequence:
 +
**Sends Morse code at the '''ID amplitude and ID frequency''' as defined in the [morse] section. Follow with an alphanumeric string.
 +
* Path to sound file:
 +
**Specify the path to a sound file on the server. Do not include file extension.
 +
 +
<syntaxhighlight lang="ini>
 +
[telemetry]
 +
ct1=|t(350,0,100,2048)(500,0,100,2048)(660,0,100,2048)
 +
ct2=|t(660,880,150,2048) 
 +
ct3=|t(440,0,150,4096)
 +
ct4=|t(550,0,150,2048)
 +
ct4=|t(2475,0,250,768)
 +
ct5=|t(660,0,150,2048)
 +
ct6=|t(880,0,150,2048)
 +
ct7=|t(660,440,150,2048)
 +
ct8=|t(700,1100,150,2048)
 +
ct9=|t(1633,0,50,1000)(0,0,30,0)(1209,0,50,1000);
 +
;remotetx=|t(1633,0,50,3000)(0,0,80,0)(1209,0,50,3000);
 +
remotetx=|t(880,0,150,2048)
 +
remotemon=|t(1209,0,50,2048)
 +
cmdmode=|t(900,903,200,2048)
 +
functcomplete=|t(1000,0,100,2048)(0,0,100,0)(1000,0,100,2048)
 +
patchup=rpt/callproceeding
 +
patchdown=rpt/callterminated
 +
 +
What the numbers mean,
 +
(000,000,010,000)
 +
  |  |  |  |-------amplitude
 +
  |  |  |-------------duration
 +
  |  |-------------------Tone 2
 +
  |-------------------------Tone 1
 +
 +
</syntaxhighlight>
    
=Morse Stanza=
 
=Morse Stanza=
 +
Morse code parameters, these are common to all nodes on a given Asterisk/app_rpt server.
 +
 +
<syntaxhighlight lang="ini>
 +
[morse]
 +
speed = 20            ; Approximate speed in WPM
 +
frequency = 900      ; Morse Telemetry Frequency
 +
amplitude = 4096      ; Morse Telemetry Amplitude
 +
idfrequency = 746    ; Morse ID Frequency 
 +
idamplitude = 768    ; Morse ID Amplitude
 +
</syntaxhighlight>
    
=Wait Times Stanza=
 
=Wait Times Stanza=
 +
This stanza is named by the [[#wait-times=|wait-times=]] key/value pair. The wait time stanza is used to set delay time between various node actions and their response. Values are in milliseconds.
 +
 +
<syntaxhighlight lang="ini>
 +
wait-times = wait-times  ; name the stanza 'wait-times'
   −
=Memory Stanza=
+
[wait-times]                                                                                               
 +
telemwait = 2000
 +
idwait = 500
 +
unkeywait = 2000
 +
calltermwait = 2000
 +
</syntaxhighlight>
   −
=Macro Stanza=
+
=Remote Base Memory Stanza=
 +
Remote base memories are in the format of:
 +
 
 +
memory = rxfreq,plfreq,txpower,offset,tone
 +
 
 +
<syntaxhighlight lang="ini>
 +
[memory]
 +
00 = 146.580,100.0,m
 +
01 = 147.030,103.5,m+t
 +
02 = 147.240,103.5,m+t
 +
03 = 147.765,79.7,m-t
 +
04 = 146.460,100.0,m
 +
05 = 146.550,100.0,m
 +
</syntaxhighlight>
    
=Control States Stanza=
 
=Control States Stanza=
   −
There are several predefined nmemonics (keywords) used in the control state stanza to enable and disable the various features of the controller. These nmemonics correspond to the control operator command to be executed and most of these are the same groups of letters sent back when a single control operator command is executed on the controller.
+
There are several predefined nmemonics (keywords) used in the [controlstates] stanza to enable and disable the various features of the controller. These nmemonics correspond to the control operator command to be executed and most of these are the same groups of letters sent back when a single control operator command is executed on the controller.
    
{| class="wikitable"
 
{| class="wikitable"
Line 646: Line 1,054:     
=Schedule Stanza=
 
=Schedule Stanza=
 +
The scheduler can execute commands at certain times. For example for a net on Tuesday nights at 8 PM.
 +
 +
<syntaxhighlight lang="ini>
 +
scheduler=schedule  ; name the stanza 'schedule'
 +
 +
[schedule]                                                                     
 +
;dtmf_function =  m h dom mon dow  ; ala cron, star is implied                                                 
 +
2 = 00 00 * * *  ; at midnight every day, execute macro 2.
 +
</syntaxhighlight>
    
=DAQ List Stanza=
 
=DAQ List Stanza=
Line 651: Line 1,068:  
=Meter Faces Stanza=
 
=Meter Faces Stanza=
   −
=Alarms Stanza=
+
=Alarms Stanza
 
  −
[[Category:Node Configuration]]
 

Navigation menu