1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<section id="reference" xmlns:xi="http://www.w3.org/2001/XInclude">
<sectioninfo>
<revhistory>
<revision>
<revnumber>$Revision$</revnumber>
<date>$Date$</date>
</revision>
</revhistory>
</sectioninfo>
<title>Reference</title>
<section id="coreoptions">
<title>Core Options</title>
<para>Core options are located in beginning of configuration file and
affect behavior of the server.</para>
<itemizedlist>
<listitem>
<para>
<varname>debug</varname> - Set log level, this is number between 0 and 9. Default
is 0.
</para>
</listitem>
<listitem>
<para>
<varname>fork</varname> - If set to yes, the server will spawn children. If set to no, the main
process will be processing all messages. Default is yes.
<note>
<para>
Disabling child spawning is useful mainly for
debugging. When <varname>fork</varname> is turned off,
some features are unavailable:
there is no attendant process, no pid file is generated,
and server listens only at one address. Make sure you
are debugging the same interface at which
<application>ser</application> listens.
The easiest way to do so is to set the interface using
<varname>listen</varname> option explicitly.
</para>
</note>
</para>
</listitem>
<listitem>
<para>
<varname>log_stderror</varname> - If set to yes, the server will print its debugging
information to standard error output. If set to no, <command>syslog</command>
will be used. Default is no (printing to syslog).
</para>
</listitem>
<listitem>
<para>
<varname>listen</varname> - list of all IP addresses or hostnames SER should listen on.
<note>
<para>
This parameter may repeat several times, then SER will
listen on all addresses. For example, the following
command-line options (equivalent to "listen" config
option) may be used:
<command>
ser -l foo -l bar -p 5061 -l x -l y
</command>
will listen on foo:5060, bar:5061 & x:5061 & y:5061
</para>
</note>
</para>
</listitem>
<listitem>
<para>
<varname>alias</varname> - Add IP addresses or hostnames to list of name aliases.
All requests with hostname matching an alias will satisfy the condition
"uri==myself".
</para>
</listitem>
<listitem>
<para>
<varname>dns</varname> - Uses dns to check if it is necessary to add a "received=" field to a via.
Default is no.
</para>
</listitem>
<listitem>
<para>
<varname>rev_dns</varname> - Same as dns but use reverse DNS. Default is no.
</para>
</listitem>
<listitem>
<para>
<varname>port</varname> - Listens on the specified port (default 5060). It applies to the last
address specified in listen and to all the following that do not have a corresponding "port" option.
</para>
</listitem>
<listitem>
<para>
<varname>maxbuffer</varname> - Maximum receive buffer size which will not be exceeded by
the auto-probing procedure even if the OS allows. Default value is MAX_RECV_BUFFER_SIZE,
which is 256k.
</para>
</listitem>
<listitem>
<para>
<varname>children</varname> - Specifies how many processes should be started
for each transport protocol.
Running multiple children allows a server to
server multiple requests in parallel when request processing block (e.g., on DNS
lookup). Note that <application>ser</application> typically spawns additional
processes, such as timer process or FIFO server. If FIFO server is turned on,
you can watch running processes using the <application>serctl</application>
utility.
</para>
</listitem>
<listitem>
<para>
<varname>check_via</varname> - Turn on or off Via host checking when forwarding replies.
Default is no.
</para>
</listitem>
<listitem>
<para>
<varname>syn_branch</varname> - Shall the server use stateful synonym branches? It is faster but not
reboot-safe. Default is yes.
</para>
</listitem>
<listitem>
<para>
<varname>memlog</varname> - Debugging level for final memory statistics report. Default is L_DBG --
memory statistics are dumped only if <varname>debug</varname> is set high.
</para>
</listitem>
<listitem>
<para>
<varname>sip_warning</varname> - Should replies include extensive warnings? By default yes,
it is good for trouble-shooting.
</para>
</listitem>
<listitem>
<para>
<varname>fifo</varname> - FIFO special file pathname, for example "/tmp/ser_fifo". Default is
no filename -- no FIFO server is started then. We recommend to set it so that
accompanying applications such as <application>serweb</application> or
<application>serctl</application> can communicate with
<application>ser</application>.
</para>
</listitem>
<listitem>
<para>
<varname>fifo_mode</varname> - Permissions of the FIFO special file.
</para>
</listitem>
<listitem>
<para>
<varname>server_signature</varname> - Should locally-generated messages include server's signature?
By default yes, it is good for trouble-shooting.
</para>
</listitem>
<listitem>
<para>
<varname>reply_to_via</varname> - A hint to reply modules
whether they should send reply
to IP advertised in Via.
Turned off by default, which means that replies are
sent to IP address from which requests came from.
</para>
</listitem>
<listitem>
<para>
<varname>user | uid</varname> - uid to be used by the server.
</para>
</listitem>
<listitem>
<para>
<varname>group | gid</varname> - gid to be used by the server.
</para>
</listitem>
<listitem>
<para>
<varname>mhomed</varname> -- enable calculation of
outbound interface; useful on multihomed servers,
see <xref linkend="mhomed"/>.
</para>
</listitem>
<listitem>
<para>
<varname>loadmodule</varname> - Specifies a module to be loaded (for example "/usr/lib/ser/modules/tm.so")
</para>
</listitem>
<listitem>
<para>
<varname>modparam</varname> - Module parameter configuration. The commands takes three parameters:
<itemizedlist>
<listitem>
<para>
<emphasis>module</emphasis> - Module in which the parameter resides.
</para>
</listitem>
<listitem>
<para>
<emphasis>parameter</emphasis> - Name of the parameter to be configured.
</para>
</listitem>
<listitem>
<para>
<emphasis>value</emphasis> - New value of the parameter.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
</itemizedlist>
</section>
<section id="builtinref">
<title>Core Commands</title>
<itemizedlist id="routeblocks">
<title>Route Blocks and Process Control</title>
<!--<para>
Route block and process control keywords determine
the order in which SIP requests are processed.
</para>-->
<listitem>
<para>
<command>route[number]{...}</command> - This marks a "route block" in configuration files.
route blocks are basic building blocks of <application>ser</application> scripts.
Each route block contains a sequence of
<application>SER</application> actions enclosed in braces. Multiple route blocks
can be included in a configuration file.
When script execution begins on request receipt,
route block number 0 is entered. Other route blocks serve as a kind of sub-routines and
may be entered by calling the action <command>route(n)</command>,
where n is number of the block. The action <command>break</command>
exits currently executed route block. It stops script execution for
route block number 0 or returns to calling route block otherwise.
</para>
<example>
<title>route</title>
<programlisting>
route[0] {
# call routing block number 2
route(2);
}
route[2] {
forward("host.foo.bar", 5060);
}
</programlisting>
</example>
</listitem>
<listitem>
<para>
<command>failure_route</command> is used to restart request processing
when a negative reply for a previously relayed request is received. It is only
used along with tm module, which stores the original requests and
can return to their processing later. To activate processing
of a <command>failure_route</command> block, call the TM action
<command>t_on_failure(route_number)</command> before calling
<command>t_relay</command>. When a negative reply
comes back, the desired <command>failure_route</command>
will be entered and processing of the original request may
continue.
</para>
<para>
The set of actions applicable from within
<command>failure_route</command> blocks is limited.
Permitted actions are URI-manipulation actions, logging and
sending stateful replies using <command>t_reply</command>.
</para>
<example>
<title>failure_route</title>
<programlisting>
failure_route[1] {
# for some reason, the original forwarding attempt
# failed, try at another URI
append_branch("sip:nonsense@iptel.org");
# if this new attempt fails too, try another failure_route
t_on_failure("2");
t_relay();
}
</programlisting>
</example>
</listitem>
<listitem>
<para>
The action <command>break</command> exits currently executed route block.
It stops script execution for route block number 0 or returns to calling
route block otherwise.
<note>
<para>
We recommend to use <command>break</command>
after any request forwarding or replying. This practice
helps to avoid erroneous scripts that
continue execution and mistakenly send another reply or
forward a request to another place, resulting in
protocol confusion.
</para>
</note>
</para>
<para>
<emphasis>Example:</emphasis> break;
</para>
</listitem>
<listitem>
<para>
<command>route(n)</command> - call routing block route[n]{...};
when the routing block n finishes processing, control is passed
back to current block and processing continues.
</para>
</listitem>
<listitem>
<para>
<command>if (condition) statement</command> - Conditional statement.
</para>
<example>
<title>Use of <command>if</command></title>
<programlisting>
if (method=="REGISTER) {
log("register received\n");
};
</programlisting>
</example>
</listitem>
<listitem>
<para>
<command>if - else</command> - If-Else Conditional statement.
</para>
<example>
<title>Use of <command>if-else</command></title>
<programlisting>
if (method=="REGISTER) {
log("register received\n");
} else {
log("non-register received\n");
};
</programlisting>
</example>
</listitem>
</itemizedlist>
<itemizedlist>
<title>Flag Manipulation</title>
<listitem>
<para>
<command>setflag</command> - Set flag in the message.
</para>
<para>
<emphasis>Example:</emphasis> setflag(1);
</para>
</listitem>
<listitem>
<para>
<command>resetflag</command> - Reset flag in the message.
</para>
<para>
<emphasis>Example:</emphasis> resetflag(1);
</para>
</listitem>
<listitem>
<para>
<command>isflagset</command> - Test whether a particular flag is set.
</para>
<example>
<title>isflagset</title>
<programlisting>
if (isflagset(1)) {
....
};
</programlisting>
</example>
</listitem>
<listitem>
<para>
<function>setavpflag(avp, flag_id)</function> - Sets a flag in the
AVP(s). The command simply set custom flag of AVP. The flags
may be used in script using <function>isavpflagset</function>
or in a module to perform specific operation on marked AVPs.
Flag identifier must be declared via <emphasis>avpflags</emphasis>
statement.
</para>
<example>
<title>setavpflag</title>
<programlisting>
avpflags
my_flag,
your_flag;
....
setavpflag($avp[1], "my_flag");
....
if (isavpflagset($avp2, "your_flag")) {
}
</programlisting>
</example>
</listitem>
<listitem>
<para>
<function>resetavpflag(avp, flag_id)</function> - Same as command
<function>setavpflag</function> - only resetavpflag will be
called instead of setavpflag.
</para>
</listitem>
<listitem>
<para>
<function>isavpflagset(avp, flag_id)</function> - Test if the avp flag
is set or not.
</para>
</listitem>
</itemizedlist>
<itemizedlist>
<title>Manipulation of URI and Destination Set</title>
<listitem>
<para>
<command>rewritehost | sethost | seth</command> - Rewrite host part of the Request URI.
</para>
<para>
<emphasis>Example:</emphasis> sethost("foo.bar.com");
</para>
</listitem>
<listitem>
<para>
<command>rewritehostport | sethostport | sethp</command> - Rewrite host and port part of the Request URI.
</para>
<para>
<emphasis>Example:</emphasis> sethostport("foo.bar.com:5060");
</para>
</listitem>
<listitem>
<para>
<command>rewriteuser | setuser | setu</command> - Rewrite or set username part of the Request URI.
</para>
<para>
<emphasis>Example:</emphasis> setuser("joe");
</para>
</listitem>
<listitem>
<para>
<command>rewriteuserpass | setuserpass | setup</command> - Rewrite or set username and password part
of the Request URI.
</para>
<para>
<emphasis>Example:</emphasis> setuserpass("joe:mypass");
</para>
</listitem>
<listitem>
<para>
<command>rewriteport | setport | setp</command> - Rewrite or set port of the Request URI.
</para>
<para>
<emphasis>Example:</emphasis> setport("5060");
</para>
</listitem>
<listitem>
<para>
<command>rewriteuri | seturi</command> - Rewrite or set the whole Request URI.
</para>
<para>
<emphasis>Example:</emphasis> seturi("sip:joe@foo.bar.com:5060");
</para>
</listitem>
<listitem>
<para>
<command>revert_uri</command> - Revert changes made to the Request URI and use original Request URI.
</para>
<para>
<emphasis>Example:</emphasis> revert_uri();
</para>
</listitem>
<listitem>
<para>
<command>prefix</command> - Add prefix to username in Request URI.
</para>
<para>
<emphasis>Example:</emphasis> prefix("123");
</para>
</listitem>
<listitem>
<para>
<command>strip</command> - Remove first n characters of username in Request URI.
</para>
<para>
<emphasis>Example:</emphasis> strip(3);
</para>
</listitem>
<listitem>
<para>
<command>append_branch</command> - Append a new destination to destination set of the message.
</para>
<para>
<example>
<title>Use of <command>append_branch</command></title>
<programlisting>
# redirect to these two destinations: a@foo.bar and b@foo.bar
# 1) rewrite the current URI
rewriteuri("sip:a@foo.bar");
# 2) append another entry to the destination ser
append_branch("sip:b@foo.bar");
# redirect now
sl_send_reply("300", "redirection");
</programlisting>
</example>
</para>
</listitem>
</itemizedlist>
<itemizedlist>
<title>Message Forwarding</title>
<listitem>
<para>
<command>forward(uri, port)</command> - Forward the request to given
destination statelessly. The uri and port parameters may take special
values 'uri:host'
and 'uri:port' respectively, in which case SER forwards to destination
set in current URI. All other elements in a destination set are
ignored by stateless forwarding.
</para>
<para>
<emphasis>Example:</emphasis> forward("foo.bar.com"); # port defaults to 5060
</para>
</listitem>
<listitem>
<para>
<command>send</command> - Send the message as is to a third party
</para>
<para>
<emphasis>Example:</emphasis> send("foo.bar.com");
</para>
</listitem>
</itemizedlist>
<itemizedlist>
<title>Logging</title>
<listitem>
<para>
<command>log([level], message)</command> - Log a message.
</para>
<para>
<emphasis>Example:</emphasis> log(1, "This is a message with high log-level set to 1\n");
</para>
<para>
Logging is very useful for troubleshooting or attracting administrator's
attention to unusual situations. <application>ser</application>
reports log messages to <application>syslog</application>
facility unless it is configured to print them to <filename>stderr</filename>
with the <varname>log_stderr</varname> configuration option. Log messages
are only issued if their log level exceeds threshold set with the
<varname>debug</varname> configuration option. If log level is omitted,
messages are issued at log level 4.
</para>
</listitem>
</itemizedlist>
<itemizedlist>
<title>Miscellaneous</title>
<listitem>
<para>
<command>len_gt</command> - If length of the message is greater than value given as parameter, the
command will return 1 (indicating true). Otherwise -1 (indicating false) will be returned. It may
take 'max_len' as parameter, in which case message size is limited
to internal buffer size BUF_SIZE (3040 by default).
</para>
<example>
<title>Use of <command>len_gt</command></title>
<programlisting>
# deny all requests larger in size than 1 kilobyte
if (len_gt(1024)) {
sl_send_reply("513", "Too big");
break;
};
</programlisting>
</example>
</listitem>
</itemizedlist>
</section>
<section>
<title>Command Line Parameters</title>
<note>
<para>
Command-Line parameters may be overridden by configuration
file options which take precedence over them.
</para>
</note>
<itemizedlist>
<listitem>
<para>
<emphasis>-h</emphasis> - Displays a short usage description, including all available options.
</para>
</listitem>
<listitem>
<para>
<emphasis>-c</emphasis> - Performs loop checks and computes branches.
</para>
</listitem>
<listitem>
<para>
<emphasis>-r</emphasis> - Uses dns to check if it is necessary to add a "received=" field to a via.
</para>
</listitem>
<listitem>
<para>
<emphasis>-R</emphasis> - Same as -r but uses reverse dns.
</para>
</listitem>
<listitem>
<para>
<emphasis>-v</emphasis> - Turns on via host checking when forwarding replies.
</para>
</listitem>
<listitem>
<para>
<emphasis>-d</emphasis> - Turns on debugging, multiple -d increase debugging level.
</para>
</listitem>
<listitem>
<para>
<emphasis>-D</emphasis> - Runs ser in the foreground (it doesn't fork into daemon mode).
</para>
</listitem>
<listitem>
<para>
<emphasis>-E</emphasis> - Sends all the log messages to stderr.
</para>
</listitem>
<listitem>
<para>
<emphasis>-V</emphasis> - Displays the version number.
</para>
</listitem>
<listitem>
<para>
<emphasis>-f config-file</emphasis> - Reads the configuration from "config-file" (default ./ser.cfg).
</para>
</listitem>
<listitem>
<para>
<emphasis>-l address</emphasis> - Listens on the specified address. Multiple -l mean listening
on multiple addresses. The default behavior is to listen on all the ipv4 interfaces.
</para>
</listitem>
<listitem>
<para>
<emphasis>-p port</emphasis> - Listens on the specified port (default 5060). It applies to the last
address specified with -l and to all the following that do not have a corresponding -p.
</para>
</listitem>
<listitem>
<para>
<emphasis>-n processes-no</emphasis> - Specifies the number of children processes forked per
interface (default 8).
</para>
</listitem>
<listitem>
<para>
<emphasis>-b max_rcv_buf_size</emphasis> - Maximum receive buffer size which will not be exceeded by
the auto-probing procedure even if the OS allows.
</para>
</listitem>
<listitem>
<para>
<emphasis>-m shared_mem_size</emphasis> - Size of the shared memory which will be allocated (in Megabytes).
</para>
</listitem>
<listitem>
<para>
<emphasis>-w working-dir</emphasis> - Specifies the working directory. In the very improbable event
that will crash, the core file will be generated here.
</para>
</listitem>
<listitem>
<para>
<emphasis>-t chroot-dir</emphasis> - Forces ser to chroot after reading the config file.
</para>
</listitem>
<listitem>
<para>
<emphasis>-u uid</emphasis> - Changes the user id under which ser runs.
</para>
</listitem>
<listitem>
<para>
<emphasis>-g gid</emphasis> - Changes the group id under which ser runs.
</para>
</listitem>
<listitem>
<para>
<emphasis>-P pid-file</emphasis> - Creates a file containing the pid of the main ser process.
</para>
</listitem>
<listitem>
<para>
<emphasis>-i fifo-path</emphasis> - Creates a fifo, useful for monitoring ser status.
</para>
</listitem>
</itemizedlist>
</section>
<section id="modulereference">
<title>Modules</title>
<para>
Module description is currently located in READMEs of
respective module directories. <filename>README-MODULES</filename>
lists all available modules, including their maturity status.
In the current <application>ser</application>
distribution, there are the following modules:
<itemizedlist>
<listitem>
<para>
<emphasis>
acc
</emphasis>
-- call accounting using <application>syslog</application> facility.
RADIUS and mysql support can be compiled in.
Depends on tm.
</para>
</listitem>
<listitem>
<para>
<emphasis>
auth, auth_db, auth_radius
</emphasis>
-- digest authentication. Depends on sl and mysql.
</para>
</listitem>
<listitem>
<para>
<emphasis>domain</emphasis> -- checks URIs whether they belong
in a list of served domains or not.
</para>
</listitem>
<listitem>
<para>
<emphasis>ENUM</emphasis> -- E.164 phone number resolution using ENUM.
</para>
</listitem>
<listitem>
<para>
<emphasis>
exec
</emphasis>
-- execution of shell programs.
</para>
</listitem>
<listitem>
<para>
<emphasis>
group, group_radius
</emphasis>
-- checks membership of users in groups
</para>
</listitem>
<listitem>
<para>
<emphasis>
jabber
</emphasis> -- gateway between SIMPLE and Jabber instant messaging. Depends
on tm and mysql.
</para>
</listitem>
<listitem>
<para>
<emphasis>
maxfwd
</emphasis>
-- checking max-forwards header field.
</para>
</listitem>
<listitem>
<para>
<emphasis>msilo</emphasis>
-- message silo. Store for undelivered instant messages. Depends on tm and mysql.
</para>
</listitem>
<listitem>
<para>
<emphasis>
mysql
</emphasis>
-- mysql database back-end.
</para>
</listitem>
<listitem>
<para>
<emphasis>
nathelper
</emphasis>
-- facilitates NAT traversal for symmetric SIP phones such as ATA.
</para>
</listitem>
<listitem>
<para>
<emphasis>
pa
</emphasis>
-- presence agent
</para>
</listitem>
<listitem>
<para>
<emphasis>
registrar, usrloc
</emphasis>
-- User Location database. Works in in-memory mode or with mysql persistence
support. Depends on sl, and on mysql if configured for use with mysql.
</para>
</listitem>
<listitem>
<para>
<emphasis>
rr
</emphasis>
-- Record Routing (strict and loose)
</para>
</listitem>
<listitem>
<para>
<emphasis>
sl
</emphasis>
-- stateless User Agent server.
</para>
</listitem>
<listitem>
<para>
<emphasis>
sms
</emphasis>
-- SIMPLE/SMS gateway. Depends on tm. Takes special hardware.
</para>
</listitem>
<listitem>
<para>
<emphasis>textops</emphasis> -- textual database back-end.
</para>
</listitem>
<listitem>
<para>
<emphasis>
tm
</emphasis>
-- transaction manager (stateful processing).
</para>
</listitem>
<listitem>
<para>
<emphasis>
uri, uri_radius
</emphasis>
-- checks digest identity against header URIs or a database list
</para>
</listitem>
</itemizedlist>
</para>
<para>
The most frequently used actions exported by modules are summarized
in <xref linkend="moduleactions"/>. For a full explanation of
module actions, see documentation in respective module directories
in source distribution of <application>ser</application>.
</para>
<table id="moduleactions">
<title>Frequently Used Module Actions</title>
<tgroup cols="4">
<thead>
<row>
<entry>
Command
</entry>
<entry>
Modules
</entry>
<entry>
Parameters
</entry>
<entry>
Comments
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
append_hf
</entry>
<entry>
textops
</entry>
<entry>
header field
</entry>
<entry>
append a header field to the end of request's header
</entry>
</row>
<row>
<entry>
check_from
</entry>
<entry>
uri
</entry>
<entry>
none
</entry>
<entry>
check if username in from header field matches authentication id
</entry>
</row>
<row>
<entry>
check_to
</entry>
<entry>
uri
</entry>
<entry>
none
</entry>
<entry>
check if username in To header field matched authentication id
</entry>
</row>
<row>
<entry>
exec_dset
</entry>
<entry>
exec
</entry>
<entry>
command name
</entry>
<entry>
execute an external command and replace destination set with
its output
</entry>
</row>
<row>
<entry>
exec_msg
</entry>
<entry>
exec
</entry>
<entry>
command name
</entry>
<entry>
execute an external command and pass received SIP request
to its input
</entry>
</row>
<row>
<entry>
is_user
</entry>
<entry>
uri
</entry>
<entry>
user id
</entry>
<entry>
returns true if request credentials belong to a user
</entry>
</row>
<row>
<entry>
is_user_in
</entry>
<entry>
auth
</entry>
<entry>
user, group
</entry>
<entry>
check if user is member of a group; user can be gained
from request URI ("Request-URI"), To header field ("To"),
From header field ("From") or digest credentials
("Credentials")
</entry>
</row>
<row>
<entry>
lookup
</entry>
<entry>
usrloc
</entry>
<entry>
table name
</entry>
<entry>
attempt to translate request URI using user location database;
returns false if no contact for user found;
</entry>
</row>
<row>
<entry>
loose_route
</entry>
<entry>
rr
</entry>
<entry>
none
</entry>
<entry>
process loose routes in requests
</entry>
</row>
<row>
<entry>
mf_process_maxfwd_header
</entry>
<entry>
maxfwd
</entry>
<entry>
default max_forwards value
</entry>
<entry>
return true, if request's max_forwards value has not
reached zero yet; if none is included in the request,
set it to value in parameter
</entry>
</row>
<row>
<entry>
proxy_authorize
</entry>
<entry>
auth
</entry>
<entry>
realm, subscriber table
</entry>
<entry>
returns true if requests contains proper credentials, false
otherwise
</entry>
</row>
<row>
<entry>
proxy_challenge
</entry>
<entry>
auth
</entry>
<entry>
realm, qop
</entry>
<entry>
challenge user to submit digest credentials; qop may be turned
off for backwards compatibility with elderly implementations
</entry>
</row>
<row>
<entry>
record_route
</entry>
<entry>
rr
</entry>
<entry>
none
</entry>
<entry>
record-route a request
</entry>
</row>
<row>
<entry>
replace
</entry>
<entry>
textops
</entry>
<entry>
RegExp, Substitute
</entry>
<entry>
find the first occurrence of a string matching the regular
expression in header or body and replace it with a substitute
</entry>
</row>
<row>
<entry>
replace_all
</entry>
<entry>
textops
</entry>
<entry>
RegExp, Substitute
</entry>
<entry>
find all occurrences of a string matching the regular
expression in header or body and replace it with a substitute
</entry>
</row>
<row>
<entry>
save
</entry>
<entry>
usrloc
</entry>
<entry>
table name
</entry>
<entry>
for use in registrar: save content of Contact header fields
in user location database and reply with 200
</entry>
</row>
<row>
<entry>
search
</entry>
<entry>
textops
</entry>
<entry>
regular expression
</entry>
<entry>
search for a regular expression match in request header of body
</entry>
</row>
<row>
<entry>
sl_send_reply
</entry>
<entry>
sl
</entry>
<entry>
status code, reason phrase
</entry>
<entry>
reply a request statelessly
</entry>
</row>
<row>
<entry>
t_relay
</entry>
<entry>
tm
</entry>
<entry>
none
</entry>
<entry>
stateful forwarding to locations in current destination set
</entry>
</row>
<row>
<entry>
t_on_failure
</entry>
<entry>
tm
</entry>
<entry>
failure_route number
</entry>
<entry>
set failure_route block which shall be entered if stateful
forwarding fails
</entry>
</row>
<row>
<entry>
t_replicate
</entry>
<entry>
tm
</entry>
<entry>
host, port number
</entry>
<entry>
replicate a request to a destination
</entry>
</row>
</tbody>
</tgroup>
</table>
</section> <!-- modules -->
<section id="fiforeference">
<title>FIFO Commands Reference</title>
<para>
This section lists currently supported FIFO commands. Some of them are
built-in in <application>ser</application> core, whereas
others are exported by modules. The most important exporters are now
tm and usrloc module. tm FIFO commands allow users to initiate transactions
without knowledge of underlying SIP stack. usrloc FIFO commands allow
users to access in-memory user-location database. Note that that is the
only way how to affect content of the data-base in real-time. Changes
to MySql database do not affect in-memory table unless <application>ser</application>
is restarted.
</para>
<table>
<title>FIFO Commands</title>
<tgroup cols="4">
<thead>
<row>
<entry>
Command
</entry>
<entry>
Module
</entry>
<entry>
Parameters
</entry>
<entry>
Comments
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
ps
</entry>
<entry>
core
</entry>
<entry>
none
</entry>
<entry>
prints running <application>ser</application> processes
</entry>
</row>
<row>
<entry>which</entry>
<entry>core</entry>
<entry>none</entry>
<entry>prints list of available FIFO commands</entry>
</row>
<row>
<entry>arg</entry>
<entry>core</entry>
<entry>none</entry>
<entry>prints list of command-line arguments with which
<application>ser</application> was started</entry>
</row>
<row>
<entry>pwd</entry>
<entry>core</entry>
<entry>none</entry>
<entry>prints <application>ser</application>'s working
directory</entry>
</row>
<row>
<entry>version</entry>
<entry>core</entry>
<entry>none</entry>
<entry>prints version of <application>ser</application></entry>
</row>
<row>
<entry>uptime</entry>
<entry>core</entry>
<entry>none</entry>
<entry>prints <application>ser</application>'s running time</entry>
</row>
<row>
<entry>sl_stats</entry>
<entry>sl</entry>
<entry>none</entry>
<entry>prints statistics for sl module</entry>
</row>
<row>
<entry>t_stats</entry>
<entry>tm</entry>
<entry>none</entry>
<entry>print statistics for tm module</entry>
</row>
<row>
<entry>t_hash</entry>
<entry>tm</entry>
<entry>none</entry>
<entry>print occupation of transaction table (mainly for debugging)</entry>
</row>
<row>
<entry>t_uac_dlg</entry>
<entry>tm</entry>
<entry>method, request URI, outbound URI (if none, empty line with a single dot),
dot-line-terminated header fields, optionally dot-line terminated message
body.
</entry>
<entry>initiate a transaction.
From and To header fields must be present in header field list,
so does Content-Type if body is present. If CSeq, CallId and From-tag
are not present, ephemeral values are generated. Content_length is
calculated automatically if body present.
</entry>
</row>
<row>
<entry>ul_stats</entry>
<entry>usrloc</entry>
<entry>none</entry>
<entry>print usrloc statistics</entry>
</row>
<row>
<entry>ul_rm</entry>
<entry>usrloc</entry>
<entry>table name, user name</entry>
<entry>remove all user's contacts from user-location database</entry>
</row>
<row>
<entry>ul_rm_contact</entry>
<entry>usrloc</entry>
<entry>table name, user name, contact</entry>
<entry>remove a user's contact from user-location database</entry>
</row>
<row>
<entry>ul_dump</entry>
<entry>usrloc</entry>
<entry>none</entry>
<entry>print content of in-memory user-location database</entry>
</row>
<row>
<entry>ul_flush</entry>
<entry>usrloc</entry>
<entry>none</entry>
<entry>flush content of in-memory user-location cache in
persistent database (MySQL)</entry>
</row>
<row>
<entry>ul_add</entry>
<entry>usrloc</entry>
<entry>table name, user name, contact, expiration, priority (q)</entry>
<entry>insert a contact address in user-location database</entry>
</row>
<row>
<entry>ul_show_contact</entry>
<entry>usrloc</entry>
<entry>table, user name</entry>
<entry>show user's contact addresses in user-location database</entry>
</row>
</tbody>
</tgroup>
</table>
</section>
<section>
<title>Used Database Tables</title>
<para>
<application>ser</application> includes MySQL support
to guarantee data persistence across server reboots and storage
of users' web environment. The data stored in
the database include user profiles, access control lists, user location,
etc. Note that users are not supposed to alter the data directly, as it
could introduce inconsistency between data on persistence storage and
in server's memory.
The following list enumerates used tables and explains their purpose.
<itemizedlist>
<listitem>
<para>
subscriber -- table of users. It includes user names and
security credentials, as well as additional user information.
</para>
</listitem>
<listitem>
<para>
reserved -- reserved user names. <application>serweb</application>
does not permit creation of accounts with name on this list.
</para>
</listitem>
<listitem>
<para>
phonebook -- user's personal phonebooks. Accessible via
<application>serweb</application>.
</para>
</listitem>
<listitem>
<para>
pending -- table of unconfirmed subscription requests. Used by
<application>serweb</application>.
</para>
</listitem>
<listitem>
<para>
missed_calls -- table of missed calls. Can be fed by acc modules
if mysql support is turned on. Displayed by <application>serweb</application>.
</para>
</listitem>
<listitem>
<para>
location -- user contacts. Typically updated through
<application>ser</application>'r registrar
functionality.
</para>
</listitem>
<listitem>
<para>
grp -- group membership. Used by auth module to determine
whether a user belongs to a group.
</para>
</listitem>
<listitem>
<para>
event -- allows users to subscribe to additional services.
Currently unused.
</para>
</listitem>
<listitem>
<para>
aliases -- keeps track of alternative user names.
</para>
</listitem>
<listitem>
<para>
active_sessions -- keeps track of currently active web sessions.
For use by <application>serweb</application>.
</para>
</listitem>
<listitem>
<para>
acc -- keeps track of accounted calls. Can be fed by acc module
if mysql support is turned on. Displayed by <application>serweb</application>.
</para>
</listitem>
<listitem>
<para>
config -- maintains attribute-value pairs for keeping various information.
Currently not used.
</para>
</listitem>
<listitem>
<para>
silo -- message store for instant messages which could not have been
delivered.
</para>
</listitem>
<listitem>
<para>
version -- keeps version number of each table definition.
</para>
</listitem>
<listitem>
<para>
domain -- maintains list of served domains.
</para>
</listitem>
<listitem>
<para>
server_monitoring-* -- reserved for persistent monitoring of
server's operation
</para>
</listitem>
<listitem>
<para>
uri -- used to keep lists of URIs "owned" by a user
(as identified by digest identity); good for some
PSTN interworking scenarios
</para>
</listitem>
</itemizedlist>
</para>
</section>
</section>
|