I have two clients in Sandboxes on Windows 10 machines in a local network behind a router. First client is Linphone (client A) and second client is ZoiPer (client B), so the clients A and B are behind NAT. Also I have Linphone (client C), ZipPer (client D) and PortSIP (client F) on my Android mobile phone connected to the internet over 4G (so there is no NAT). The server is in the Docker container with default network configuration with all the ports mapped to the host.
My Asterisk configuration:
rtp.conf
:
1 2 3 | [general] rtpstart=10000 rtpend=10099 |
extensions.conf
:
1 2 3 4 5 6 7 8 9 | [office-phones] exten => 1001,1,Dial(PJSIP/neo) exten => 1002,1,Dial(PJSIP/morpheus) exten => 1003,1,Dial(PJSIP/rabbit) exten => 9000,1,Answer() same => n,Playback(hello-world) same => n,Hangup() |
pjsip.conf
:
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 | [t_wan](!) type = transport bind = 0.0.0.0:5060 domain = developernote.com external_signaling_address = developernote.com external_media_address = developernote.com tos = cs3 cos = 3 [transport-udp](t_wan) protocol = udp [transport-tcp](t_wan) protocol = tcp [transport-tls](t_wan) bind = 0.0.0.0:5061 cert_file = /etc/asterisk/ssl/cert.pem priv_key_file = /etc/asterisk/ssl/priv_key.pem protocol = tls method=tlsv1_2 [t_client](!) type=endpoint context=office-phones disallow=all allow=ulaw allow=ilbc allow=g729 allow=gsm allow=g723 allow=ulaw media_address = developernote.com rtp_symmetric = yes direct_media = no rewrite_contact = yes force_rport = yes ice_support = yes ;use_avpf = yes ;rtpkeepalive = 1 [t_client_aor](!) type=aor max_contacts=10 [t_client_auth](!) type=auth auth_type=userpass [neo](t_client) auth=neo-auth aors=neo [neo-auth](t_client_auth) username=neo password=neo_parol [neo](t_client_aor) [morpheus](t_client) auth=morpheus-auth aors=morpheus [morpheus-auth](t_client_auth) username=morpheus password=morpheus_parol [morpheus](t_client_aor) [rabbit](t_client) auth=rabbit-auth aors=rabbit [rabbit-auth](t_client_auth) username=rabbit password=rabbit_parol [rabbit](t_client_aor) |
Asterisk logs
Below I provided Asterisk logs with enabled PJSIP logging:
Starting Asterisk and a successful call from client C (1001) to client A(1002):
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 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 | [0mAsterisk 22.2.0, Copyright (C) 1999 - 2025, Sangoma Technologies Corporation and others. Created by Mark Spencer <markster@digium.com> Asterisk comes with ABSOLUTELY NO WARRANTY; type 'core show warranty' for details. This is free software, with components licensed under the GNU General Public License version 2 and other licenses; you are welcome to redistribute it under certain conditions. Type 'core show license' for details. ========================================================================= XSLT support not found. XML documentation may be incomplete. Manager registered action DBGet Manager registered action DBGetTree Manager registered action DBPut Manager registered action DBDel Manager registered action DBDelTree PBX UUID: c1f07b10-5e57-437e-bbea-03cd3344c4be Registered 'audio' codec 'codec2' at sample rate '8000' with id '1' Created cached format with name 'codec2' Registered 'audio' codec 'g723' at sample rate '8000' with id '2' Created cached format with name 'g723' Registered 'audio' codec 'ulaw' at sample rate '8000' with id '3' Created cached format with name 'ulaw' Registered 'audio' codec 'alaw' at sample rate '8000' with id '4' Created cached format with name 'alaw' Registered 'audio' codec 'gsm' at sample rate '8000' with id '5' Created cached format with name 'gsm' Registered 'audio' codec 'g726' at sample rate '8000' with id '6' Created cached format with name 'g726' Registered 'audio' codec 'g726aal2' at sample rate '8000' with id '7' Created cached format with name 'g726aal2' Registered 'audio' codec 'adpcm' at sample rate '8000' with id '8' Created cached format with name 'adpcm' Registered 'audio' codec 'slin' at sample rate '8000' with id '9' Created cached format with name 'slin' Registered 'audio' codec 'slin' at sample rate '12000' with id '10' Created cached format with name 'slin12' Registered 'audio' codec 'slin' at sample rate '16000' with id '11' Created cached format with name 'slin16' Registered 'audio' codec 'slin' at sample rate '24000' with id '12' Created cached format with name 'slin24' Registered 'audio' codec 'slin' at sample rate '32000' with id '13' Created cached format with name 'slin32' Registered 'audio' codec 'slin' at sample rate '44100' with id '14' Created cached format with name 'slin44' Registered 'audio' codec 'slin' at sample rate '48000' with id '15' Created cached format with name 'slin48' Registered 'audio' codec 'slin' at sample rate '96000' with id '16' Created cached format with name 'slin96' Registered 'audio' codec 'slin' at sample rate '192000' with id '17' Created cached format with name 'slin192' Registered 'audio' codec 'lpc10' at sample rate '8000' with id '18' Created cached format with name 'lpc10' Registered 'audio' codec 'g729' at sample rate '8000' with id '19' Created cached format with name 'g729' Registered 'audio' codec 'speex' at sample rate '8000' with id '20' Created cached format with name 'speex' Registered 'audio' codec 'speex' at sample rate '16000' with id '21' Created cached format with name 'speex16' Registered 'audio' codec 'speex' at sample rate '32000' with id '22' Created cached format with name 'speex32' Registered 'audio' codec 'ilbc' at sample rate '8000' with id '23' Created cached format with name 'ilbc' Registered 'audio' codec 'g722' at sample rate '16000' with id '24' Created cached format with name 'g722' Registered 'audio' codec 'siren7' at sample rate '16000' with id '25' Created cached format with name 'siren7' Registered 'audio' codec 'siren14' at sample rate '32000' with id '26' Created cached format with name 'siren14' Registered 'audio' codec 'g719' at sample rate '48000' with id '27' Created cached format with name 'g719' Registered 'audio' codec 'opus' at sample rate '48000' with id '28' Created cached format with name 'opus' Registered 'image' codec 'jpeg' at sample rate '0' with id '29' Created cached format with name 'jpeg' Registered 'image' codec 'png' at sample rate '0' with id '30' Created cached format with name 'png' Registered 'video' codec 'h261' at sample rate '1000' with id '31' Created cached format with name 'h261' Registered 'video' codec 'h263' at sample rate '1000' with id '32' Created cached format with name 'h263' Registered 'video' codec 'h263p' at sample rate '1000' with id '33' Created cached format with name 'h263p' Registered 'video' codec 'h264' at sample rate '1000' with id '34' Created cached format with name 'h264' Registered 'video' codec 'h265' at sample rate '1000' with id '35' Created cached format with name 'h265' Registered 'video' codec 'mpeg4' at sample rate '1000' with id '36' Created cached format with name 'mpeg4' Registered 'video' codec 'vp8' at sample rate '1000' with id '37' Created cached format with name 'vp8' Registered 'video' codec 'vp9' at sample rate '1000' with id '38' Created cached format with name 'vp9' Registered 'text' codec 'red' at sample rate '0' with id '39' Created cached format with name 'red' Registered 'text' codec 't140' at sample rate '0' with id '40' Created cached format with name 't140' Registered 'image' codec 't38' at sample rate '0' with id '41' Created cached format with name 't38' Registered 'audio' codec 'none' at sample rate '8000' with id '42' Created cached format with name 'none' Registered 'audio' codec 'silk' at sample rate '8000' with id '43' Created cached format with name 'silk8' Registered 'audio' codec 'silk' at sample rate '12000' with id '44' Created cached format with name 'silk12' Registered 'audio' codec 'silk' at sample rate '16000' with id '45' Created cached format with name 'silk16' Registered 'audio' codec 'silk' at sample rate '24000' with id '46' Created cached format with name 'silk24' Sorcery registered wizard 'bucket' Sorcery registered wizard 'bucket_file' Registered custom function '[1;36mLOG_GROUP[0m' [1;30m > [0mMessage handler 'dialplan' registered. [1;30m > [0mRegistered custom function '[1;36mMESSAGE[0m' [1;30m > [0mRegistered custom function '[1;36mMESSAGE_DATA[0m' [1;30m > [0mRegistered application '[1;36mMessageSend[0m' [1;30m > [0mManager registered action MessageSend [1;30m > [0mRegistered channel type 'Surrogate' (Surrogate channel used to pull channel from an application) [1;30m > [0mManager registered action BridgeTechnologyList [1;30m > [0mManager registered action BridgeTechnologySuspend [1;30m > [0mManager registered action BridgeTechnologyUnsuspend [1;30m > [0mRegistered DNS resolver 'system' with priority '2147483647' [1;30m [0mAsterisk PBX Core Initializing [1;30m > [0mRegistering builtin functions: [1;30m > [0mRegistered custom function '[1;36mEXCEPTION[0m' [1;30m > [0mRegistered custom function '[1;36mTESTTIME[0m' [1;30m > [0mManager registered action ShowDialPlan [1;30m > [0mManager registered action ExtensionStateList [1;30m > [0mRegistered application '[1;36mAnswer[0m' [1;30m > [0mRegistered application '[1;36mBackGround[0m' [1;30m > [0mRegistered application '[1;36mBusy[0m' [1;30m > [0mRegistered application '[1;36mCongestion[0m' [1;30m > [0mRegistered application '[1;36mExecIfTime[0m' [1;30m > [0mRegistered application '[1;36mGoto[0m' [1;30m > [0mRegistered application '[1;36mGotoIf[0m' [1;30m > [0mRegistered application '[1;36mGotoIfTime[0m' [1;30m > [0mRegistered application '[1;36mHangup[0m' [1;30m > [0mRegistered application '[1;36mIncomplete[0m' [1;30m > [0mRegistered application '[1;36mNoOp[0m' [1;30m > [0mRegistered application '[1;36mProceeding[0m' [1;30m > [0mRegistered application '[1;36mProgress[0m' [1;30m > [0mRegistered application '[1;36mRaiseException[0m' [1;30m > [0mRegistered application '[1;36mRinging[0m' [1;30m > [0mRegistered application '[1;36mSayAlpha[0m' [1;30m > [0mRegistered application '[1;36mSayAlphaCase[0m' [1;30m > [0mRegistered application '[1;36mSayDigits[0m' [1;30m > [0mRegistered application '[1;36mSayMoney[0m' [1;30m > [0mRegistered application '[1;36mSayNumber[0m' [1;30m > [0mRegistered application '[1;36mSayOrdinal[0m' [1;30m > [0mRegistered application '[1;36mSayPhonetic[0m' [1;30m > [0mRegistered application '[1;36mWait[0m' [1;30m > [0mRegistered application '[1;36mWaitDigit[0m' [1;30m > [0mRegistered application '[1;36mWaitExten[0m' [1;30m > [0mRegistered application '[1;36mSet[0m' [1;30m > [0mRegistered application '[1;36mMSet[0m' [1;30m > [0mRegistered channel type 'Local' (Local Proxy Channel Driver) [1;30m > [0mManager registered action LocalOptimizeAway [1;30m [0mAsterisk Dynamic Loader Starting: [Feb 12 18:12:16] [1;33mNOTICE[0m[7]: [1;37mloader.c[0m:[1;37m2562[0m [1;37mload_modules[0m: 323 modules will be loaded. [1;30m > [0mLoading extconfig. [1;30m > [0mextconfig => ([0;33mConfiguration[0m) [1;30m > [0mLoading logger. [1;30m > [0mlogger => ([0;33mLogger[0m) [1;30m > [0mLoading res_curl.so. [1;30m > [0mres_curl.so => ([0;33mcURL Resource Module[0m) [1;30m > [0mLoading res_odbc_transaction.so. [1;30m > [0mRegistered application '[1;36mODBC_Commit[0m' [1;30m > [0mRegistered application '[1;36mODBC_Rollback[0m' [1;30m > [0mRegistered custom function '[1;36mODBC[0m' [1;30m > [0mres_odbc_transaction.so => ([0;33mODBC transaction resource[0m) [1;30m > [0mLoading res_odbc.so. [1;30m > [0mres_odbc.so => ([0;33mODBC resource[0m) [1;30m > [0mLoading func_curl.so. [1;30m > [0mRegistered custom function '[1;36mCURL[0m' [1;30m > [0mRegistered custom function '[1;36mCURLOPT[0m' [1;30m > [0mfunc_curl.so => ([0;33mLoad external URL[0m) [1;30m > [0mLoading res_config_curl.so. [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mres_config_curl.c[0m:[1;37m618[0m [1;37mreload_module[0m: [globals] not found in res_curl.conf [1;30m > [0mres_config_curl.so => ([0;33mRealtime Curl configuration[0m) [1;30m > [0mLoading res_config_sqlite3.so. [1;30m > [0mres_config_sqlite3.so => ([0;33mSQLite 3 realtime config engine[0m) [1;30m > [0mLoading res_sorcery_memory_cache.so. [1;30m > [0mSorcery registered wizard 'memory_cache' [1;30m > [0mManager registered action SorceryMemoryCacheExpireObject [1;30m > [0mManager registered action SorceryMemoryCacheExpire [1;30m > [0mManager registered action SorceryMemoryCacheStaleObject [1;30m > [0mManager registered action SorceryMemoryCacheStale [1;30m > [0mManager registered action SorceryMemoryCachePopulate [1;30m > [0mres_sorcery_memory_cache.so => ([0;33mSorcery Memory Cache Object Wizard[0m) [1;30m > [0mLoading res_sorcery_astdb.so. [1;30m > [0mSorcery registered wizard 'astdb' [1;30m > [0mres_sorcery_astdb.so => ([0;33mSorcery Astdb Object Wizard[0m) [1;30m > [0mLoading res_format_attr_opus.so. [1;30m > [0mRegistered format interface for codec 'opus' [1;30m > [0mres_format_attr_opus.so => ([0;33mOpus Format Attribute Module[0m) [1;30m > [0mLoading res_config_odbc.so. [1;30m > [0mres_config_odbc.so => ([0;33mRealtime ODBC configuration[0m) [1;30m > [0mLoading res_sorcery_realtime.so. [1;30m > [0mSorcery registered wizard 'realtime' [1;30m > [0mres_sorcery_realtime.so => ([0;33mSorcery Realtime Object Wizard[0m) [1;30m > [0mLoading res_sorcery_memory.so. [1;30m > [0mSorcery registered wizard 'memory' [1;30m > [0mres_sorcery_memory.so => ([0;33mSorcery In-Memory Object Wizard[0m) [1;30m > [0mLoading res_sorcery_config.so. [1;30m > [0mSorcery registered wizard 'config' [1;30m > [0mres_sorcery_config.so => ([0;33mSorcery Configuration File Object Wizard[0m) [1;30m > [0mLoading res_pjsip_config_wizard.so. [1;30m > [0mres_pjsip_config_wizard.so => ([0;33mPJSIP Config Wizard[0m) [1;30m > [0mLoading res_statsd.so. [1;30m > [0mres_statsd.so => ([0;33mStatsD client support[0m) [1;30m > [0mLoading ccss. [1;30m > [0mRegistered application '[1;36mCallCompletionRequest[0m' [1;30m > [0mRegistered application '[1;36mCallCompletionCancel[0m' [1;30m > [0mccss => ([0;33mCall Completion Supplementary Services[0m) [1;30m > [0mLoading cdr. [Feb 12 18:12:16] [1;33mNOTICE[0m[7]: [1;37mcdr.c[0m:[1;37m4600[0m [1;37mcdr_toggle_runtime_options[0m: CDR simple logging enabled. [1;30m > [0mcdr => ([0;33mCDR Engine[0m) [1;30m > [0mLoading cel. [1;30m > [0mcel => ([0;33mCEL Engine[0m) [1;30m > [0mLoading dnsmgr. [1;30m > [0mdnsmgr => ([0;33mDNS Manager[0m) [1;30m > [0mLoading dsp. [1;30m > [0mdsp => ([0;33mDSP[0m) [1;30m > [0mLoading enum. [1;30m > [0menum => ([0;33mENUM Support[0m) [1;30m > [0mLoading features. [1;30m > [0mRegistered custom function '[1;36mFEATURE[0m' [1;30m > [0mRegistered custom function '[1;36mFEATUREMAP[0m' [1;30m > [0mRegistered application '[1;36mBridge[0m' [1;30m > [0mManager registered action Bridge [1;30m > [0mfeatures => ([0;33mCall Features[0m) [1;30m > [0mLoading http. [1;30m > [0mhttp => ([0;33mBuilt-in HTTP Server[0m) [1;30m > [0mLoading indications. [1;30m > [0mRegistered indication country 'at' [1;30m > [0mRegistered indication country 'au' [1;30m > [0mRegistered indication country 'bg' [1;30m > [0mRegistered indication country 'br' [1;30m > [0mRegistered indication country 'be' [1;30m > [0mRegistered indication country 'ch' [1;30m > [0mRegistered indication country 'cl' [1;30m > [0mRegistered indication country 'cn' [1;30m > [0mRegistered indication country 'cz' [1;30m > [0mRegistered indication country 'de' [1;30m > [0mRegistered indication country 'dk' [1;30m > [0mRegistered indication country 'ee' [1;30m > [0mRegistered indication country 'es' [1;30m > [0mRegistered indication country 'fi' [1;30m > [0mRegistered indication country 'fr' [1;30m > [0mRegistered indication country 'gr' [1;30m > [0mRegistered indication country 'hu' [1;30m > [0mRegistered indication country 'id' [1;30m > [0mRegistered indication country 'il' [1;30m > [0mRegistered indication country 'in' [1;30m > [0mRegistered indication country 'it' [1;30m > [0mRegistered indication country 'lt' [1;30m > [0mRegistered indication country 'jp' [1;30m > [0mRegistered indication country 'mx' [1;30m > [0mRegistered indication country 'my' [1;30m > [0mRegistered indication country 'nl' [1;30m > [0mRegistered indication country 'no' [1;30m > [0mRegistered indication country 'nz' [1;30m > [0mRegistered indication country 'ph' [1;30m > [0mRegistered indication country 'pl' [1;30m > [0mRegistered indication country 'pt' [1;30m > [0mRegistered indication country 'ru' [1;30m > [0mRegistered indication country 'se' [1;30m > [0mRegistered indication country 'sg' [1;30m > [0mRegistered indication country 'th' [1;30m > [0mRegistered indication country 'uk' [1;30m > [0mRegistered indication country 'us' [1;30m > [0mRegistered indication country 'us-old' [1;30m > [0mRegistered indication country 'tw' [1;30m > [0mRegistered indication country 've' [1;30m > [0mRegistered indication country 'za' [Feb 12 18:12:16] [1;33mNOTICE[0m[7]: [1;37mindications.c[0m:[1;37m1100[0m [1;37mload_indications[0m: Default country for indication tones: us [Feb 12 18:12:16] [1;33mNOTICE[0m[7]: [1;37mindications.c[0m:[1;37m424[0m [1;37mast_set_indication_country[0m: Setting default indication country to 'us' [1;30m > [0mindications => ([0;33mIndication Tone Handling[0m) [1;30m > [0mLoading acl. [1;30m > [0macl => ([0;33mNamed ACL system[0m) [1;30m > [0mLoading manager. [1;30m > [0mManager registered action Ping [1;30m > [0mManager registered action Events [1;30m > [0mManager registered action Logoff [1;30m > [0mManager registered action Login [1;30m > [0mManager registered action Challenge [1;30m > [0mManager registered action Hangup [1;30m > [0mManager registered action Status [1;30m > [0mManager registered action Setvar [1;30m > [0mManager registered action Getvar [1;30m > [0mManager registered action GetConfig [1;30m > [0mManager registered action GetConfigJSON [1;30m > [0mManager registered action UpdateConfig [1;30m > [0mManager registered action CreateConfig [1;30m > [0mManager registered action ListCategories [1;30m > [0mManager registered action Redirect [1;30m > [0mManager registered action Atxfer [1;30m > [0mManager registered action CancelAtxfer [1;30m > [0mManager registered action Originate [1;30m > [0mManager registered action Command [1;30m > [0mManager registered action ExtensionState [1;30m > [0mManager registered action PresenceState [1;30m > [0mManager registered action AbsoluteTimeout [1;30m > [0mManager registered action MailboxStatus [1;30m > [0mManager registered action MailboxCount [1;30m > [0mManager registered action ListCommands [1;30m > [0mManager registered action SendText [1;30m > [0mManager registered action UserEvent [1;30m > [0mManager registered action WaitEvent [1;30m > [0mManager registered action CoreSettings [1;30m > [0mManager registered action CoreStatus [1;30m > [0mManager registered action Reload [1;30m > [0mManager registered action LoggerRotate [1;30m > [0mManager registered action CoreShowChannels [1;30m > [0mManager registered action CoreShowChannelMap [1;30m > [0mManager registered action ModuleLoad [1;30m > [0mManager registered action ModuleCheck [1;30m > [0mManager registered action AOCMessage [1;30m > [0mManager registered action Filter [1;30m > [0mManager registered action BlindTransfer [1;30m > [0mRegistered custom function '[1;36mAMI_CLIENT[0m' [1;30m > [0mmanager => ([0;33mAsterisk Manager Interface[0m) [1;30m > [0mLoading plc. [1;30m > [0mplc => ([0;33mPLC[0m) [1;30m > [0mLoading udptl. [1;30m > [0mudptl => ([0;33mUDPTL[0m) [1;30m > [0mLoading res_timing_pthread.so. [1;30m > [0mres_timing_pthread.so => ([0;33mpthread Timing Interface[0m) [1;30m > [0mLoading res_timing_timerfd.so. [1;30m > [0mres_timing_timerfd.so => ([0;33mTimerfd Timing Interface[0m) [1;30m > [0mLoading res_pjproject.so. [1;30m > [0mres_pjproject.so => ([0;33mPJPROJECT Log and Utility Support[0m) [1;30m > [0mLoading res_pjsip.so. [1;30m -- [0mLocal IPv4 address determined to be: 172.17.0.3 [1;30m -- [0mLocal IPv6 address determined to be: ::1 [1;30m > [0mManager registered action PJSIPShowEndpoints [1;30m > [0mManager registered action PJSIPShowEndpoint [1;30m > [0mManager registered action PJSIPShowAuths [1;30m > [0mManager registered action PJSIPShowAors [1;30m == [0m'UDP+IPv4' is an available SIP transport [1;30m == [0m'TCP+IPv4' is an available SIP transport [1;30m == [0m'TLS+IPv4' is an available SIP transport [1;30m == [0m'UDP+IPv6' is not an available SIP transport, disabling resolver support for it [1;30m == [0m'TCP+IPv6' is not an available SIP transport, disabling resolver support for it [1;30m == [0m'TLS+IPv6' is not an available SIP transport, disabling resolver support for it [1;30m > [0mManager registered action PJSIPQualify [1;30m > [0mManager registered action PJSIPShowContacts [1;30m > [0mres_pjsip.so => ([0;33mBasic SIP resource[0m) [1;30m > [0mLoading res_pjsip_authenticator_digest.so. [1;30m > [0mres_pjsip_authenticator_digest.so => ([0;33mPJSIP authentication resource[0m) [1;30m > [0mLoading res_pjsip_endpoint_identifier_ip.so. [1;30m > [0mres_pjsip_endpoint_identifier_ip.so => ([0;33mPJSIP IP endpoint identifier[0m) [1;30m > [0mLoading res_pjsip_endpoint_identifier_user.so. [1;30m > [0mres_pjsip_endpoint_identifier_user.so => ([0;33mPJSIP username endpoint identifier[0m) [1;30m > [0mLoading res_pjsip_registrar.so. [1;30m > [0mManager registered action PJSIPShowRegistrationsInbound [1;30m > [0mManager registered action PJSIPShowRegistrationInboundContactStatuses [1;30m > [0mres_pjsip_registrar.so => ([0;33mPJSIP Registrar Support[0m) [1;30m > [0mLoading res_srtp.so. [1;30m == [0mlibsrtp2 2.5.0 initialized [1;30m > [0mres_srtp.so => ([0;33mSecure RTP (SRTP)[0m) [1;30m > [0mLoading res_format_attr_ilbc.so. [1;30m > [0mRegistered format interface for codec 'ilbc' [1;30m > [0mres_format_attr_ilbc.so => ([0;33miLBC Format Attribute Module[0m) [1;30m > [0mLoading res_format_attr_celt.so. [1;30m > [0mRegistered format interface for codec 'celt' [1;30m > [0mres_format_attr_celt.so => ([0;33mCELT Format Attribute Module[0m) [1;30m > [0mLoading res_smdi.so. [Feb 12 18:12:16] [1;33mNOTICE[0m[7]: [1;37mres_smdi.c[0m:[1;37m1426[0m [1;37mload_module[0m: No SMDI interfaces are available to listen on, not starting SMDI listener. [1;30m > [0mRegistered custom function '[1;36mSMDI_MSG_RETRIEVE[0m' [1;30m > [0mRegistered custom function '[1;36mSMDI_MSG[0m' [1;30m > [0mres_smdi.so => ([0;33mSimplified Message Desk Interface (SMDI) Resource[0m) [1;30m > [0mLoading res_http_websocket.so. [1;30m > [0mWebSocket registered sub-protocol 'echo' [1;30m > [0mres_http_websocket.so => ([0;33mHTTP WebSocket Support[0m) [1;30m > [0mLoading res_rtp_multicast.so. [1;30m > [0mRegistered RTP engine 'multicast' [1;30m > [0mres_rtp_multicast.so => ([0;33mMulticast RTP Engine[0m) [1;30m > [0mLoading res_format_attr_siren7.so. [1;30m > [0mRegistered format interface for codec 'siren7' [1;30m > [0mres_format_attr_siren7.so => ([0;33mSiren7 Format Attribute Module[0m) [1;30m > [0mLoading res_crypto.so. [1;30m > [0mres_crypto.so => ([0;33mCryptographic Digital Signatures[0m) [1;30m > [0mLoading res_format_attr_siren14.so. [1;30m > [0mRegistered format interface for codec 'siren14' [1;30m > [0mres_format_attr_siren14.so => ([0;33mSiren14 Format Attribute Module[0m) [1;30m > [0mLoading res_aeap.so. [1;30m > [0mres_aeap.so => ([0;33mAsterisk External Application Protocol Module for Asterisk[0m) [1;30m > [0mLoading res_stun_monitor.so. [1;30m > [0mres_stun_monitor.so => ([0;33mSTUN Network Monitor[0m) [1;30m > [0mLoading res_audiosocket.so. [1;30m > [0mLoading AudioSocket Support module [1;30m > [0mres_audiosocket.so => ([0;33mAudioSocket support[0m) [1;30m > [0mLoading res_musiconhold.so. [1;30m > [0mRegistered application '[1;36mMusicOnHold[0m' [1;30m > [0mRegistered application '[1;36mStartMusicOnHold[0m' [1;30m > [0mRegistered application '[1;36mStopMusicOnHold[0m' [1;30m > [0mres_musiconhold.so => ([0;33mMusic On Hold Resource[0m) [1;30m > [0mLoading res_format_attr_g729.so. [1;30m > [0mRegistered format interface for codec 'g729' [1;30m > [0mres_format_attr_g729.so => ([0;33mG.729 Format Attribute Module[0m) [1;30m > [0mLoading res_phoneprov.so. [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mres_phoneprov.c[0m:[1;37m1251[0m [1;37mget_defaults[0m: Unable to find a valid server address or name. [1;30m > [0mRegistered custom function '[1;36mPP_EACH_USER[0m' [1;30m > [0mRegistered custom function '[1;36mPP_EACH_EXTENSION[0m' [1;30m > [0mres_phoneprov.so => ([0;33mHTTP Phone Provisioning[0m) [1;30m > [0mLoading res_rtp_asterisk.so. [1;30m > [0mRegistered RTP engine 'asterisk' [1;30m == [0mRTP Allocating from port range 10000 -> 10099 [1;30m > [0mres_rtp_asterisk.so => ([0;33mAsterisk RTP Stack[0m) [1;30m > [0mLoading res_format_attr_silk.so. [1;30m > [0mRegistered format interface for codec 'silk' [1;30m > [0mres_format_attr_silk.so => ([0;33mSILK Format Attribute Module[0m) [1;30m > [0mLoading res_format_attr_vp8.so. [1;30m > [0mRegistered format interface for codec 'vp8' [1;30m > [0mres_format_attr_vp8.so => ([0;33mVP8 Format Attribute Module[0m) [1;30m > [0mLoading res_speech.so. [1;30m > [0mres_speech.so => ([0;33mGeneric Speech Recognition API[0m) [1;30m > [0mLoading res_speech_aeap.so. [1;30m > [0mres_speech_aeap.so => ([0;33mAsterisk External Application Speech Engine[0m) [1;30m > [0mLoading res_pjsip_outbound_publish.so. [1;30m > [0mres_pjsip_outbound_publish.so => ([0;33mPJSIP Outbound Publish Support[0m) [1;30m > [0mLoading res_pjsip_pubsub.so. [1;30m > [0mManager registered action PJSIPShowSubscriptionsInbound [1;30m > [0mManager registered action PJSIPShowSubscriptionsOutbound [1;30m > [0mManager registered action PJSIPShowResourceLists [1;30m > [0mres_pjsip_pubsub.so => ([0;33mPJSIP event resource[0m) [1;30m > [0mLoading res_pjsip_pidf_body_generator.so. [1;30m > [0mres_pjsip_pidf_body_generator.so => ([0;33mPJSIP Extension State PIDF Provider[0m) [1;30m > [0mLoading res_pjsip_dialog_info_body_generator.so. [1;30m > [0mres_pjsip_dialog_info_body_generator.so => ([0;33mPJSIP Extension State Dialog Info+XML Provider[0m) [1;30m > [0mLoading res_pjsip_outbound_authenticator_digest.so. [1;30m > [0mres_pjsip_outbound_authenticator_digest.so => ([0;33mPJSIP authentication resource[0m) [1;30m > [0mLoading res_pjsip_pidf_digium_body_supplement.so. [1;30m > [0mres_pjsip_pidf_digium_body_supplement.so => ([0;33mPJSIP PIDF Sangoma presence supplement[0m) [1;30m > [0mLoading res_pjsip_xpidf_body_generator.so. [1;30m > [0mres_pjsip_xpidf_body_generator.so => ([0;33mPJSIP Extension State PIDF Provider[0m) [1;30m > [0mLoading res_pjsip_aoc.so. [1;30m > [0mres_pjsip_aoc.so => ([0;33mPJSIP AOC Support[0m) [1;30m > [0mLoading res_pjsip_mwi_body_generator.so. [1;30m > [0mres_pjsip_mwi_body_generator.so => ([0;33mPJSIP MWI resource[0m) [1;30m > [0mLoading res_pjsip_pidf_eyebeam_body_supplement.so. [1;30m > [0mres_pjsip_pidf_eyebeam_body_supplement.so => ([0;33mPJSIP PIDF Eyebeam supplement[0m) [1;30m > [0mLoading res_pjsip_mwi.so. [1;30m > [0mres_pjsip_mwi.so => ([0;33mPJSIP MWI resource[0m) [1;30m > [0mLoading res_pjsip_publish_asterisk.so. [1;30m > [0mres_pjsip_publish_asterisk.so => ([0;33mPJSIP Asterisk Event PUBLISH Support[0m) [1;30m > [0mLoading res_pjsip_exten_state.so. [1;30m > [0mres_pjsip_exten_state.so => ([0;33mPJSIP Extension State Notifications[0m) [1;30m > [0mLoading app_audiosocket.so. [1;30m > [0mRegistered application '[1;36mAudioSocket[0m' [1;30m > [0mapp_audiosocket.so => ([0;33mAudioSocket Application[0m) [1;30m > [0mLoading chan_iax2.so. [1;30m == [0mBinding IAX2 to default address 0.0.0.0:4569 [1;30m > [0mRegistered application '[1;36mIAX2Provision[0m' [1;30m > [0mRegistered custom function '[1;36mIAXPEER[0m' [1;30m > [0mRegistered custom function '[1;36mIAXVAR[0m' [1;30m > [0mManager registered action IAXpeers [1;30m > [0mManager registered action IAXpeerlist [1;30m > [0mManager registered action IAXnetstats [1;30m > [0mManager registered action IAXregistry [1;30m > [0mRegistered channel type 'IAX2' (Inter Asterisk eXchange Driver (Ver 2)) [1;30m == [0m10 helper threads started [1;30m == [0mIAX Ready and Listening [1;30m -- [0mLoaded provisioning template 'default' [1;30m > [0mchan_iax2.so => ([0;33mInter Asterisk eXchange (Ver 2)[0m) [1;30m > [0mLoading chan_rtp.so. [1;30m > [0mRegistered RTP glue 'UnicastRTP' [1;30m > [0mRegistered channel type 'MulticastRTP' (Multicast RTP Paging Channel Driver) [1;30m > [0mRegistered channel type 'UnicastRTP' (Unicast RTP Media Channel Driver) [1;30m > [0mchan_rtp.so => ([0;33mRTP Media Channel[0m) [1;30m > [0mLoading chan_audiosocket.so. [1;30m > [0mRegistered channel type 'AudioSocket' (AudioSocket Channel Driver) [1;30m > [0mchan_audiosocket.so => ([0;33mAudioSocket Channel[0m) [1;30m > [0mLoading res_pjsip_session.so. [1;30m > [0mres_pjsip_session.so => ([0;33mPJSIP Session resource[0m) [1;30m > [0mLoading chan_pjsip.so. [1;30m > [0mRegistered RTP glue 'PJSIP' [1;30m > [0mRegistered channel type 'PJSIP' (PJSIP Channel Driver) [1;30m > [0mRegistered custom function '[1;36mPJSIP_DIAL_CONTACTS[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_PARSE_URI[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_PARSE_URI_FROM[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_MEDIA_OFFER[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_DTMF_MODE[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_MOH_PASSTHROUGH[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_SEND_SESSION_REFRESH[0m' [1;30m > [0mRegistered application '[1;36mPJSIPHangup[0m' [1;30m > [0mManager registered action PJSIPHangup [1;30m > [0mchan_pjsip.so => ([0;33mPJSIP Channel Driver[0m) [1;30m > [0mLoading res_pjsip_sdp_rtp.so. [1;30m > [0mres_pjsip_sdp_rtp.so => ([0;33mPJSIP SDP RTP/AVP stream handler[0m) [1;30m > [0mLoading res_pjsip_t38.so. [1;30m > [0mres_pjsip_t38.so => ([0;33mPJSIP T.38 UDPTL Support[0m) [1;30m > [0mLoading res_stasis.so. [1;30m > [0mMessage handler 'ari' registered. [1;30m > [0mres_stasis.so => ([0;33mStasis application support[0m) [1;30m > [0mLoading format_wav.so. [1;30m > [0mRegistered file format wav, extension(s) wav [1;30m > [0mRegistered file format wav16, extension(s) wav16 [1;30m > [0mformat_wav.so => ([0;33mMicrosoft WAV/WAV16 format (8kHz/16kHz Signed Linear)[0m) [1;30m > [0mLoading format_g723.so. [1;30m > [0mRegistered file format g723sf, extension(s) g723|g723sf [1;30m > [0mformat_g723.so => ([0;33mG.723.1 Simple Timestamp File Format[0m) [1;30m > [0mLoading res_fax.so. [1;30m > [0mRegistered application '[1;36mSendFAX[0m' [1;30m > [0mRegistered application '[1;36mReceiveFAX[0m' [1;30m > [0mManager registered action FAXSessions [1;30m > [0mManager registered action FAXSession [1;30m > [0mManager registered action FAXStats [1;30m > [0mRegistered custom function '[1;36mFAXOPT[0m' [1;30m > [0mres_fax.so => ([0;33mGeneric FAX Applications[0m) [1;30m > [0mLoading res_adsi.so. [1;30m > [0mres_adsi.so => ([0;33mADSI Resource[0m) [1;30m > [0mLoading format_gsm.so. [1;30m > [0mRegistered file format gsm, extension(s) gsm [1;30m > [0mformat_gsm.so => ([0;33mRaw GSM data[0m) [1;30m > [0mLoading format_g719.so. [1;30m > [0mRegistered file format g719, extension(s) g719 [1;30m > [0mformat_g719.so => ([0;33mITU G.719[0m) [1;30m > [0mLoading res_ari_model.so. [1;30m > [0mres_ari_model.so => ([0;33mARI Model validators[0m) [1;30m > [0mLoading func_dialplan.so. [1;30m > [0mRegistered custom function '[1;36mDIALPLAN_EXISTS[0m' [1;30m > [0mRegistered custom function '[1;36mVALID_EXTEN[0m' [1;30m > [0mfunc_dialplan.so => ([0;33mDialplan Context/Extension/Priority Checking Functions[0m) [1;30m > [0mLoading format_ilbc.so. [1;30m > [0mRegistered file format iLBC, extension(s) ilbc [1;30m > [0mformat_ilbc.so => ([0;33mRaw iLBC data[0m) [1;30m > [0mLoading format_sln.so. [1;30m > [0mRegistered file format sln, extension(s) sln|slin|raw [1;30m > [0mRegistered file format sln12, extension(s) sln12 [1;30m > [0mRegistered file format sln16, extension(s) sln16 [1;30m > [0mRegistered file format sln24, extension(s) sln24 [1;30m > [0mRegistered file format sln32, extension(s) sln32 [1;30m > [0mRegistered file format sln44, extension(s) sln44 [1;30m > [0mRegistered file format sln48, extension(s) sln48 [1;30m > [0mRegistered file format sln96, extension(s) sln96 [1;30m > [0mRegistered file format sln192, extension(s) sln192 [1;30m > [0mformat_sln.so => ([0;33mRaw Signed Linear Audio support (SLN) 8khz-192khz[0m) [1;30m > [0mLoading format_pcm.so. [1;30m > [0mRegistered file format pcm, extension(s) pcm|ulaw|ul|mu|ulw [1;30m > [0mRegistered file format alaw, extension(s) alaw|al|alw [1;30m > [0mRegistered file format au, extension(s) au [1;30m > [0mRegistered file format g722, extension(s) g722 [1;30m > [0mformat_pcm.so => ([0;33mRaw/Sun uLaw/ALaw 8KHz (PCM,PCMA,AU), G.722 16Khz[0m) [1;30m > [0mLoading format_siren7.so. [1;30m > [0mRegistered file format siren7, extension(s) siren7 [1;30m > [0mformat_siren7.so => ([0;33mITU G.722.1 (Siren7, licensed from Polycom)[0m) [1;30m > [0mLoading format_h263.so. [1;30m > [0mRegistered file format h263, extension(s) h263 [1;30m > [0mformat_h263.so => ([0;33mRaw H.263 data[0m) [1;30m > [0mLoading format_wav_gsm.so. [1;30m > [0mRegistered file format wav49, extension(s) WAV|wav49 [1;30m > [0mformat_wav_gsm.so => ([0;33mMicrosoft WAV format (Proprietary GSM)[0m) [1;30m > [0mLoading res_ari.so. [Feb 12 18:12:16] [1;31mERROR[0m[7]: [1;37mari/config.c[0m:[1;37m312[0m [1;37mprocess_config[0m: No configured users for ARI [1;30m > [0mres_ari.so => ([0;33mAsterisk RESTful Interface[0m) [1;30m > [0mLoading format_g726.so. [1;30m > [0mRegistered file format g726-40, extension(s) g726-40 [1;30m > [0mRegistered file format g726-32, extension(s) g726-32 [1;30m > [0mRegistered file format g726-24, extension(s) g726-24 [1;30m > [0mRegistered file format g726-16, extension(s) g726-16 [1;30m > [0mformat_g726.so => ([0;33mRaw G.726 (16/24/32/40kbps) data[0m) [1;30m > [0mLoading res_agi.so. [1;30m > [0mAGI Command 'answer' registered [1;30m > [0mAGI Command 'asyncagi break' registered [1;30m > [0mAGI Command 'channel status' registered [1;30m > [0mAGI Command 'database del' registered [1;30m > [0mAGI Command 'database deltree' registered [1;30m > [0mAGI Command 'database get' registered [1;30m > [0mAGI Command 'database put' registered [1;30m > [0mAGI Command 'exec' registered [1;30m > [0mAGI Command 'get data' registered [1;30m > [0mAGI Command 'get full variable' registered [1;30m > [0mAGI Command 'get option' registered [1;30m > [0mAGI Command 'get variable' registered [1;30m > [0mAGI Command 'hangup' registered [1;30m > [0mAGI Command 'noop' registered [1;30m > [0mAGI Command 'receive char' registered [1;30m > [0mAGI Command 'receive text' registered [1;30m > [0mAGI Command 'record file' registered [1;30m > [0mAGI Command 'say alpha' registered [1;30m > [0mAGI Command 'say digits' registered [1;30m > [0mAGI Command 'say number' registered [1;30m > [0mAGI Command 'say phonetic' registered [1;30m > [0mAGI Command 'say date' registered [1;30m > [0mAGI Command 'say time' registered [1;30m > [0mAGI Command 'say datetime' registered [1;30m > [0mAGI Command 'send image' registered [1;30m > [0mAGI Command 'send text' registered [1;30m > [0mAGI Command 'set autohangup' registered [1;30m > [0mAGI Command 'set callerid' registered [1;30m > [0mAGI Command 'set context' registered [1;30m > [0mAGI Command 'set extension' registered [1;30m > [0mAGI Command 'set music' registered [1;30m > [0mAGI Command 'set priority' registered [1;30m > [0mAGI Command 'set variable' registered [1;30m > [0mAGI Command 'stream file' registered [1;30m > [0mAGI Command 'control stream file' registered [1;30m > [0mAGI Command 'tdd mode' registered [1;30m > [0mAGI Command 'verbose' registered [1;30m > [0mAGI Command 'wait for digit' registered [1;30m > [0mAGI Command 'speech create' registered [1;30m > [0mAGI Command 'speech set' registered [1;30m > [0mAGI Command 'speech destroy' registered [1;30m > [0mAGI Command 'speech load grammar' registered [1;30m > [0mAGI Command 'speech unload grammar' registered [1;30m > [0mAGI Command 'speech activate grammar' registered [1;30m > [0mAGI Command 'speech deactivate grammar' registered [1;30m > [0mAGI Command 'speech recognize' registered [1;30m > [0mRegistered application '[1;36mDeadAGI[0m' [1;30m > [0mRegistered application '[1;36mEAGI[0m' [1;30m > [0mManager registered action AGI [1;30m > [0mRegistered application '[1;36mAGI[0m' [1;30m > [0mres_agi.so => ([0;33mAsterisk Gateway Interface (AGI)[0m) [1;30m > [0mLoading app_stack.so. [1;30m > [0mAGI Command 'gosub' registered [1;30m > [0mRegistered application '[1;36mStackPop[0m' [1;30m > [0mRegistered application '[1;36mReturn[0m' [1;30m > [0mRegistered application '[1;36mGosubIf[0m' [1;30m > [0mRegistered application '[1;36mGosub[0m' [1;30m > [0mRegistered custom function '[1;36mLOCAL[0m' [1;30m > [0mRegistered custom function '[1;36mLOCAL_PEEK[0m' [1;30m > [0mRegistered custom function '[1;36mSTACK_PEEK[0m' [1;30m > [0mapp_stack.so => ([0;33mDialplan subroutines (Gosub, Return, etc)[0m) [1;30m > [0mLoading format_siren14.so. [1;30m > [0mRegistered file format siren14, extension(s) siren14 [1;30m > [0mformat_siren14.so => ([0;33mITU G.722.1 Annex C (Siren14, licensed from Polycom)[0m) [1;30m > [0mLoading format_h264.so. [1;30m > [0mRegistered file format h264, extension(s) h264 [1;30m > [0mformat_h264.so => ([0;33mRaw H.264 data[0m) [1;30m > [0mLoading format_g729.so. [1;30m > [0mRegistered file format g729, extension(s) g729 [1;30m > [0mformat_g729.so => ([0;33mRaw G.729 data[0m) [1;30m > [0mLoading res_stasis_recording.so. [1;30m > [0mres_stasis_recording.so => ([0;33mStasis application recording support[0m) [1;30m > [0mLoading format_vox.so. [1;30m > [0mRegistered file format vox, extension(s) vox [1;30m > [0mformat_vox.so => ([0;33mDialogic VOX (ADPCM) File Format[0m) [1;30m > [0mLoading res_pjsip_messaging.so. [1;30m > [0mMessage technology 'pjsip' registered. [1;30m > [0mres_pjsip_messaging.so => ([0;33mPJSIP Messaging Support[0m) [1;30m > [0mLoading res_pjsip_notify.so. [1;30m > [0mManager registered action PJSIPNotify [1;30m > [0mRegistered application '[1;36mPJSIPNotify[0m' [1;30m > [0mres_pjsip_notify.so => ([0;33mCLI/AMI PJSIP NOTIFY Support[0m) [1;30m > [0mLoading res_pjsip_history.so. [1;30m > [0mres_pjsip_history.so => ([0;33mPJSIP History[0m) [1;30m > [0mLoading res_pjsip_acl.so. [1;30m > [0mres_pjsip_acl.so => ([0;33mPJSIP ACL Resource[0m) [1;30m > [0mLoading res_pjsip_path.so. [1;30m > [0mres_pjsip_path.so => ([0;33mPJSIP Path Header Support[0m) [1;30m > [0mLoading res_pjsip_outbound_registration.so. [1;30m > [0mManager registered action PJSIPUnregister [1;30m > [0mManager registered action PJSIPRegister [1;30m > [0mManager registered action PJSIPShowRegistrationsOutbound [1;30m > [0mres_pjsip_outbound_registration.so => ([0;33mPJSIP Outbound Registration Support[0m) [1;30m > [0mLoading res_pjsip_dtmf_info.so. [1;30m > [0mres_pjsip_dtmf_info.so => ([0;33mPJSIP DTMF INFO Support[0m) [1;30m > [0mLoading res_pjsip_nat.so. [1;30m > [0mres_pjsip_nat.so => ([0;33mPJSIP NAT Support[0m) [1;30m > [0mLoading res_pjsip_one_touch_record_info.so. [1;30m > [0mres_pjsip_one_touch_record_info.so => ([0;33mPJSIP INFO One Touch Recording Support[0m) [1;30m > [0mLoading res_pjsip_empty_info.so. [1;30m > [0mres_pjsip_empty_info.so => ([0;33mPJSIP Empty INFO Support[0m) [1;30m > [0mLoading res_pjsip_rfc3326.so. [1;30m > [0mres_pjsip_rfc3326.so => ([0;33mPJSIP RFC3326 Support[0m) [1;30m > [0mLoading res_pjsip_dlg_options.so. [1;30m > [0mres_pjsip_dlg_options.so => ([0;33mSIP OPTIONS in dialog handler[0m) [1;30m > [0mLoading res_pjsip_sips_contact.so. [1;30m > [0mres_pjsip_sips_contact.so => ([0;33mUAC SIPS Contact support[0m) [1;30m > [0mLoading res_pjsip_logger.so. [1;30m > [0mres_pjsip_logger.so => ([0;33mPJSIP Packet Logger[0m) [1;30m > [0mLoading res_pjsip_phoneprov_provider.so. [1;30m > [0mres_pjsip_phoneprov_provider.so => ([0;33mPJSIP Phoneprov Provider[0m) [1;30m > [0mLoading res_pjsip_diversion.so. [1;30m > [0mres_pjsip_diversion.so => ([0;33mPJSIP Add Diversion Header Support[0m) [1;30m > [0mLoading res_pjsip_transport_websocket.so. [1;30m > [0mWebSocket registered sub-protocol 'sip' [1;30m > [0mres_pjsip_transport_websocket.so => ([0;33mPJSIP WebSocket Transport Support[0m) [1;30m > [0mLoading res_pjsip_rfc3329.so. [1;30m > [0mres_pjsip_rfc3329.so => ([0;33mPJSIP RFC3329 Support (partial)[0m) [1;30m > [0mLoading res_pjsip_refer.so. [1;30m > [0mRefer technology 'pjsip' registered. [1;30m > [0mres_pjsip_refer.so => ([0;33mPJSIP Blind and Attended Transfer Support[0m) [1;30m > [0mLoading res_pjsip_send_to_voicemail.so. [1;30m > [0mres_pjsip_send_to_voicemail.so => ([0;33mPJSIP REFER Send to Voicemail Support[0m) [1;30m > [0mLoading res_pjsip_caller_id.so. [1;30m > [0mres_pjsip_caller_id.so => ([0;33mPJSIP Caller ID Support[0m) [1;30m > [0mLoading res_pjsip_header_funcs.so. [1;30m > [0mRegistered custom function '[1;36mPJSIP_HEADER[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_HEADERS[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_RESPONSE_HEADER[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_RESPONSE_HEADERS[0m' [1;30m > [0mRegistered custom function '[1;36mPJSIP_HEADER_PARAM[0m' [1;30m > [0mres_pjsip_header_funcs.so => ([0;33mPJSIP Header Functions[0m) [1;30m > [0mLoading sounds. [1;30m > [0msounds => ([0;33mSounds Index[0m) [1;30m > [0mLoading func_jitterbuffer.so. [1;30m > [0mRegistered custom function '[1;36mJITTERBUFFER[0m' [1;30m > [0mfunc_jitterbuffer.so => ([0;33mJitter buffer for read side of channel.[0m) [1;30m > [0mLoading app_confbridge.so. [Feb 12 18:12:16] [1;33mNOTICE[0m[7]: [1;37mconfbridge/conf_config_parser.c[0m:[1;37m2469[0m [1;37mverify_default_profiles[0m: Adding default_menu menu to app_confbridge [1;30m > [0mRegistered channel type 'CBRec' (Conference Bridge Recording Channel) [1;30m > [0mRegistered channel type 'CBAnn' (Conference Bridge Announcing Channel) [1;30m > [0mRegistered application '[1;36mConfBridge[0m' [1;30m > [0mRegistered application '[1;36mConfKick[0m' [1;30m > [0mRegistered custom function '[1;36mCONFBRIDGE[0m' [1;30m > [0mRegistered custom function '[1;36mCONFBRIDGE_INFO[0m' [1;30m > [0mRegistered custom function '[1;36mCONFBRIDGE_CHANNELS[0m' [1;30m > [0mManager registered action ConfbridgeList [1;30m > [0mManager registered action ConfbridgeListRooms [1;30m > [0mManager registered action ConfbridgeMute [1;30m > [0mManager registered action ConfbridgeUnmute [1;30m > [0mManager registered action ConfbridgeKick [1;30m > [0mManager registered action ConfbridgeUnlock [1;30m > [0mManager registered action ConfbridgeLock [1;30m > [0mManager registered action ConfbridgeStartRecord [1;30m > [0mManager registered action ConfbridgeStopRecord [1;30m > [0mManager registered action ConfbridgeSetSingleVideoSrc [1;30m > [0mapp_confbridge.so => ([0;33mConference Bridge Application[0m) [1;30m > [0mLoading res_mwi_devstate.so. [1;30m > [0mres_mwi_devstate.so => ([0;33mMWI Device State Subscriptions[0m) [1;30m > [0mLoading app_agent_pool.so. [1;30m > [0mManager registered action Agents [1;30m > [0mManager registered action AgentLogoff [1;30m > [0mRegistered custom function '[1;36mAGENT[0m' [1;30m > [0mRegistered application '[1;36mAgentLogin[0m' [1;30m > [0mRegistered application '[1;36mAgentRequest[0m' [1;30m > [0mapp_agent_pool.so => ([0;33mCall center agent pool applications[0m) [1;30m > [0mLoading func_devstate.so. [1;30m > [0mRegistered custom function '[1;36mDEVICE_STATE[0m' [1;30m > [0mRegistered custom function '[1;36mHINT[0m' [1;30m > [0mfunc_devstate.so => ([0;33mGets or sets a device state in the dialplan[0m) [1;30m > [0mLoading res_calendar.so. [1;30m > [0mRegistered custom function '[1;36mCALENDAR_BUSY[0m' [1;30m > [0mRegistered custom function '[1;36mCALENDAR_EVENT[0m' [1;30m > [0mRegistered custom function '[1;36mCALENDAR_QUERY[0m' [1;30m > [0mRegistered custom function '[1;36mCALENDAR_QUERY_RESULT[0m' [1;30m > [0mRegistered custom function '[1;36mCALENDAR_WRITE[0m' [1;30m > [0mres_calendar.so => ([0;33mAsterisk Calendar integration[0m) [1;30m > [0mLoading res_parking.so. [1;30m > [0mRegistered application '[1;36mPark[0m' [1;30m > [0mRegistered application '[1;36mParkedCall[0m' [1;30m > [0mRegistered application '[1;36mParkAndAnnounce[0m' [1;30m > [0mManager registered action Parkinglots [1;30m > [0mManager registered action ParkedCalls [1;30m > [0mManager registered action Park [1;30m > [0mRegistered custom function '[1;36mPARK_GET_CHANNEL[0m' [1;30m > [0mres_parking.so => ([0;33mCall Parking Resource[0m) [1;30m > [0mLoading func_presencestate.so. [1;30m > [0mRegistered custom function '[1;36mPRESENCE_STATE[0m' [1;30m > [0mfunc_presencestate.so => ([0;33mGets or sets a presence state in the dialplan[0m) [1;30m > [0mLoading app_sla.so. [1;30m > [0mRegistered application '[1;36mSLAStation[0m' [1;30m > [0mRegistered application '[1;36mSLATrunk[0m' [1;30m > [0mapp_sla.so => ([0;33mShared Line Appearances[0m) [1;30m > [0mLoading cdr_custom.so. [1;30m > [0mcdr_custom.so => ([0;33mCustomizable Comma Separated Values CDR Backend[0m) [1;30m > [0mLoading cel_manager.so. [1;30m > [0mcel_manager.so => ([0;33mAsterisk Manager Interface CEL Backend[0m) [1;30m > [0mLoading cdr_manager.so. [1;30m > [0mcdr_manager.so => ([0;33mAsterisk Manager Interface CDR Backend[0m) [1;30m > [0mLoading cel_odbc.so. [1;30m > [0mcel_odbc.so => ([0;33mODBC CEL backend[0m) [1;30m > [0mLoading cdr_sqlite3_custom.so. [1;30m > [0mLoading cdr_csv.so. [1;30m > [0mcdr_csv.so => ([0;33mComma Separated Values CDR Backend[0m) [1;30m > [0mLoading cel_custom.so. [Feb 12 18:12:16] [1;33mNOTICE[0m[7]: [1;37mcel_custom.c[0m:[1;37m91[0m [1;37mload_config[0m: No mappings found in cel_custom.conf. Not logging CEL to custom CSVs. [1;30m [0mAdded CEL CSV mapping for 0 files. [1;30m > [0mcel_custom.so => ([0;33mCustomizable Comma Separated Values CEL Backend[0m) [1;30m > [0mLoading cel_sqlite3_custom.so. [1;30m > [0mLoading cdr_odbc.so. [1;30m > [0mcdr_odbc.so => ([0;33mODBC CDR Backend[0m) [1;30m > [0mLoading cdr_adaptive_odbc.so. [1;30m > [0mcdr_adaptive_odbc.so => ([0;33mAdaptive ODBC CDR backend[0m) [1;30m > [0mLoading func_cdr.so. [1;30m > [0mRegistered custom function '[1;36mCDR[0m' [1;30m > [0mRegistered custom function '[1;36mCDR_PROP[0m' [1;30m > [0mfunc_cdr.so => ([0;33mCall Detail Record (CDR) dialplan functions[0m) [1;30m > [0mLoading app_chanisavail.so. [1;30m > [0mRegistered application '[1;36mChanIsAvail[0m' [1;30m > [0mapp_chanisavail.so => ([0;33mCheck channel availability[0m) [1;30m > [0mLoading func_logic.so. [1;30m > [0mRegistered custom function '[1;36mISNULL[0m' [1;30m > [0mRegistered custom function '[1;36mSET[0m' [1;30m > [0mRegistered custom function '[1;36mEXISTS[0m' [1;30m > [0mRegistered custom function '[1;36mIF[0m' [1;30m > [0mRegistered custom function '[1;36mIFTIME[0m' [1;30m > [0mRegistered custom function '[1;36mIMPORT[0m' [1;30m > [0mRegistered custom function '[1;36mDELETE[0m' [1;30m > [0mRegistered custom function '[1;36mVARIABLE_EXISTS[0m' [1;30m > [0mfunc_logic.so => ([0;33mLogical dialplan functions[0m) [1;30m > [0mLoading func_holdintercept.so. [1;30m > [0mRegistered custom function '[1;36mHOLD_INTERCEPT[0m' [1;30m > [0mfunc_holdintercept.so => ([0;33mHold interception dialplan function[0m) [1;30m > [0mLoading app_controlplayback.so. [1;30m > [0mRegistered application '[1;36mControlPlayback[0m' [1;30m > [0mManager registered action ControlPlayback [1;30m > [0mapp_controlplayback.so => ([0;33mControl Playback Application[0m) [1;30m > [0mLoading app_zapateller.so. [1;30m > [0mRegistered application '[1;36mZapateller[0m' [1;30m > [0mapp_zapateller.so => ([0;33mBlock Telemarketers with Special Information Tone[0m) [1;30m > [0mLoading app_echo.so. [1;30m > [0mRegistered application '[1;36mEcho[0m' [1;30m > [0mapp_echo.so => ([0;33mSimple Echo Application[0m) [1;30m > [0mLoading chan_unistim.so. [1;30m == [0mUNISTIM Listening on 0.0.0.0:5000 [1;30m > [0mRegistered channel type 'USTM' (UNISTIM Channel Driver) [1;30m > [0mRegistered RTP glue 'USTM' [1;30m > [0mchan_unistim.so => ([0;33mUNISTIM Protocol (USTM)[0m) [1;30m > [0mLoading codec_ulaw.so. [1;30m > [0mRegistered translator '[0;35mulawtolin[0m' from codec ulaw to slin, table cost, 900000, computational cost 30 [1;30m > [0mRegistered translator '[0;35mlintoulaw[0m' from codec slin to ulaw, table cost, 600000, computational cost 12 [1;30m > [0mcodec_ulaw.so => ([0;33mmu-Law Coder/Decoder[0m) [1;30m > [0mLoading func_md5.so. [1;30m > [0mRegistered custom function '[1;36mMD5[0m' [1;30m > [0mfunc_md5.so => ([0;33mMD5 digest dialplan functions[0m) [1;30m > [0mLoading bridge_native_rtp.so. [1;30m > [0mRegistered bridge technology native_rtp [1;30m > [0mbridge_native_rtp.so => ([0;33mNative RTP bridging module[0m) [1;30m > [0mLoading func_extstate.so. [1;30m > [0mRegistered custom function '[1;36mEXTENSION_STATE[0m' [1;30m > [0mfunc_extstate.so => ([0;33mGets an extension's state in the dialplan[0m) [1;30m > [0mLoading func_rand.so. [1;30m > [0mRegistered custom function '[1;36mRAND[0m' [1;30m > [0mfunc_rand.so => ([0;33mRandom number dialplan function[0m) [1;30m > [0mLoading app_voicemail.so. [1;30m > [0mRegistered application '[1;36mVoiceMail[0m' [1;30m > [0mRegistered application '[1;36mVoiceMailMain[0m' [1;30m > [0mRegistered application '[1;36mVMAuthenticate[0m' [1;30m > [0mRegistered application '[1;36mVoiceMailPlayMsg[0m' [1;30m > [0mRegistered application '[1;36mVMSayName[0m' [1;30m > [0mRegistered custom function '[1;36mVM_INFO[0m' [1;30m > [0mManager registered action VoicemailUsersList [1;30m > [0mManager registered action VoicemailUserStatus [1;30m > [0mManager registered action VoicemailRefresh [1;30m > [0mManager registered action VoicemailBoxSummary [1;30m > [0mManager registered action VoicemailMove [1;30m > [0mManager registered action VoicemailRemove [1;30m > [0mManager registered action VoicemailForward [1;30m > [0mapp_voicemail.so => ([0;33mComedian Mail (Voicemail System)[0m) [1;30m > [0mLoading func_db.so. [1;30m > [0mRegistered custom function '[1;36mDB[0m' [1;30m > [0mRegistered custom function '[1;36mDB_EXISTS[0m' [1;30m > [0mRegistered custom function '[1;36mDB_DELETE[0m' [1;30m > [0mRegistered custom function '[1;36mDB_KEYS[0m' [1;30m > [0mRegistered custom function '[1;36mDB_KEYCOUNT[0m' [1;30m > [0mfunc_db.so => ([0;33mDatabase (astdb) related dialplan functions[0m) [1;30m > [0mLoading app_milliwatt.so. [1;30m > [0mRegistered application '[1;36mMilliwatt[0m' [1;30m > [0mapp_milliwatt.so => ([0;33mDigital Milliwatt (mu-law) Test Application[0m) [1;30m > [0mLoading func_hangupcause.so. [1;30m > [0mRegistered custom function '[1;36mHANGUPCAUSE[0m' [1;30m > [0mRegistered custom function '[1;36mHANGUPCAUSE_KEYS[0m' [1;30m > [0mRegistered application '[1;36mHangupCauseClear[0m' [1;30m > [0mfunc_hangupcause.so => ([0;33mHANGUPCAUSE related functions and applications[0m) [1;30m > [0mLoading app_externalivr.so. [1;30m > [0mRegistered application '[1;36mExternalIVR[0m' [1;30m > [0mapp_externalivr.so => ([0;33mExternal IVR Interface Application[0m) [1;30m > [0mLoading pbx_spool.so. [1;30m > [0mpbx_spool.so => ([0;33mOutgoing Spool Support[0m) [1;30m > [0mLoading app_readexten.so. [1;30m > [0mRegistered application '[1;36mReadExten[0m' [1;30m > [0mapp_readexten.so => ([0;33mRead and evaluate extension validity[0m) [1;30m > [0mLoading func_sysinfo.so. [1;30m > [0mRegistered custom function '[1;36mSYSINFO[0m' [1;30m > [0mfunc_sysinfo.so => ([0;33mSystem information related functions[0m) [1;30m > [0mLoading app_signal.so. [1;30m > [0mRegistered application '[1;36mSignal[0m' [1;30m > [0mRegistered application '[1;36mWaitForSignal[0m' [1;30m > [0mapp_signal.so => ([0;33mChannel Signaling Applications[0m) [1;30m > [0mLoading app_dtmfstore.so. [1;30m > [0mRegistered application '[1;36mStoreDTMF[0m' [1;30m > [0mapp_dtmfstore.so => ([0;33mTechnology independent async DTMF storage[0m) [1;30m > [0mLoading func_frame_drop.so. [1;30m > [0mRegistered custom function '[1;36mFRAME_DROP[0m' [1;30m > [0mfunc_frame_drop.so => ([0;33mFunction to drop frames on a channel.[0m) [1;30m > [0mLoading func_shell.so. [1;30m > [0mRegistered custom function '[1;36mSHELL[0m' [1;30m > [0mfunc_shell.so => ([0;33mCollects the output generated by a command executed by the system shell[0m) [1;30m > [0mLoading codec_g722.so. [1;30m > [0mRegistered translator '[0;35mg722tolin[0m' from codec g722 to slin, table cost, 960000, computational cost 303 [1;30m > [0mRegistered translator '[0;35mlintog722[0m' from codec slin to g722, table cost, 825000, computational cost 366 [1;30m > [0mRegistered translator '[0;35mg722tolin16[0m' from codec g722 to slin, table cost, 900000, computational cost 472 [1;30m > [0mRegistered translator '[0;35mlin16tog722[0m' from codec slin to g722, table cost, 600000, computational cost 796 [1;30m > [0mcodec_g722.so => ([0;33mITU G.722-64kbps G722 Transcoder[0m) [1;30m > [0mLoading func_enum.so. [1;30m > [0mRegistered custom function '[1;36mENUMRESULT[0m' [1;30m > [0mRegistered custom function '[1;36mENUMQUERY[0m' [1;30m > [0mRegistered custom function '[1;36mENUMLOOKUP[0m' [1;30m > [0mRegistered custom function '[1;36mTXTCIDNAME[0m' [1;30m > [0mfunc_enum.so => ([0;33mENUM related dialplan functions[0m) [1;30m > [0mLoading app_privacy.so. [1;30m > [0mRegistered application '[1;36mPrivacyManager[0m' [1;30m > [0mapp_privacy.so => ([0;33mRequire phone number to be entered, if no CallerID sent[0m) [1;30m > [0mLoading app_mp3.so. [1;30m > [0mRegistered application '[1;36mMP3Player[0m' [1;30m > [0mapp_mp3.so => ([0;33mSilly MP3 Application[0m) [1;30m > [0mLoading app_page.so. [1;30m > [0mRegistered application '[1;36mPage[0m' [1;30m > [0mapp_page.so => ([0;33mPage Multiple Phones[0m) [1;30m > [0mLoading func_module.so. [1;30m > [0mRegistered custom function '[1;36mIFMODULE[0m' [1;30m > [0mfunc_module.so => ([0;33mChecks if Asterisk module is loaded in memory[0m) [1;30m > [0mLoading app_sayunixtime.so. [1;30m > [0mRegistered application '[1;36mSayUnixTime[0m' [1;30m > [0mRegistered application '[1;36mDateTime[0m' [1;30m > [0mapp_sayunixtime.so => ([0;33mSay time[0m) [1;30m > [0mLoading app_dial.so. [1;30m > [0mRegistered application '[1;36mDial[0m' [1;30m > [0mRegistered application '[1;36mRetryDial[0m' [1;30m > [0mapp_dial.so => ([0;33mDialing Application[0m) [1;30m > [0mLoading app_attended_transfer.so. [1;30m > [0mRegistered application '[1;36mAttendedTransfer[0m' [1;30m > [0mapp_attended_transfer.so => ([0;33mAttended transfer to the given extension[0m) [1;30m > [0mLoading app_bridgewait.so. [1;30m > [0mRegistered application '[1;36mBridgeWait[0m' [1;30m > [0mapp_bridgewait.so => ([0;33mPlace the channel into a holding bridge application[0m) [1;30m > [0mLoading app_alarmreceiver.so. [1;30m > [0mRegistered application '[1;36mAlarmReceiver[0m' [1;30m > [0mapp_alarmreceiver.so => ([0;33mAlarm Receiver for Asterisk[0m) [1;30m > [0mLoading app_minivm.so. [1;30m > [0mRegistered application '[1;36mMinivmRecord[0m' [1;30m > [0mRegistered application '[1;36mMinivmGreet[0m' [1;30m > [0mRegistered application '[1;36mMinivmNotify[0m' [1;30m > [0mRegistered application '[1;36mMinivmDelete[0m' [1;30m > [0mRegistered application '[1;36mMinivmAccMess[0m' [1;30m > [0mRegistered application '[1;36mMinivmMWI[0m' [1;30m > [0mRegistered custom function '[1;36mMINIVMACCOUNT[0m' [1;30m > [0mRegistered custom function '[1;36mMINIVMCOUNTER[0m' [1;30m > [0mapp_minivm.so => ([0;33mMini VoiceMail (A minimal Voicemail e-mail System)[0m) [1;30m > [0mLoading app_getcpeid.so. [1;30m > [0mRegistered application '[1;36mGetCPEID[0m' [1;30m > [0mapp_getcpeid.so => ([0;33mGet ADSI CPE ID[0m) [1;30m > [0mLoading func_channel.so. [1;30m > [0mRegistered custom function '[1;36mCHANNEL[0m' [1;30m > [0mRegistered custom function '[1;36mCHANNELS[0m' [1;30m > [0mRegistered custom function '[1;36mCHANNEL_EXISTS[0m' [1;30m > [0mRegistered custom function '[1;36mMASTER_CHANNEL[0m' [1;30m > [0mfunc_channel.so => ([0;33mChannel information dialplan functions[0m) [1;30m > [0mLoading app_talkdetect.so. [1;30m > [0mRegistered application '[1;36mBackgroundDetect[0m' [1;30m > [0mapp_talkdetect.so => ([0;33mPlayback with Talk Detection[0m) [1;30m > [0mLoading bridge_softmix.so. [1;30m > [0mRegistered bridge technology softmix [1;30m > [0mbridge_softmix.so => ([0;33mMulti-party software based channel mixing[0m) [1;30m > [0mLoading res_format_attr_h264.so. [1;30m > [0mRegistered format interface for codec 'h264' [1;30m > [0mres_format_attr_h264.so => ([0;33mH.264 Format Attribute Module[0m) [1;30m > [0mLoading func_global.so. [1;30m > [0mRegistered custom function '[1;36mGLOBAL[0m' [1;30m > [0mRegistered custom function '[1;36mGLOBAL_DELETE[0m' [1;30m > [0mRegistered custom function '[1;36mGLOBAL_EXISTS[0m' [1;30m > [0mRegistered custom function '[1;36mSHARED[0m' [1;30m > [0mfunc_global.so => ([0;33mVariable dialplan functions[0m) [1;30m > [0mLoading bridge_builtin_interval_features.so. [1;30m > [0mbridge_builtin_interval_features.so => ([0;33mBuilt in bridging interval features[0m) [1;30m > [0mLoading app_chanspy.so. [1;30m > [0mRegistered application '[1;36mChanSpy[0m' [1;30m > [0mRegistered application '[1;36mExtenSpy[0m' [1;30m > [0mRegistered application '[1;36mDAHDIScan[0m' [1;30m > [0mapp_chanspy.so => ([0;33mListen to the audio of an active channel[0m) [1;30m > [0mLoading app_sms.so. [1;30m > [0mRegistered application '[1;36mSMS[0m' [1;30m > [0mapp_sms.so => ([0;33mSMS/PSTN handler[0m) [1;30m > [0mLoading func_srv.so. [1;30m > [0mRegistered custom function '[1;36mSRVQUERY[0m' [1;30m > [0mRegistered custom function '[1;36mSRVRESULT[0m' [1;30m > [0mfunc_srv.so => ([0;33mSRV related dialplan functions[0m) [1;30m > [0mLoading func_pitchshift.so. [1;30m > [0mRegistered custom function '[1;36mPITCH_SHIFT[0m' [1;30m > [0mfunc_pitchshift.so => ([0;33mAudio Effects Dialplan Functions[0m) [1;30m > [0mLoading func_uri.so. [1;30m > [0mRegistered custom function '[1;36mURIDECODE[0m' [1;30m > [0mRegistered custom function '[1;36mURIENCODE[0m' [1;30m > [0mfunc_uri.so => ([0;33mURI encode/decode dialplan functions[0m) [1;30m > [0mLoading func_config.so. [1;30m > [0mRegistered custom function '[1;36mAST_CONFIG[0m' [1;30m > [0mfunc_config.so => ([0;33mAsterisk configuration file variable access[0m) [1;30m > [0mLoading codec_ilbc.so. [1;30m > [0mRegistered translator '[0;35milbctolin[0m' from codec ilbc to slin, table cost, 900000, computational cost 664 [1;30m > [0mRegistered translator '[0;35mlintoilbc[0m' from codec slin to ilbc, table cost, 600000, computational cost 2871 [1;30m > [0mcodec_ilbc.so => ([0;33miLBC Coder/Decoder[0m) [1;30m > [0mLoading app_playtones.so. [1;30m > [0mRegistered application '[1;36mPlayTones[0m' [1;30m > [0mRegistered application '[1;36mStopPlayTones[0m' [1;30m > [0mapp_playtones.so => ([0;33mPlaytones Application[0m) [1;30m > [0mLoading app_waituntil.so. [1;30m > [0mRegistered application '[1;36mWaitUntil[0m' [1;30m > [0mapp_waituntil.so => ([0;33mWait until specified time[0m) [1;30m > [0mLoading app_senddtmf.so. [1;30m > [0mManager registered action PlayDTMF [1;30m > [0mManager registered action SendFlash [1;30m > [0mRegistered application '[1;36mSendDTMF[0m' [1;30m > [0mapp_senddtmf.so => ([0;33mSend DTMF digits Application[0m) [1;30m > [0mLoading pbx_realtime.so. [1;30m > [0mpbx_realtime.so => ([0;33mRealtime Switch[0m) [1;30m > [0mLoading func_frame_trace.so. [1;30m > [0mRegistered custom function '[1;36mFRAME_TRACE[0m' [1;30m > [0mfunc_frame_trace.so => ([0;33mFrame Trace for internal ast_frame debugging.[0m) [1;30m > [0mLoading app_directory.so. [1;30m > [0mRegistered application '[1;36mDirectory[0m' [1;30m > [0mapp_directory.so => ([0;33mExtension Directory[0m) [1;30m > [0mLoading res_limit.so. [1;30m > [0mres_limit.so => ([0;33mResource limits[0m) [1;30m > [0mLoading app_speech_utils.so. [1;30m > [0mRegistered application '[1;36mSpeechCreate[0m' [1;30m > [0mRegistered application '[1;36mSpeechLoadGrammar[0m' [1;30m > [0mRegistered application '[1;36mSpeechUnloadGrammar[0m' [1;30m > [0mRegistered application '[1;36mSpeechActivateGrammar[0m' [1;30m > [0mRegistered application '[1;36mSpeechDeactivateGrammar[0m' [1;30m > [0mRegistered application '[1;36mSpeechStart[0m' [1;30m > [0mRegistered application '[1;36mSpeechBackground[0m' [1;30m > [0mRegistered application '[1;36mSpeechDestroy[0m' [1;30m > [0mRegistered application '[1;36mSpeechProcessingSound[0m' [1;30m > [0mRegistered custom function '[1;36mSPEECH[0m' [1;30m > [0mRegistered custom function '[1;36mSPEECH_SCORE[0m' [1;30m > [0mRegistered custom function '[1;36mSPEECH_TEXT[0m' [1;30m > [0mRegistered custom function '[1;36mSPEECH_GRAMMAR[0m' [1;30m > [0mRegistered custom function '[1;36mSPEECH_ENGINE[0m' [1;30m > [0mRegistered custom function '[1;36mSPEECH_RESULTS_TYPE[0m' [1;30m > [0mapp_speech_utils.so => ([0;33mDialplan Speech Applications[0m) [1;30m > [0mLoading app_playback.so. [1;30m > [0mRegistered application '[1;36mPlayback[0m' [1;30m > [0mapp_playback.so => ([0;33mSound File Playback Application[0m) [1;30m > [0mLoading app_cdr.so. [1;30m > [0mRegistered application '[1;36mResetCDR[0m' [1;30m > [0mapp_cdr.so => ([0;33mTell Asterisk to not maintain a CDR for the current call[0m) [1;30m > [0mLoading app_waitforsilence.so. [1;30m > [0mRegistered application '[1;36mWaitForSilence[0m' [1;30m > [0mRegistered application '[1;36mWaitForNoise[0m' [1;30m > [0mapp_waitforsilence.so => ([0;33mWait For Silence/Noise[0m) [1;30m > [0mLoading app_stasis.so. [1;30m > [0mRegistered application '[1;36mStasis[0m' [1;30m > [0mapp_stasis.so => ([0;33mStasis dialplan application[0m) [1;30m > [0mLoading func_base64.so. [1;30m > [0mRegistered custom function '[1;36mBASE64_ENCODE[0m' [1;30m > [0mRegistered custom function '[1;36mBASE64_DECODE[0m' [1;30m > [0mfunc_base64.so => ([0;33mbase64 encode/decode dialplan functions[0m) [1;30m > [0mLoading func_blacklist.so. [1;30m > [0mRegistered custom function '[1;36mBLACKLIST[0m' [1;30m > [0mfunc_blacklist.so => ([0;33mLook up Caller*ID name/number from blacklist database[0m) [1;30m > [0mLoading app_festival.so. [1;30m > [0mRegistered application '[1;36mFestival[0m' [1;30m > [0mapp_festival.so => ([0;33mSimple Festival Interface[0m) [1;30m > [0mLoading func_cut.so. [1;30m > [0mRegistered custom function '[1;36mCUT[0m' [1;30m > [0mRegistered custom function '[1;36mSORT[0m' [1;30m > [0mfunc_cut.so => ([0;33mCut out information from a string[0m) [1;30m > [0mLoading func_talkdetect.so. [1;30m > [0mRegistered custom function '[1;36mTALK_DETECT[0m' [1;30m > [0mfunc_talkdetect.so => ([0;33mTalk detection dialplan function[0m) [1;30m > [0mLoading app_waitforring.so. [1;30m > [0mRegistered application '[1;36mWaitForRing[0m' [1;30m > [0mapp_waitforring.so => ([0;33mWaits until first ring after time[0m) [1;30m > [0mLoading app_waitforcond.so. [1;30m > [0mRegistered application '[1;36mWaitForCondition[0m' [1;30m > [0mapp_waitforcond.so => ([0;33mWait until condition is true[0m) [1;30m > [0mLoading func_version.so. [1;30m > [0mRegistered custom function '[1;36mVERSION[0m' [1;30m > [0mfunc_version.so => ([0;33mGet Asterisk Version/Build Info[0m) [1;30m > [0mLoading codec_lpc10.so. [1;30m > [0mRegistered translator '[0;35mlpc10tolin[0m' from codec lpc10 to slin, table cost, 900000, computational cost 426 [1;30m > [0mRegistered translator '[0;35mlintolpc10[0m' from codec slin to lpc10, table cost, 600000, computational cost 466 [1;30m > [0mcodec_lpc10.so => ([0;33mLPC10 2.4kbps Coder/Decoder[0m) [1;30m > [0mLoading app_test.so. [1;30m > [0mRegistered application '[1;36mTestClient[0m' [1;30m > [0mRegistered application '[1;36mTestServer[0m' [1;30m > [0mapp_test.so => ([0;33mInterface Test Application[0m) [1;30m > [0mLoading res_tonedetect.so. [1;30m > [0mRegistered application '[1;36mWaitForTone[0m' [1;30m > [0mRegistered application '[1;36mToneScan[0m' [1;30m > [0mRegistered custom function '[1;36mTONE_DETECT[0m' [1;30m > [0mres_tonedetect.so => ([0;33mTone detection module[0m) [1;30m > [0mLoading func_strings.so. [1;30m > [0mRegistered custom function '[1;36mFIELDQTY[0m' [1;30m > [0mRegistered custom function '[1;36mFIELDNUM[0m' [1;30m > [0mRegistered custom function '[1;36mFILTER[0m' [1;30m > [0mRegistered custom function '[1;36mREPLACE[0m' [1;30m > [0mRegistered custom function '[1;36mSTRREPLACE[0m' [1;30m > [0mRegistered custom function '[1;36mSTRBETWEEN[0m' [1;30m > [0mRegistered custom function '[1;36mLISTFILTER[0m' [1;30m > [0mRegistered custom function '[1;36mREGEX[0m' [1;30m > [0mRegistered custom function '[1;36mARRAY[0m' [1;30m > [0mRegistered custom function '[1;36mQUOTE[0m' [1;30m > [0mRegistered custom function '[1;36mCSV_QUOTE[0m' [1;30m > [0mRegistered custom function '[1;36mLEN[0m' [1;30m > [0mRegistered custom function '[1;36mSTRFTIME[0m' [1;30m > [0mRegistered custom function '[1;36mSTRPTIME[0m' [1;30m > [0mRegistered custom function '[1;36mEVAL[0m' [1;30m > [0mRegistered custom function '[1;36mKEYPADHASH[0m' [1;30m > [0mRegistered custom function '[1;36mHASHKEYS[0m' [1;30m > [0mRegistered custom function '[1;36mHASH[0m' [1;30m > [0mRegistered application '[1;36mClearHash[0m' [1;30m > [0mRegistered custom function '[1;36mTOUPPER[0m' [1;30m > [0mRegistered custom function '[1;36mTOLOWER[0m' [1;30m > [0mRegistered custom function '[1;36mSHIFT[0m' [1;30m > [0mRegistered custom function '[1;36mPOP[0m' [1;30m > [0mRegistered custom function '[1;36mPUSH[0m' [1;30m > [0mRegistered custom function '[1;36mUNSHIFT[0m' [1;30m > [0mRegistered custom function '[1;36mPASSTHRU[0m' [1;30m > [0mRegistered custom function '[1;36mTRIM[0m' [1;30m > [0mRegistered custom function '[1;36mLTRIM[0m' [1;30m > [0mRegistered custom function '[1;36mRTRIM[0m' [1;30m > [0mfunc_strings.so => ([0;33mString handling dialplan functions[0m) [1;30m > [0mLoading func_math.so. [1;30m > [0mRegistered custom function '[1;36mMATH[0m' [1;30m > [0mRegistered custom function '[1;36mINC[0m' [1;30m > [0mRegistered custom function '[1;36mDEC[0m' [1;30m > [0mRegistered custom function '[1;36mMIN[0m' [1;30m > [0mRegistered custom function '[1;36mMAX[0m' [1;30m > [0mRegistered custom function '[1;36mABS[0m' [1;30m > [0mfunc_math.so => ([0;33mMathematical dialplan function[0m) [1;30m > [0mLoading app_bridgeaddchan.so. [1;30m > [0mRegistered application '[1;36mBridgeAdd[0m' [1;30m > [0mapp_bridgeaddchan.so => ([0;33mBridge Add Channel Application[0m) [1;30m > [0mLoading codec_alaw.so. [1;30m > [0mRegistered translator '[0;35malawtolin[0m' from codec alaw to slin, table cost, 900000, computational cost 14 [1;30m > [0mRegistered translator '[0;35mlintoalaw[0m' from codec slin to alaw, table cost, 600000, computational cost 12 [1;30m > [0mcodec_alaw.so => ([0;33mA-law Coder/Decoder[0m) [1;30m > [0mLoading app_stream_echo.so. [1;30m > [0mRegistered application '[1;36mStreamEcho[0m' [1;30m > [0mapp_stream_echo.so => ([0;33mStream Echo Application[0m) [1;30m > [0mLoading func_callcompletion.so. [1;30m > [0mRegistered custom function '[1;36mCALLCOMPLETION[0m' [1;30m > [0mfunc_callcompletion.so => ([0;33mCall Control Configuration Function[0m) [1;30m > [0mLoading func_timeout.so. [1;30m > [0mRegistered custom function '[1;36mTIMEOUT[0m' [1;30m > [0mfunc_timeout.so => ([0;33mChannel timeout dialplan functions[0m) [1;30m > [0mLoading res_stasis_snoop.so. [1;30m > [0mres_stasis_snoop.so => ([0;33mStasis application snoop support[0m) [1;30m > [0mLoading app_blind_transfer.so. [1;30m > [0mRegistered application '[1;36mBlindTransfer[0m' [1;30m > [0mapp_blind_transfer.so => ([0;33mBlind transfer channel to the given destination[0m) [1;30m > [0mLoading res_fax_spandsp.so. [1;30m -- [0mRegistered handler for 'Spandsp' (Spandsp FAX Driver) [1;30m > [0mres_fax_spandsp.so => ([0;33mSpandsp G.711 and T.38 FAX Technologies[0m) [1;30m > [0mLoading app_record.so. [1;30m > [0mRegistered application '[1;36mRecord[0m' [1;30m > [0mapp_record.so => ([0;33mTrivial Record Application[0m) [1;30m > [0mLoading func_json.so. [1;30m > [0mRegistered custom function '[1;36mJSON_DECODE[0m' [1;30m > [0mfunc_json.so => ([0;33mJSON decoding function[0m) [1;30m > [0mLoading func_env.so. [1;30m > [0mRegistered custom function '[1;36mENV[0m' [1;30m > [0mRegistered custom function '[1;36mSTAT[0m' [1;30m > [0mRegistered custom function '[1;36mFILE[0m' [1;30m > [0mRegistered custom function '[1;36mFILE_COUNT_LINE[0m' [1;30m > [0mRegistered custom function '[1;36mFILE_FORMAT[0m' [1;30m > [0mRegistered custom function '[1;36mDIRNAME[0m' [1;30m > [0mRegistered custom function '[1;36mBASENAME[0m' [1;30m > [0mfunc_env.so => ([0;33mEnvironment/filesystem dialplan functions[0m) [1;30m > [0mLoading app_system.so. [1;30m > [0mRegistered application '[1;36mTrySystem[0m' [1;30m > [0mRegistered application '[1;36mSystem[0m' [1;30m > [0mapp_system.so => ([0;33mGeneric System() application[0m) [1;30m > [0mLoading res_security_log.so. [1;30m -- [0mSecurity Logging Enabled [1;30m > [0mres_security_log.so => ([0;33mSecurity Event Logging[0m) [1;30m > [0mLoading func_scramble.so. [1;30m > [0mRegistered custom function '[1;36mSCRAMBLE[0m' [1;30m > [0mfunc_scramble.so => ([0;33mFrequency inverting voice scrambler[0m) [1;30m > [0mLoading app_broadcast.so. [1;30m > [0mRegistered application '[1;36mBroadcast[0m' [1;30m > [0mapp_broadcast.so => ([0;33mChannel Audio Broadcasting[0m) [1;30m > [0mLoading app_transfer.so. [1;30m > [0mRegistered application '[1;36mTransfer[0m' [1;30m > [0mapp_transfer.so => ([0;33mTransfers a caller to another extension[0m) [1;30m > [0mLoading app_softhangup.so. [1;30m > [0mRegistered application '[1;36mSoftHangup[0m' [1;30m > [0mapp_softhangup.so => ([0;33mHangs up the requested channel[0m) [1;30m > [0mLoading func_sorcery.so. [1;30m > [0mRegistered custom function '[1;36mAST_SORCERY[0m' [1;30m > [0mfunc_sorcery.so => ([0;33mGet a field from a sorcery object[0m) [1;30m > [0mLoading app_db.so. [1;30m > [0mRegistered application '[1;36mDBdeltree[0m' [1;30m > [0mapp_db.so => ([0;33mDatabase Access Functions[0m) [1;30m > [0mLoading func_evalexten.so. [1;30m > [0mRegistered custom function '[1;36mEVAL_EXTEN[0m' [1;30m > [0mRegistered custom function '[1;36mEVAL_SUB[0m' [1;30m > [0mfunc_evalexten.so => ([0;33mExtension evaluation function[0m) [1;30m > [0mLoading codec_resample.so. [1;30m > [0mRegistered translator '[0;35mslin 8000khz -> 12000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 8000khz -> 16000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 8000khz -> 24000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 8000khz -> 32000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 8000khz -> 44100khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 8000khz -> 48000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 8000khz -> 96000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 8000khz -> 192000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 12000khz -> 8000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 12000khz -> 16000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 12000khz -> 24000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 12000khz -> 32000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 12000khz -> 44100khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 12000khz -> 48000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 12000khz -> 96000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 12000khz -> 192000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 16000khz -> 8000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 16000khz -> 12000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 16000khz -> 24000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 16000khz -> 32000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 16000khz -> 44100khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 16000khz -> 48000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 16000khz -> 96000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 16000khz -> 192000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 24000khz -> 8000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 24000khz -> 12000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 24000khz -> 16000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 24000khz -> 32000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 24000khz -> 44100khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 24000khz -> 48000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 24000khz -> 96000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 24000khz -> 192000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 32000khz -> 8000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 32000khz -> 12000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 32000khz -> 16000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 32000khz -> 24000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 32000khz -> 44100khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 32000khz -> 48000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 32000khz -> 96000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 32000khz -> 192000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 44100khz -> 8000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 44100khz -> 12000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 44100khz -> 16000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 44100khz -> 24000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 44100khz -> 32000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 44100khz -> 48000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 44100khz -> 96000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 44100khz -> 192000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 48000khz -> 8000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 48000khz -> 12000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 48000khz -> 16000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 48000khz -> 24000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 48000khz -> 32000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 48000khz -> 44100khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 48000khz -> 96000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 48000khz -> 192000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 96000khz -> 8000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 96000khz -> 12000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 96000khz -> 16000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 96000khz -> 24000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 96000khz -> 32000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 96000khz -> 44100khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 96000khz -> 48000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 96000khz -> 192000khz[0m' from codec slin to slin, table cost, 800000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 192000khz -> 8000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 192000khz -> 12000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 192000khz -> 16000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 192000khz -> 24000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 192000khz -> 32000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 192000khz -> 44100khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 192000khz -> 48000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mRegistered translator '[0;35mslin 192000khz -> 96000khz[0m' from codec slin to slin, table cost, 850000, computational cost 999999 [1;30m > [0mcodec_resample.so => ([0;33mSLIN Resampling Codec[0m) [1;30m > [0mLoading codec_gsm.so. [1;30m > [0mRegistered translator '[0;35mgsmtolin[0m' from codec gsm to slin, table cost, 900000, computational cost 212 [1;30m > [0mRegistered translator '[0;35mlintogsm[0m' from codec slin to gsm, table cost, 600000, computational cost 593 [1;30m > [0mcodec_gsm.so => ([0;33mGSM Coder/Decoder[0m) [1;30m > [0mLoading func_uuid.so. [1;30m > [0mRegistered custom function '[1;36mUUID[0m' [1;30m > [0mfunc_uuid.so => ([0;33mUUID generation dialplan function[0m) [1;30m > [0mLoading app_followme.so. [1;30m > [0mRegistered application '[1;36mFollowMe[0m' [1;30m > [0mapp_followme.so => ([0;33mFind-Me/Follow-Me Application[0m) [1;30m > [0mLoading func_volume.so. [1;30m > [0mRegistered custom function '[1;36mVOLUME[0m' [1;30m > [0mfunc_volume.so => ([0;33mTechnology independent volume control[0m) [1;30m > [0mLoading app_userevent.so. [1;30m > [0mRegistered application '[1;36mUserEvent[0m' [1;30m > [0mapp_userevent.so => ([0;33mCustom User Event Application[0m) [1;30m > [0mLoading res_ari_asterisk.so. [1;30m > [0mres_ari_asterisk.so => ([0;33mRESTful API module - Asterisk resources[0m) [1;30m > [0mLoading func_realtime.so. [1;30m > [0mRegistered custom function '[1;36mREALTIME[0m' [1;30m > [0mRegistered custom function '[1;36mREALTIME_STORE[0m' [1;30m > [0mRegistered custom function '[1;36mREALTIME_DESTROY[0m' [1;30m > [0mRegistered custom function '[1;36mREALTIME_FIELD[0m' [1;30m > [0mRegistered custom function '[1;36mREALTIME_HASH[0m' [1;30m > [0mfunc_realtime.so => ([0;33mRead/Write/Store/Destroy values from a RealTime repository[0m) [1;30m > [0mLoading app_dumpchan.so. [1;30m > [0mRegistered application '[1;36mDumpChan[0m' [1;30m > [0mapp_dumpchan.so => ([0;33mDump Info About The Calling Channel[0m) [1;30m > [0mLoading func_dialgroup.so. [1;30m > [0mRegistered custom function '[1;36mDIALGROUP[0m' [1;30m > [0mfunc_dialgroup.so => ([0;33mDialgroup dialplan function[0m) [1;30m > [0mLoading func_groupcount.so. [1;30m > [0mRegistered custom function '[1;36mGROUP_COUNT[0m' [1;30m > [0mRegistered custom function '[1;36mGROUP_MATCH_COUNT[0m' [1;30m > [0mRegistered custom function '[1;36mGROUP_LIST[0m' [1;30m > [0mRegistered custom function '[1;36mGROUP[0m' [1;30m > [0mfunc_groupcount.so => ([0;33mChannel group dialplan functions[0m) [1;30m > [0mLoading func_periodic_hook.so. [1;30m > [0mRegistered custom function '[1;36mPERIODIC_HOOK[0m' [1;30m > [0mfunc_periodic_hook.so => ([0;33mPeriodic dialplan hooks.[0m) [1;30m > [0mLoading app_reload.so. [1;30m > [0mRegistered application '[1;36mReload[0m' [1;30m > [0mapp_reload.so => ([0;33mReload module(s)[0m) [1;30m > [0mLoading res_clioriginate.so. [1;30m > [0mres_clioriginate.so => ([0;33mCall origination and redirection from the CLI[0m) [1;30m > [0mLoading app_verbose.so. [1;30m > [0mRegistered application '[1;36mLog[0m' [1;30m > [0mRegistered application '[1;36mVerbose[0m' [1;30m > [0mapp_verbose.so => ([0;33mSend verbose output[0m) [1;30m > [0mLoading func_lock.so. [1;30m > [0mRegistered custom function '[1;36mLOCK[0m' [1;30m > [0mRegistered custom function '[1;36mTRYLOCK[0m' [1;30m > [0mRegistered custom function '[1;36mUNLOCK[0m' [1;30m > [0mfunc_lock.so => ([0;33mDialplan mutexes[0m) [1;30m > [0mLoading codec_g726.so. [1;30m > [0mRegistered translator '[0;35mg726tolin[0m' from codec g726 to slin, table cost, 900000, computational cost 246 [1;30m > [0mRegistered translator '[0;35mlintog726[0m' from codec slin to g726, table cost, 600000, computational cost 1013 [1;30m > [0mRegistered translator '[0;35mg726aal2tolin[0m' from codec g726aal2 to slin, table cost, 900000, computational cost 249 [1;30m > [0mRegistered translator '[0;35mlintog726aal2[0m' from codec slin to g726aal2, table cost, 600000, computational cost 1032 [1;30m > [0mcodec_g726.so => ([0;33mITU G.726-32kbps G726 Transcoder[0m) [1;30m > [0mLoading res_realtime.so. [1;30m > [0mres_realtime.so => ([0;33mRealtime Data Lookup/Rewrite[0m) [1;30m > [0mLoading app_originate.so. [1;30m > [0mRegistered application '[1;36mOriginate[0m' [1;30m > [0mapp_originate.so => ([0;33mOriginate call[0m) [1;30m > [0mLoading res_ael_share.so. [1;30m > [0mres_ael_share.so => ([0;33mshare-able code for AEL[0m) [1;30m > [0mLoading res_http_media_cache.so. [1;30m > [0mRegistered bucket scheme 'http' [1;30m > [0mRegistered bucket scheme 'https' [1;30m > [0mres_http_media_cache.so => ([0;33mHTTP Media Cache Backend[0m) [1;30m > [0mLoading res_format_attr_h263.so. [1;30m > [0mRegistered format interface for codec 'h263' [1;30m > [0mRegistered format interface for codec 'h263p' [1;30m > [0mres_format_attr_h263.so => ([0;33mH.263 Format Attribute Module[0m) [1;30m > [0mLoading app_authenticate.so. [1;30m > [0mRegistered application '[1;36mAuthenticate[0m' [1;30m > [0mapp_authenticate.so => ([0;33mAuthentication Application[0m) [1;30m > [0mLoading app_if.so. [1;30m > [0mRegistered application '[1;36mIf[0m' [1;30m > [0mRegistered application '[1;36mElseIf[0m' [1;30m > [0mRegistered application '[1;36mEndIf[0m' [1;30m > [0mRegistered application '[1;36mElse[0m' [1;30m > [0mRegistered application '[1;36mExitIf[0m' [1;30m > [0mapp_if.so => ([0;33mIf Branch and Conditional Execution[0m) [1;30m > [0mLoading app_sf.so. [1;30m > [0mRegistered application '[1;36mReceiveSF[0m' [1;30m > [0mRegistered application '[1;36mSendSF[0m' [1;30m > [0mapp_sf.so => ([0;33mSF Sender and Receiver Applications[0m) [1;30m > [0mLoading res_convert.so. [1;30m > [0mres_convert.so => ([0;33mFile format conversion CLI command[0m) [1;30m > [0mLoading app_dictate.so. [1;30m > [0mRegistered application '[1;36mDictate[0m' [1;30m > [0mapp_dictate.so => ([0;33mVirtual Dictation Machine[0m) [1;30m > [0mLoading pbx_config.so. [1;30m == [0mSetting global variable 'CONSOLE' to 'Console/dsp' [1;30m == [0mSetting global variable 'TRUNK' to 'DAHDI/G2' [1;30m == [0mSetting global variable 'TRUNKMSD' to '1' [1;30m -- [0mIncluding switch 'DUNDi/e164' in context 'dundi-e164-switch' [1;30m > [0mTime to scan old dialplan and merge leftovers back into the new: 0.000016 sec [1;30m > [0mTime to restore hints and swap in new dialplan: 0.000004 sec [1;30m > [0mTime to delete the old dialplan: 0.000005 sec [1;30m > [0mTotal time merge_contexts_delete: 0.000025 sec [1;30m > [0mpbx_config successfully loaded 2 contexts (enable debug for details). [1;30m > [0mManager registered action DialplanExtensionAdd [1;30m > [0mManager registered action DialplanExtensionRemove [1;30m > [0mpbx_config.so => ([0;33mText Extension Configuration[0m) [1;30m > [0mLoading func_export.so. [1;30m > [0mRegistered custom function '[1;36mEXPORT[0m' [1;30m > [0mfunc_export.so => ([0;33mSet variables and functions on other channels[0m) [1;30m > [0mLoading app_mf.so. [1;30m > [0mRegistered application '[1;36mReceiveMF[0m' [1;30m > [0mRegistered application '[1;36mSendMF[0m' [1;30m > [0mManager registered action PlayMF [1;30m > [0mapp_mf.so => ([0;33mMF Sender and Receiver Applications[0m) [1;30m > [0mLoading app_while.so. [1;30m > [0mRegistered application '[1;36mWhile[0m' [1;30m > [0mRegistered application '[1;36mEndWhile[0m' [1;30m > [0mRegistered application '[1;36mExitWhile[0m' [1;30m > [0mRegistered application '[1;36mContinueWhile[0m' [1;30m > [0mapp_while.so => ([0;33mWhile Loops and Conditional Execution[0m) [1;30m > [0mLoading app_amd.so. [1;30m > [0mAMD defaults: initialSilence [2500] greeting [1500] afterGreetingSilence [800] totalAnalysisTime [5000] minimumWordLength [100] betweenWordsSilence [50] maximumNumberOfWords [2] silenceThreshold [256] maximumWordLength [5000] [1;30m > [0mRegistered application '[1;36mAMD[0m' [1;30m > [0mapp_amd.so => ([0;33mAnswering Machine Detection Application[0m) [1;30m > [0mLoading app_exec.so. [1;30m > [0mRegistered application '[1;36mExec[0m' [1;30m > [0mRegistered application '[1;36mTryExec[0m' [1;30m > [0mRegistered application '[1;36mExecIf[0m' [1;30m > [0mapp_exec.so => ([0;33mExecutes dialplan applications[0m) [1;30m > [0mLoading func_callerid.so. [1;30m > [0mRegistered custom function '[1;36mCALLERID[0m' [1;30m > [0mRegistered custom function '[1;36mCONNECTEDLINE[0m' [1;30m > [0mRegistered custom function '[1;36mREDIRECTING[0m' [1;30m > [0mfunc_callerid.so => ([0;33mParty ID related dialplan functions (Caller-ID, Connected-line, Redirecting)[0m) [1;30m > [0mLoading func_aes.so. [1;30m > [0mRegistered custom function '[1;36mAES_DECRYPT[0m' [1;30m > [0mRegistered custom function '[1;36mAES_ENCRYPT[0m' [1;30m > [0mfunc_aes.so => ([0;33mAES dialplan functions[0m) [1;30m > [0mLoading bridge_holding.so. [1;30m > [0mRegistered bridge technology holding_bridge [1;30m > [0mbridge_holding.so => ([0;33mHolding bridge module[0m) [1;30m > [0mLoading app_channelredirect.so. [1;30m > [0mRegistered application '[1;36mChannelRedirect[0m' [1;30m > [0mapp_channelredirect.so => ([0;33mRedirects a given channel to a dialplan target[0m) [1;30m > [0mLoading func_sprintf.so. [1;30m > [0mRegistered custom function '[1;36mSPRINTF[0m' [1;30m > [0mfunc_sprintf.so => ([0;33mSPRINTF dialplan function[0m) [1;30m > [0mLoading codec_a_mu.so. [1;30m > [0mRegistered translator '[0;35malawtoulaw[0m' from codec alaw to ulaw, table cost, 915000, computational cost 13 [1;30m > [0mRegistered translator '[0;35mulawtoalaw[0m' from codec ulaw to alaw, table cost, 915000, computational cost 11 [1;30m > [0mcodec_a_mu.so => ([0;33mA-law and Mulaw direct Coder/Decoder[0m) [1;30m > [0mLoading app_disa.so. [1;30m > [0mRegistered application '[1;36mDISA[0m' [1;30m > [0mapp_disa.so => ([0;33mDISA (Direct Inward System Access) Application[0m) [1;30m > [0mLoading app_directed_pickup.so. [1;30m > [0mRegistered application '[1;36mPickup[0m' [1;30m > [0mRegistered application '[1;36mPickupChan[0m' [1;30m > [0mapp_directed_pickup.so => ([0;33mDirected Call Pickup Application[0m) [1;30m > [0mLoading res_mutestream.so. [1;30m > [0mRegistered custom function '[1;36mMUTEAUDIO[0m' [1;30m > [0mManager registered action MuteAudio [1;30m > [0mres_mutestream.so => ([0;33mMute audio stream resources[0m) [1;30m > [0mLoading res_ari_applications.so. [1;30m > [0mres_ari_applications.so => ([0;33mRESTful API module - Stasis application resources[0m) [1;30m > [0mLoading app_mixmonitor.so. [1;30m > [0mRegistered application '[1;36mMixMonitor[0m' [1;30m > [0mRegistered application '[1;36mStopMixMonitor[0m' [1;30m > [0mManager registered action MixMonitorMute [1;30m > [0mManager registered action MixMonitor [1;30m > [0mManager registered action StopMixMonitor [1;30m > [0mRegistered custom function '[1;36mMIXMONITOR[0m' [1;30m > [0mapp_mixmonitor.so => ([0;33mMixed Audio Monitoring Application[0m) [1;30m > [0mLoading app_forkcdr.so. [1;30m > [0mRegistered application '[1;36mForkCDR[0m' [1;30m > [0mapp_forkcdr.so => ([0;33mFork The CDR into 2 separate entities[0m) [1;30m > [0mLoading chan_bridge_media.so. [1;30m > [0mRegistered channel type 'Announcer' (Bridge Media Announcing Channel Driver) [1;30m > [0mRegistered channel type 'Recorder' (Bridge Media Recording Channel Driver) [1;30m > [0mchan_bridge_media.so => ([0;33mBridge Media Channel Driver[0m) [1;30m > [0mLoading app_sendtext.so. [1;30m > [0mRegistered application '[1;36mSendText[0m' [1;30m > [0mRegistered application '[1;36mReceiveText[0m' [1;30m > [0mapp_sendtext.so => ([0;33mSend and Receive Text Applications[0m) [1;30m > [0mLoading app_morsecode.so. [1;30m > [0mRegistered application '[1;36mMorsecode[0m' [1;30m > [0mapp_morsecode.so => ([0;33mMorse code[0m) [1;30m > [0mLoading codec_adpcm.so. [1;30m > [0mRegistered translator '[0;35madpcmtolin[0m' from codec adpcm to slin, table cost, 900000, computational cost 33 [1;30m > [0mRegistered translator '[0;35mlintoadpcm[0m' from codec slin to adpcm, table cost, 600000, computational cost 96 [1;30m > [0mcodec_adpcm.so => ([0;33mAdaptive Differential PCM Coder/Decoder[0m) [1;30m > [0mLoading func_vmcount.so. [1;30m > [0mRegistered custom function '[1;36mVMCOUNT[0m' [1;30m > [0mfunc_vmcount.so => ([0;33mIndicator for whether a voice mailbox has messages in a given folder.[0m) [1;30m > [0mLoading func_sayfiles.so. [1;30m > [0mRegistered custom function '[1;36mSAYFILES[0m' [1;30m > [0mfunc_sayfiles.so => ([0;33mSay application files[0m) [1;30m > [0mLoading pbx_dundi.so. [1;30m > [0mRegistered custom function '[1;36mDUNDILOOKUP[0m' [1;30m > [0mRegistered custom function '[1;36mDUNDIQUERY[0m' [1;30m > [0mRegistered custom function '[1;36mDUNDIRESULT[0m' [1;30m == [0mDUNDi Ready and Listening on 0.0.0.0:4520 [1;30m > [0mpbx_dundi.so => ([0;33mDistributed Universal Number Discovery (DUNDi)[0m) [1;30m > [0mLoading func_sha1.so. [1;30m > [0mRegistered custom function '[1;36mSHA1[0m' [1;30m > [0mfunc_sha1.so => ([0;33mSHA-1 computation dialplan function[0m) [1;30m > [0mLoading pbx_ael.so. [1;30m > [0mRegistered application '[1;36mAELSub[0m' [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mael/pval.c[0m:[1;37m2451[0m [1;37mcheck_pval_item[0m: Warning: file /etc/asterisk/extensions.ael, line 196-196: macro call to ael-dundi-e164 cannot be found in the AEL code! [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mael/pval.c[0m:[1;37m2451[0m [1;37mcheck_pval_item[0m: Warning: file /etc/asterisk/extensions.ael, line 209-209: macro call to ael-dundi-e164 cannot be found in the AEL code! [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mael/pval.c[0m:[1;37m2451[0m [1;37mcheck_pval_item[0m: Warning: file /etc/asterisk/extensions.ael, line 328-328: macro call to ael-std-exten-ael cannot be found in the AEL code! [1;30m == [0mSetting global variable 'CONSOLE-AEL' to '"Console/dsp"' [1;30m == [0mSetting global variable 'OUTBOUND-TRUNK' to '"Zap/g2"' [1;30m == [0mSetting global variable 'OUTBOUND-TRUNKMSD' to '1' [1;30m -- [0mIncluding switch 'DUNDi/e164' in context 'ael-dundi-e164-switch' [1;30m -- [0mIncluding switch 'DUNDi/e164' in context 'dundi-e164-switch' [1;30m > [0mTime to scan old dialplan and merge leftovers back into the new: 0.000314 sec [1;30m > [0mTime to restore hints and swap in new dialplan: 0.000003 sec [1;30m > [0mTime to delete the old dialplan: 0.000025 sec [1;30m > [0mTotal time merge_contexts_delete: 0.000342 sec [1;30m > [0mpbx_ael successfully loaded 31 contexts (enable debug for details). [1;30m > [0mpbx_ael.so => ([0;33mAsterisk Extension Language Compiler[0m) [1;30m > [0mLoading pbx_loopback.so. [1;30m > [0mpbx_loopback.so => ([0;33mLoopback Switch[0m) [1;30m > [0mLoading app_read.so. [1;30m > [0mRegistered application '[1;36mRead[0m' [1;30m > [0mapp_read.so => ([0;33mRead Variable Application[0m) [1;30m > [0mLoading func_iconv.so. [1;30m > [0mRegistered custom function '[1;36mICONV[0m' [1;30m > [0mfunc_iconv.so => ([0;33mCharset conversions[0m) [1;30m > [0mLoading res_clialiases.so. [1;30m > [0mAliased CLI command 'hangup request' to 'channel request hangup' [1;30m > [0mAliased CLI command 'originate' to 'channel originate' [1;30m > [0mAliased CLI command 'help' to 'core show help' [1;30m > [0mAliased CLI command 'pri intense debug span' to 'pri set debug intense span' [1;30m > [0mAliased CLI command 'reload' to 'module reload' [1;30m > [0mAliased CLI command 'pjsip reload' to 'module reload res_pjsip.so res_pjsip_authenticator_digest.so res_pjsip_endpoint_identifier_ip.so res_pjsip_mwi.so res_pjsip_notify.so res_pjsip_outbound_publish.so res_pjsip_publish_asterisk.so res_pjsip_outbound_registration.so' [1;30m > [0mres_clialiases.so => ([0;33mCLI Aliases[0m) [1;30m > [0mLoading app_adsiprog.so. [1;30m > [0mRegistered application '[1;36mADSIProg[0m' [1;30m > [0mapp_adsiprog.so => ([0;33mAsterisk ADSI Programming Application[0m) [1;30m > [0mLoading bridge_simple.so. [1;30m > [0mRegistered bridge technology simple_bridge [1;30m > [0mbridge_simple.so => ([0;33mSimple two channel bridging module[0m) [1;30m > [0mLoading bridge_builtin_features.so. [1;30m > [0mbridge_builtin_features.so => ([0;33mBuilt in bridging features[0m) [1;30m > [0mLoading app_celgenuserevent.so. [1;30m > [0mRegistered application '[1;36mCELGenUserEvent[0m' [1;30m > [0mapp_celgenuserevent.so => ([0;33mGenerate an User-Defined CEL event[0m) [1;30m > [0mLoading res_ari_endpoints.so. [1;30m > [0mres_ari_endpoints.so => ([0;33mRESTful API module - Endpoint resources[0m) [1;30m > [0mLoading res_ari_recordings.so. [1;30m > [0mres_ari_recordings.so => ([0;33mRESTful API module - Recording resources[0m) [1;30m > [0mLoading res_stasis_answer.so. [1;30m > [0mres_stasis_answer.so => ([0;33mStasis application answer support[0m) [1;30m > [0mLoading func_odbc.so. [1;30m > [0mRegistered custom function '[1;36mODBC_FETCH[0m' [1;30m > [0mRegistered application '[1;36mODBCFinish[0m' [1;30m > [0mRegistered custom function '[1;36mODBC_SQL[0m' [1;30m > [0mRegistered custom function '[1;36mODBC_ANTISOLICIT[0m' [1;30m > [0mRegistered custom function '[1;36mODBC_PRESENCE[0m' [1;30m > [0mRegistered custom function '[1;36mSQL_ESC[0m' [1;30m > [0mRegistered custom function '[1;36mSQL_ESC_BACKSLASHES[0m' [1;30m > [0mfunc_odbc.so => ([0;33mODBC lookups[0m) [1;30m > [0mLoading res_stasis_device_state.so. [1;30m > [0mres_stasis_device_state.so => ([0;33mStasis application device state support[0m) [1;30m > [0mLoading res_ari_device_states.so. [1;30m > [0mres_ari_device_states.so => ([0;33mRESTful API module - Device state resources[0m) [1;30m > [0mLoading res_ari_events.so. [1;30m > [0mWebSocket registered sub-protocol 'ari' [1;30m > [0mres_ari_events.so => ([0;33mRESTful API module - WebSocket resource[0m) [1;30m > [0mLoading res_ari_sounds.so. [1;30m > [0mres_ari_sounds.so => ([0;33mRESTful API module - Sound resources[0m) [1;30m > [0mLoading res_stasis_playback.so. [1;30m > [0mres_stasis_playback.so => ([0;33mStasis application playback support[0m) [1;30m > [0mLoading res_ari_playbacks.so. [1;30m > [0mres_ari_playbacks.so => ([0;33mRESTful API module - Playback control resources[0m) [1;30m > [0mLoading res_prometheus.so. [1;30m > [0mres_prometheus.so => ([0;33mAsterisk Prometheus Module[0m) [1;30m > [0mLoading func_pjsip_aor.so. [1;30m > [0mRegistered custom function '[1;36mPJSIP_AOR[0m' [1;30m > [0mfunc_pjsip_aor.so => ([0;33mGet information about a PJSIP AOR[0m) [1;30m > [0mLoading res_ari_channels.so. [1;30m > [0mres_ari_channels.so => ([0;33mRESTful API module - Channel resources[0m) [1;30m > [0mLoading res_pjsip_endpoint_identifier_anonymous.so. [1;30m > [0mres_pjsip_endpoint_identifier_anonymous.so => ([0;33mPJSIP Anonymous endpoint identifier[0m) [1;30m > [0mLoading res_ari_bridges.so. [1;30m > [0mres_ari_bridges.so => ([0;33mRESTful API module - Bridge resources[0m) [1;30m > [0mLoading func_pjsip_contact.so. [1;30m > [0mRegistered custom function '[1;36mPJSIP_CONTACT[0m' [1;30m > [0mfunc_pjsip_contact.so => ([0;33mGet information about a PJSIP contact[0m) [1;30m > [0mLoading func_pjsip_endpoint.so. [1;30m > [0mRegistered custom function '[1;36mPJSIP_ENDPOINT[0m' [1;30m > [0mfunc_pjsip_endpoint.so => ([0;33mGet information about a PJSIP endpoint[0m) [1;30m > [0mLoading res_manager_presencestate.so. [1;30m > [0mManager registered action PresenceStateList [1;30m > [0mres_manager_presencestate.so => ([0;33mManager Presence State Topic Forwarder[0m) [1;30m > [0mLoading app_queue.so. [1;30m > [0mRegistered application '[1;36mQueue[0m' [1;30m > [0mRegistered application '[1;36mAddQueueMember[0m' [1;30m > [0mRegistered application '[1;36mRemoveQueueMember[0m' [1;30m > [0mRegistered application '[1;36mPauseQueueMember[0m' [1;30m > [0mRegistered application '[1;36mUnpauseQueueMember[0m' [1;30m > [0mRegistered application '[1;36mQueueLog[0m' [1;30m > [0mRegistered application '[1;36mQueueUpdate[0m' [1;30m > [0mManager registered action QueueStatus [1;30m > [0mManager registered action QueueSummary [1;30m > [0mManager registered action QueueAdd [1;30m > [0mManager registered action QueueRemove [1;30m > [0mManager registered action QueuePause [1;30m > [0mManager registered action QueueLog [1;30m > [0mManager registered action QueuePenalty [1;30m > [0mManager registered action QueueMemberRingInUse [1;30m > [0mManager registered action QueueRule [1;30m > [0mManager registered action QueueReload [1;30m > [0mManager registered action QueueReset [1;30m > [0mManager registered action QueueChangePriorityCaller [1;30m > [0mManager registered action QueueWithdrawCaller [1;30m > [0mRegistered custom function '[1;36mQUEUE_VARIABLES[0m' [1;30m > [0mRegistered custom function '[1;36mQUEUE_EXISTS[0m' [1;30m > [0mRegistered custom function '[1;36mQUEUE_MEMBER[0m' [1;30m > [0mRegistered custom function '[1;36mQUEUE_MEMBER_COUNT[0m' [1;30m > [0mRegistered custom function '[1;36mQUEUE_MEMBER_LIST[0m' [1;30m > [0mRegistered custom function '[1;36mQUEUE_GET_CHANNEL[0m' [1;30m > [0mRegistered custom function '[1;36mQUEUE_WAITING_COUNT[0m' [1;30m > [0mRegistered custom function '[1;36mQUEUE_MEMBER_PENALTY[0m' [1;30m > [0mapp_queue.so => ([0;33mTrue Call Queueing[0m) [1;30m > [0mLoading res_manager_devicestate.so. [1;30m > [0mManager registered action DeviceStateList [1;30m > [0mres_manager_devicestate.so => ([0;33mManager Device State Topic Forwarder[0m) [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mloader.c[0m:[1;37m2566[0m [1;37mload_modules[0m: Some non-required modules failed to load. [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mloader.c[0m:[1;37m2660[0m [1;37mload_modules[0m: Module 'res_adsi' has been loaded but may be removed in a future release. [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mloader.c[0m:[1;37m2660[0m [1;37mload_modules[0m: Module 'app_getcpeid' has been loaded but may be removed in a future release. [Feb 12 18:12:16] [1;31mWARNING[0m[7]: [1;37mloader.c[0m:[1;37m2660[0m [1;37mload_modules[0m: Module 'app_adsiprog' has been loaded but may be removed in a future release. [Feb 12 18:12:16] [1;31mERROR[0m[7]: [1;37mloader.c[0m:[1;37m2681[0m [1;37mload_modules[0m: cdr_sqlite3_custom declined to load. [Feb 12 18:12:16] [1;31mERROR[0m[7]: [1;37mloader.c[0m:[1;37m2681[0m [1;37mload_modules[0m: cel_sqlite3_custom declined to load. [Feb 12 18:12:16] [1;31mWARNING[0m[13]: [1;37mpbx_config.c[0m:[1;37m2003[0m [1;37mstartup_event_cb[0m: users.conf is deprecated and will be removed in a future version of Asterisk [1;32mAsterisk Ready.[0m [1;30m == [0mEndpoint rabbit is now Reachable [1;30m -- [0mAdded contact 'sip:rabbit@91.122.37.167:61465;transport=TCP;rinstance=240382f63c4afd39;x-ast-orig-host=172.24.106.63:60096' to AOR 'rabbit' with expiration of 600 seconds [1;30m -- [0mRemoved contact 'sip:rabbit@91.122.37.167:61465;transport=TCP;rinstance=240382f63c4afd39;x-ast-orig-host=172.24.106.63:60096' from AOR 'rabbit' due to request [1;30m == [0mContact rabbit/sip:rabbit@91.122.37.167:61465;transport=TCP;rinstance=240382f63c4afd39;x-ast-orig-host=172.24.106.63:60096 has been deleted [1;30m == [0mEndpoint rabbit is now Unreachable [1;30m == [0mEndpoint rabbit is now Reachable [1;30m -- [0mAdded contact 'sip:rabbit@91.122.37.167:61465;transport=TCP;rinstance=9930e653c6bffd17' to AOR 'rabbit' with expiration of 600 seconds [1;30m == [0mEndpoint morpheus is now Reachable [1;30m -- [0mAdded contact 'sip:morpheus@91.122.37.167:60224' to AOR 'morpheus' with expiration of 3600 seconds [1;30m == [0mEndpoint neo is now Reachable [1;30m -- [0mAdded contact 'sip:neo@176.15.165.103:18674' to AOR 'neo' with expiration of 3600 seconds [Feb 12 18:12:41] [1;31mERROR[0m[33]: [1;37mpjproject[0m:[1;37m[0m [1;37m<?>[0m: ssl0x63cfe8d50b80 Error reading CA certificates from buffer [1;30m -- [0mAdded contact 'sip:neo@176.15.165.103:20736;transport=TLS;rinstance=444bbfda085993cc;x-ast-orig-host=13.160.171.146:45824' to AOR 'neo' with expiration of 600 seconds [1;30m == [0mContact neo/sip:neo@176.15.165.103:20736;transport=TLS;rinstance=444bbfda085993cc;x-ast-orig-host=13.160.171.146:45824 has been deleted [1;30m -- [0mRemoved contact 'sip:neo@176.15.165.103:20736;transport=TLS;rinstance=444bbfda085993cc;x-ast-orig-host=13.160.171.146:45824' from AOR 'neo' due to request [1;30m -- [0mAdded contact 'sip:neo@176.15.165.103:20736;transport=TLS;rinstance=ba0d0c16fb6f2300' to AOR 'neo' with expiration of 600 seconds [1;30m -- [0mRemote UNIX connection [1;30m -- [0mRemote UNIX connection disconnected <--- Received SIP request (1212 bytes) from UDP:176.15.165.103:18674 ---> INVITE sip:1002@developernote.com SIP/2.0 Via: SIP/2.0/UDP 176.15.165.103:18674;branch=z9hG4bK.NLhJfmBc3;rport From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: sip:1002@developernote.com CSeq: 20 INVITE Call-ID: PXeZzpFDaX Max-Forwards: 70 Supported: replaces, outbound, gruu, path, record-aware Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE Content-Type: application/sdp Content-Length: 550 Contact: <sip:neo@176.15.165.103:18674;transport=udp>;expires=3599;+org.linphone.specs="lime" User-Agent: LinphoneAndroid/5.2.5 (A54 пользователя Dmitry) LinphoneSDK/5.3.47 (tags/5.3.47^0) v=0 o=neo 2582 2686 IN IP4 176.15.165.103 s=Talk c=IN IP4 176.15.165.103 t=0 0 a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics a=record:off m=audio 41044 RTP/AVP 96 97 98 0 8 18 101 99 100 a=rtpmap:96 opus/48000/2 a=fmtp:96 useinbandfec=1 a=rtpmap:97 speex/16000 a=fmtp:97 vbr=on a=rtpmap:98 speex/8000 a=fmtp:98 vbr=on a=fmtp:18 annexb=yes a=rtpmap:101 telephone-event/48000 a=rtpmap:99 telephone-event/16000 a=rtpmap:100 telephone-event/8000 a=rtcp:55881 a=rtcp-fb:* trr-int 1000 a=rtcp-fb:* ccm tmmbr <--- Transmitting SIP response (466 bytes) to UDP:176.15.165.103:18674 ---> SIP/2.0 401 Unauthorized Via: SIP/2.0/UDP 176.15.165.103:18674;rport=18674;received=176.15.165.103;branch=z9hG4bK.NLhJfmBc3 Call-ID: PXeZzpFDaX From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: <sip:1002@developernote.com>;tag=z9hG4bK.NLhJfmBc3 CSeq: 20 INVITE WWW-Authenticate: Digest realm="asterisk",nonce="1739384253/7bafac7a4af3d95f34586c6381746f6a",opaque="11170fa5091d8ad5",algorithm=MD5,qop="auth" Server: Asterisk PBX 22.2.0 Content-Length: 0 <--- Received SIP request (365 bytes) from UDP:176.15.165.103:18674 ---> ACK sip:1002@developernote.com SIP/2.0 Via: SIP/2.0/UDP 176.15.165.103:18674;branch=z9hG4bK.NLhJfmBc3;rport Call-ID: PXeZzpFDaX From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: <sip:1002@developernote.com>;tag=z9hG4bK.NLhJfmBc3 Contact: <sip:neo@176.15.165.103:18674;transport=udp>;expires=3599;+org.linphone.specs="lime" Max-Forwards: 70 CSeq: 20 ACK <--- Received SIP request (1494 bytes) from UDP:176.15.165.103:18674 ---> INVITE sip:1002@developernote.com SIP/2.0 Via: SIP/2.0/UDP 13.160.171.146:49167;branch=z9hG4bK.IZP6-XtmN;rport From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: sip:1002@developernote.com CSeq: 21 INVITE Call-ID: PXeZzpFDaX Max-Forwards: 70 Supported: replaces, outbound, gruu, path, record-aware Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE Content-Type: application/sdp Content-Length: 550 Contact: <sip:neo@13.160.171.146:49167;transport=udp>;expires=3599;+org.linphone.specs="lime" User-Agent: LinphoneAndroid/5.2.5 (A54 пользователя Dmitry) LinphoneSDK/5.3.47 (tags/5.3.47^0) Authorization: Digest realm="asterisk", nonce="1739384253/7bafac7a4af3d95f34586c6381746f6a", algorithm=MD5, opaque="11170fa5091d8ad5", username="neo", uri="sip:1002@developernote.com", response="4e4d3e03995aed4f384f67c21776b856", cnonce="0fS0zQOsbD6cJafQ", nc=00000001, qop=auth v=0 o=neo 2582 2686 IN IP4 13.160.171.146 s=Talk c=IN IP4 13.160.171.146 t=0 0 a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics a=record:off m=audio 41342 RTP/AVP 96 97 98 0 8 18 101 99 100 a=rtpmap:96 opus/48000/2 a=fmtp:96 useinbandfec=1 a=rtpmap:97 speex/16000 a=fmtp:97 vbr=on a=rtpmap:98 speex/8000 a=fmtp:98 vbr=on a=fmtp:18 annexb=yes a=rtpmap:101 telephone-event/48000 a=rtpmap:99 telephone-event/16000 a=rtpmap:100 telephone-event/8000 a=rtcp:55881 a=rtcp-fb:* trr-int 1000 a=rtcp-fb:* ccm tmmbr <--- Transmitting SIP response (292 bytes) to UDP:176.15.165.103:18674 ---> SIP/2.0 100 Trying Via: SIP/2.0/UDP 13.160.171.146:49167;rport=18674;received=176.15.165.103;branch=z9hG4bK.IZP6-XtmN Call-ID: PXeZzpFDaX From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: <sip:1002@developernote.com> CSeq: 21 INVITE Server: Asterisk PBX 22.2.0 Content-Length: 0 [1;30m -- [0mExecuting [1002@office-phones:1] [1;36mDial[0m("[1;35mPJSIP/neo-00000000[0m", "[1;35mPJSIP/morpheus[0m") in new stack [1;30m -- [0mCalled PJSIP/morpheus <--- Transmitting SIP request (1279 bytes) to UDP:91.122.37.167:60224 ---> INVITE sip:morpheus@91.122.37.167:60224 SIP/2.0 Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj247f6390-063d-438c-9ee4-0e81cb80755e From: <sip:neo@172.17.0.3>;tag=18358382-e503-4610-a9f5-c6fcc2dee0ea To: <sip:morpheus@91.122.37.167> Contact: <sip:asterisk@172.236.29.157:5060> Call-ID: c324c862-ddd6-432b-9cde-aaa1dd667b9e CSeq: 3415 INVITE Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, INFO, REFER Supported: 100rel, timer, replaces, norefersub, histinfo Session-Expires: 1800 Min-SE: 90 Max-Forwards: 70 User-Agent: Asterisk PBX 22.2.0 Content-Type: application/sdp Content-Length: 602 v=0 o=- 2065987719 2065987719 IN IP4 172.236.29.157 s=Asterisk c=IN IP4 172.236.29.157 t=0 0 m=audio 10046 RTP/AVP 0 18 97 3 4 101 a=ice-ufrag:175c759e6e9932f51f8c7f4576226825 a=ice-pwd:3b00688e76c30a3176fff5ee72840716 a=candidate:Hac110003 1 UDP 2130706431 172.17.0.3 10046 typ host a=candidate:Hac110003 2 UDP 2130706430 172.17.0.3 10047 typ host a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=fmtp:18 annexb=no a=rtpmap:97 iLBC/8000 a=fmtp:97 mode=20 a=rtpmap:3 GSM/8000 a=rtpmap:4 G723/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=ptime:20 a=maxptime:140 a=sendrecv <--- Received SIP response (292 bytes) from UDP:91.122.37.167:60224 ---> SIP/2.0 100 Trying Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj247f6390-063d-438c-9ee4-0e81cb80755e From: <sip:neo@172.17.0.3>;tag=18358382-e503-4610-a9f5-c6fcc2dee0ea To: sip:morpheus@91.122.37.167:60224 Call-ID: c324c862-ddd6-432b-9cde-aaa1dd667b9e CSeq: 3415 INVITE <--- Received SIP response (479 bytes) from UDP:91.122.37.167:60224 ---> SIP/2.0 180 Ringing Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj247f6390-063d-438c-9ee4-0e81cb80755e From: <sip:neo@172.17.0.3>;tag=18358382-e503-4610-a9f5-c6fcc2dee0ea To: <sip:morpheus@91.122.37.167:60224>;tag=8BJgU-H Call-ID: c324c862-ddd6-432b-9cde-aaa1dd667b9e CSeq: 3415 INVITE User-Agent: Linphone-Desktop/5.2.6 (6f734bd0-54ba-4970-a73f-452bb5e8f241) windows/10 Qt/5.15.2 LinphoneSDK/5.3.72 Supported: replaces, outbound, gruu, path, record-aware [1;30m -- [0mPJSIP/morpheus-00000001 is ringing <--- Transmitting SIP response (487 bytes) to UDP:176.15.165.103:18674 ---> SIP/2.0 180 Ringing Via: SIP/2.0/UDP 13.160.171.146:49167;rport=18674;received=176.15.165.103;branch=z9hG4bK.IZP6-XtmN Call-ID: PXeZzpFDaX From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: <sip:1002@developernote.com>;tag=2e396dfd-3fca-4778-8030-ea71a391f771 CSeq: 21 INVITE Server: Asterisk PBX 22.2.0 Contact: <sip:172.236.29.157:5060> Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, INFO, REFER Content-Length: 0 <--- Received SIP response (875 bytes) from UDP:91.122.37.167:60224 ---> SIP/2.0 200 Ok Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj247f6390-063d-438c-9ee4-0e81cb80755e From: <sip:neo@172.17.0.3>;tag=18358382-e503-4610-a9f5-c6fcc2dee0ea To: <sip:morpheus@91.122.37.167:60224>;tag=8BJgU-H Call-ID: c324c862-ddd6-432b-9cde-aaa1dd667b9e CSeq: 3415 INVITE User-Agent: Linphone-Desktop/5.2.6 (6f734bd0-54ba-4970-a73f-452bb5e8f241) windows/10 Qt/5.15.2 LinphoneSDK/5.3.72 Supported: replaces, outbound, gruu, path, record-aware Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE Contact: <sip:91.122.37.167:60224;transport=udp>;+org.linphone.specs="lime" Content-Type: application/sdp Content-Length: 174 v=0 o=morpheus 87 3455 IN IP4 172.28.33.149 s=Talk c=IN IP4 172.28.33.149 t=0 0 m=audio 58554 RTP/AVP 0 18 101 a=fmtp:18 annexb=yes a=rtpmap:101 telephone-event/8000 [1;30m > [0m0x7e1a20037340 -- Strict RTP learning after remote address set to: 172.28.33.149:58554 <--- Transmitting SIP request (385 bytes) to UDP:91.122.37.167:60224 ---> ACK sip:91.122.37.167:60224 SIP/2.0 Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj4d8c2e9f-42b6-4a3f-96d9-ea20982f684c From: <sip:neo@172.17.0.3>;tag=18358382-e503-4610-a9f5-c6fcc2dee0ea To: <sip:morpheus@91.122.37.167>;tag=8BJgU-H Call-ID: c324c862-ddd6-432b-9cde-aaa1dd667b9e CSeq: 3415 ACK Max-Forwards: 70 User-Agent: Asterisk PBX 22.2.0 Content-Length: 0 [1;30m -- [0mPJSIP/morpheus-00000001 answered PJSIP/neo-00000000 [1;30m > [0m0x7e1a2001fe40 -- Strict RTP learning after remote address set to: 13.160.171.146:41342 <--- Transmitting SIP response (840 bytes) to UDP:176.15.165.103:18674 ---> SIP/2.0 200 OK Via: SIP/2.0/UDP 13.160.171.146:49167;rport=18674;received=176.15.165.103;branch=z9hG4bK.IZP6-XtmN Call-ID: PXeZzpFDaX From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: <sip:1002@developernote.com>;tag=2e396dfd-3fca-4778-8030-ea71a391f771 CSeq: 21 INVITE Server: Asterisk PBX 22.2.0 Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, INFO, REFER Contact: <sip:172.236.29.157:5060> Supported: 100rel, timer, replaces, norefersub Content-Type: application/sdp Content-Length: 276 v=0 o=- 2582 2688 IN IP4 172.236.29.157 s=Asterisk c=IN IP4 172.236.29.157 t=0 0 m=audio 10018 RTP/AVP 0 18 100 a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=fmtp:18 annexb=no a=ptime:20 a=maxptime:140 a=sendrecv a=rtpmap:100 telephone-event/8000 a=fmtp:100 0-16 [1;30m -- [0mChannel PJSIP/morpheus-00000001 joined 'simple_bridge' basic-bridge <fdef8153-b11f-4960-9cda-3bc7b9797a27> [1;30m -- [0mChannel PJSIP/neo-00000000 joined 'simple_bridge' basic-bridge <fdef8153-b11f-4960-9cda-3bc7b9797a27> [1;30m > [0mBridge fdef8153-b11f-4960-9cda-3bc7b9797a27: switching from simple_bridge technology to native_rtp [1;30m > [0mLocally RTP bridged 'PJSIP/neo-00000000' and 'PJSIP/morpheus-00000001' in stack [Feb 12 18:17:42] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:42] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [1;30m > [0m0x7e1a20037340 -- Strict RTP qualifying stream type: audio [Feb 12 18:17:42] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:42] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [1;30m > [0m0x7e1a20037340 -- Strict RTP switching source address to 91.122.37.167:60248 [1;30m > [0m0x7e1a2001fe40 -- Strict RTP qualifying stream type: audio <--- Received SIP request (676 bytes) from UDP:176.15.165.103:18674 ---> ACK sip:172.236.29.157:5060 SIP/2.0 Via: SIP/2.0/UDP 176.15.165.103:18674;rport;branch=z9hG4bK.0~5GUt5bI From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: <sip:1002@developernote.com>;tag=2e396dfd-3fca-4778-8030-ea71a391f771 CSeq: 21 ACK Call-ID: PXeZzpFDaX Max-Forwards: 70 Authorization: Digest realm="asterisk", nonce="1739384253/7bafac7a4af3d95f34586c6381746f6a", algorithm=MD5, opaque="11170fa5091d8ad5", username="neo", uri="sip:1002@developernote.com", response="4e4d3e03995aed4f384f67c21776b856", cnonce="0fS0zQOsbD6cJafQ", nc=00000001, qop=auth User-Agent: LinphoneAndroid/5.2.5 (A54 пользователя Dmitry) LinphoneSDK/5.3.47 (tags/5.3.47^0) [1;30m > [0m0x7e1a2001fe40 -- Strict RTP switching source address to 176.15.165.103:41044 [Feb 12 18:17:42] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:43] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:43] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:44] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:44] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:45] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:45] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:17:46] [1;31mWARNING[0m[95][C-00000001]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. <--- Received SIP request (673 bytes) from UDP:176.15.165.103:18674 ---> BYE sip:172.236.29.157:5060 SIP/2.0 Via: SIP/2.0/UDP 176.15.165.103:18674;branch=z9hG4bK.wO0y~HNmb;rport From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: <sip:1002@developernote.com>;tag=2e396dfd-3fca-4778-8030-ea71a391f771 CSeq: 22 BYE Call-ID: PXeZzpFDaX Max-Forwards: 70 User-Agent: LinphoneAndroid/5.2.5 (A54 пользователя Dmitry) LinphoneSDK/5.3.47 (tags/5.3.47^0) Authorization: Digest realm="asterisk", nonce="1739384253/7bafac7a4af3d95f34586c6381746f6a", algorithm=MD5, opaque="11170fa5091d8ad5", username="neo", uri="sip:172.236.29.157:5060", response="310474f1f06f7ade25c8a5e2908364c1", cnonce="R0j8e~D0BdQDBC5E", nc=00000002, qop=auth <--- Transmitting SIP response (326 bytes) to UDP:176.15.165.103:18674 ---> SIP/2.0 200 OK Via: SIP/2.0/UDP 176.15.165.103:18674;rport=18674;received=176.15.165.103;branch=z9hG4bK.wO0y~HNmb Call-ID: PXeZzpFDaX From: <sip:neo@developernote.com>;tag=yDD-CMsyB To: <sip:1002@developernote.com>;tag=2e396dfd-3fca-4778-8030-ea71a391f771 CSeq: 22 BYE Server: Asterisk PBX 22.2.0 Content-Length: 0 [1;30m -- [0mChannel PJSIP/neo-00000000 left 'native_rtp' basic-bridge <fdef8153-b11f-4960-9cda-3bc7b9797a27> [1;30m -- [0mChannel PJSIP/morpheus-00000001 left 'native_rtp' basic-bridge <fdef8153-b11f-4960-9cda-3bc7b9797a27> [1;30m == [0mSpawn extension (office-phones, 1002, 1) exited non-zero on 'PJSIP/neo-00000000' <--- Transmitting SIP request (409 bytes) to UDP:91.122.37.167:60224 ---> BYE sip:91.122.37.167:60224 SIP/2.0 Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj18e10beb-12ef-4da7-bedd-1b8a64790fad From: <sip:neo@172.17.0.3>;tag=18358382-e503-4610-a9f5-c6fcc2dee0ea To: <sip:morpheus@91.122.37.167>;tag=8BJgU-H Call-ID: c324c862-ddd6-432b-9cde-aaa1dd667b9e CSeq: 3416 BYE Reason: Q.850;cause=16 Max-Forwards: 70 User-Agent: Asterisk PBX 22.2.0 Content-Length: 0 <--- Received SIP response (471 bytes) from UDP:91.122.37.167:60224 ---> SIP/2.0 200 Ok Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj18e10beb-12ef-4da7-bedd-1b8a64790fad From: <sip:neo@172.17.0.3>;tag=18358382-e503-4610-a9f5-c6fcc2dee0ea To: <sip:morpheus@91.122.37.167:60224>;tag=8BJgU-H Call-ID: c324c862-ddd6-432b-9cde-aaa1dd667b9e CSeq: 3416 BYE User-Agent: Linphone-Desktop/5.2.6 (6f734bd0-54ba-4970-a73f-452bb5e8f241) windows/10 Qt/5.15.2 LinphoneSDK/5.3.72 Supported: replaces, outbound, gruu, path, record-aware |
When I call in the reverse direction from client A(1002) to client C (1001) the client C does not accept the call:
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 | <--- Received SIP request (1202 bytes) from UDP:91.122.37.167:60224 ---> INVITE sip:1001@developernote.com SIP/2.0 Via: SIP/2.0/UDP 172.28.33.149:5060;branch=z9hG4bK.oToGYJ3yg;rport From: <sip:morpheus@developernote.com>;tag=tpOU6t7m3 To: sip:1001@developernote.com CSeq: 20 INVITE Call-ID: ~YSoeIdCOX Max-Forwards: 70 Supported: replaces, outbound, gruu, path, record-aware Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE Content-Type: application/sdp Content-Length: 539 Contact: <sip:morpheus@91.122.37.167:60224;transport=udp>;+org.linphone.specs="lime" User-Agent: Linphone-Desktop/5.2.6 (6f734bd0-54ba-4970-a73f-452bb5e8f241) windows/10 Qt/5.15.2 LinphoneSDK/5.3.72 v=0 o=morpheus 1747 1089 IN IP4 172.28.33.149 s=Talk c=IN IP4 172.28.33.149 t=0 0 a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics a=record:off m=audio 51886 RTP/AVP 96 97 98 0 8 18 101 99 100 a=rtpmap:96 opus/48000/2 a=fmtp:96 useinbandfec=1 a=rtpmap:97 speex/16000 a=fmtp:97 vbr=on a=rtpmap:98 speex/8000 a=fmtp:98 vbr=on a=fmtp:18 annexb=yes a=rtpmap:101 telephone-event/48000 a=rtpmap:99 telephone-event/16000 a=rtpmap:100 telephone-event/8000 a=rtcp-fb:* trr-int 1000 a=rtcp-fb:* ccm tmmbr <--- Transmitting SIP response (468 bytes) to UDP:91.122.37.167:60224 ---> SIP/2.0 401 Unauthorized Via: SIP/2.0/UDP 172.28.33.149:5060;rport=60224;received=91.122.37.167;branch=z9hG4bK.oToGYJ3yg Call-ID: ~YSoeIdCOX From: <sip:morpheus@developernote.com>;tag=tpOU6t7m3 To: <sip:1001@developernote.com>;tag=z9hG4bK.oToGYJ3yg CSeq: 20 INVITE WWW-Authenticate: Digest realm="asterisk",nonce="1739385758/30b4ee26aa7347d97a82879e410717be",opaque="54d9b6794678f7fe",algorithm=MD5,qop="auth" Server: Asterisk PBX 22.2.0 Content-Length: 0 <--- Received SIP request (359 bytes) from UDP:91.122.37.167:60224 ---> ACK sip:1001@developernote.com SIP/2.0 Via: SIP/2.0/UDP 172.28.33.149:5060;branch=z9hG4bK.oToGYJ3yg;rport Call-ID: ~YSoeIdCOX From: <sip:morpheus@developernote.com>;tag=tpOU6t7m3 To: <sip:1001@developernote.com>;tag=z9hG4bK.oToGYJ3yg Contact: <sip:morpheus@91.122.37.167:60224;transport=udp>;+org.linphone.specs="lime" Max-Forwards: 70 CSeq: 20 ACK |
The screenshot of the client:

A call from client B (1003) to client C (1003):
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 | <--- Received SIP request (1006 bytes) from TLS:176.15.165.103:20736 ---> REGISTER sip:developernote.com;transport=TLS SIP/2.0 Via: SIP/2.0/TLS 13.160.171.146:45824;branch=z9hG4bK-524287-1---ab1344a2c2a4a659;rport Max-Forwards: 70 Contact: <sip:neo@176.15.165.103:20736;transport=TLS;rinstance=ba0d0c16fb6f2300> To: <sip:neo@developernote.com;transport=TLS> From: <sip:neo@developernote.com;transport=TLS>;tag=42d23249 Call-ID: 1Wu7Cwdtv2bDWIuY4AUUNw.. CSeq: 9 REGISTER Expires: 600 Allow: INVITE, ACK, CANCEL, BYE, NOTIFY, REFER, MESSAGE, OPTIONS, INFO, SUBSCRIBE Supported: replaces, norefersub, extended-refer, timer, sec-agree, outbound, path, X-cisco-serviceuri User-Agent: Zoiper v2.10.20.5 Authorization: Digest username="neo",realm="asterisk",nonce="1739385579/f2e274bd6903b1f48c97dfdbe32ffedd",uri="sip:developernote.com;transport=TLS",response="e5eca8c203dfa45eb95b9a71c040874a",cnonce="cfaffa3fc9ce86baf2707a553a497560",nc=00000002,qop=auth,algorithm=MD5,opaque="72205bbc7c17d4ec" Allow-Events: presence, kpml, talk, as-feature-event Content-Length: 0 <--- Transmitting SIP response (526 bytes) to TLS:176.15.165.103:20736 ---> SIP/2.0 401 Unauthorized Via: SIP/2.0/TLS 13.160.171.146:45824;rport=20736;received=176.15.165.103;branch=z9hG4bK-524287-1---ab1344a2c2a4a659 Call-ID: 1Wu7Cwdtv2bDWIuY4AUUNw.. From: <sip:neo@developernote.com>;tag=42d23249 To: <sip:neo@developernote.com>;tag=z9hG4bK-524287-1---ab1344a2c2a4a659 CSeq: 9 REGISTER WWW-Authenticate: Digest realm="asterisk",nonce="1739386118/a98daaaf72cff978acba13db5bc5d97e",opaque="60e5fff52f6b8379",stale=true,algorithm=MD5,qop="auth" Server: Asterisk PBX 22.2.0 Content-Length: 0 <--- Received SIP request (1007 bytes) from TLS:176.15.165.103:20736 ---> REGISTER sip:developernote.com;transport=TLS SIP/2.0 Via: SIP/2.0/TLS 13.160.171.146:45824;branch=z9hG4bK-524287-1---1dbbbd5808b2e404;rport Max-Forwards: 70 Contact: <sip:neo@176.15.165.103:20736;transport=TLS;rinstance=ba0d0c16fb6f2300> To: <sip:neo@developernote.com;transport=TLS> From: <sip:neo@developernote.com;transport=TLS>;tag=42d23249 Call-ID: 1Wu7Cwdtv2bDWIuY4AUUNw.. CSeq: 10 REGISTER Expires: 600 Allow: INVITE, ACK, CANCEL, BYE, NOTIFY, REFER, MESSAGE, OPTIONS, INFO, SUBSCRIBE Supported: replaces, norefersub, extended-refer, timer, sec-agree, outbound, path, X-cisco-serviceuri User-Agent: Zoiper v2.10.20.5 Authorization: Digest username="neo",realm="asterisk",nonce="1739386118/a98daaaf72cff978acba13db5bc5d97e",uri="sip:developernote.com;transport=TLS",response="9d5b7ed934671e8316b4c3d6258a9b35",cnonce="b0d5487c804ceaa3b42365b4e701fcfe",nc=00000001,qop=auth,algorithm=MD5,opaque="60e5fff52f6b8379" Allow-Events: presence, kpml, talk, as-feature-event Content-Length: 0 <--- Transmitting SIP response (559 bytes) to TLS:176.15.165.103:20736 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 13.160.171.146:45824;rport=20736;received=176.15.165.103;branch=z9hG4bK-524287-1---1dbbbd5808b2e404 Call-ID: 1Wu7Cwdtv2bDWIuY4AUUNw.. From: <sip:neo@developernote.com>;tag=42d23249 To: <sip:neo@developernote.com>;tag=z9hG4bK-524287-1---1dbbbd5808b2e404 CSeq: 10 REGISTER Date: Wed, 12 Feb 2025 18:48:38 GMT Contact: <sip:neo@176.15.165.103:18674>;expires=1442 Contact: <sip:neo@176.15.165.103:20736;transport=TLS;rinstance=ba0d0c16fb6f2300>;expires=599 Expires: 600 Server: Asterisk PBX 22.2.0 Content-Length: 0 <--- Received SIP request (1038 bytes) from TCP:91.122.37.167:61465 ---> INVITE sip:1001@developernote.com;transport=TCP SIP/2.0 Via: SIP/2.0/TCP 172.24.106.63:60096;branch=z9hG4bK-524287-1---80e383db20badaaa;rport Max-Forwards: 70 Contact: <sip:rabbit@91.122.37.167:61465;transport=TCP> To: <sip:1001@developernote.com> From: <sip:rabbit@developernote.com;transport=TCP>;tag=566a2f6b Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. CSeq: 1 INVITE Allow: INVITE, ACK, CANCEL, BYE, NOTIFY, REFER, MESSAGE, OPTIONS, INFO, SUBSCRIBE Content-Type: application/sdp Supported: replaces, norefersub, extended-refer, timer, sec-agree, outbound, path, X-cisco-serviceuri User-Agent: Z 5.6.6 v2.10.20.5 Allow-Events: presence, kpml, talk, as-feature-event Content-Length: 343 v=0 o=Z 0 185337775 IN IP4 91.122.37.167 s=Z c=IN IP4 91.122.37.167 t=0 0 m=audio 52335 RTP/AVP 106 9 98 101 0 8 3 a=rtpmap:106 opus/48000/2 a=fmtp:106 sprop-maxcapturerate=16000; minptime=20; useinbandfec=1 a=rtpmap:98 telephone-event/48000 a=fmtp:98 0-16 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=sendrecv a=rtcp-mux <--- Transmitting SIP response (515 bytes) to TCP:91.122.37.167:61465 ---> SIP/2.0 401 Unauthorized Via: SIP/2.0/TCP 172.24.106.63:60096;rport=61465;received=91.122.37.167;branch=z9hG4bK-524287-1---80e383db20badaaa Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. From: <sip:rabbit@developernote.com>;tag=566a2f6b To: <sip:1001@developernote.com>;tag=z9hG4bK-524287-1---80e383db20badaaa CSeq: 1 INVITE WWW-Authenticate: Digest realm="asterisk",nonce="1739386119/237470264aa2757071128e8d5e210bfd",opaque="2e44c9c1779f812f",algorithm=MD5,qop="auth" Server: Asterisk PBX 22.2.0 Content-Length: 0 <--- Received SIP request (367 bytes) from TCP:91.122.37.167:61465 ---> ACK sip:1001@developernote.com;transport=TCP SIP/2.0 Via: SIP/2.0/TCP 172.24.106.63:60096;branch=z9hG4bK-524287-1---80e383db20badaaa;rport Max-Forwards: 70 To: <sip:1001@developernote.com>;tag=z9hG4bK-524287-1---80e383db20badaaa From: <sip:rabbit@developernote.com;transport=TCP>;tag=566a2f6b Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. CSeq: 1 ACK Content-Length: 0 <--- Received SIP request (1342 bytes) from TCP:91.122.37.167:61465 ---> INVITE sip:1001@developernote.com;transport=TCP SIP/2.0 Via: SIP/2.0/TCP 172.24.106.63:60096;branch=z9hG4bK-524287-1---01f0c2eece39282f;rport Max-Forwards: 70 Contact: <sip:rabbit@91.122.37.167:61465;transport=TCP> To: <sip:1001@developernote.com> From: <sip:rabbit@developernote.com;transport=TCP>;tag=566a2f6b Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. CSeq: 2 INVITE Allow: INVITE, ACK, CANCEL, BYE, NOTIFY, REFER, MESSAGE, OPTIONS, INFO, SUBSCRIBE Content-Type: application/sdp Supported: replaces, norefersub, extended-refer, timer, sec-agree, outbound, path, X-cisco-serviceuri User-Agent: Z 5.6.6 v2.10.20.5 Authorization: Digest username="rabbit",realm="asterisk",nonce="1739386119/237470264aa2757071128e8d5e210bfd",uri="sip:1001@developernote.com;transport=TCP",response="ac413dbefc8f07e693f7cc73fb1524fd",cnonce="02bc7301dcd6b0b3552b9de1fd54e100",nc=00000001,qop=auth,algorithm=MD5,opaque="2e44c9c1779f812f" Allow-Events: presence, kpml, talk, as-feature-event Content-Length: 343 v=0 o=Z 0 185337775 IN IP4 91.122.37.167 s=Z c=IN IP4 91.122.37.167 t=0 0 m=audio 52335 RTP/AVP 106 9 98 101 0 8 3 a=rtpmap:106 opus/48000/2 a=fmtp:106 sprop-maxcapturerate=16000; minptime=20; useinbandfec=1 a=rtpmap:98 telephone-event/48000 a=fmtp:98 0-16 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=sendrecv a=rtcp-mux <--- Transmitting SIP response (323 bytes) to TCP:91.122.37.167:61465 ---> SIP/2.0 100 Trying Via: SIP/2.0/TCP 172.24.106.63:60096;rport=61465;received=91.122.37.167;branch=z9hG4bK-524287-1---01f0c2eece39282f Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. From: <sip:rabbit@developernote.com>;tag=566a2f6b To: <sip:1001@developernote.com> CSeq: 2 INVITE Server: Asterisk PBX 22.2.0 Content-Length: 0 [1;30m -- [0mExecuting [1001@office-phones:1] [1;36mDial[0m("[1;35mPJSIP/rabbit-00000002[0m", "[1;35mPJSIP/neo[0m") in new stack [1;30m -- [0mCalled PJSIP/neo <--- Transmitting SIP request (1271 bytes) to UDP:176.15.165.103:18674 ---> INVITE sip:neo@176.15.165.103:18674 SIP/2.0 Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj60e9dccf-45f6-4890-a914-d6f2fa56be2c From: <sip:rabbit@172.17.0.3>;tag=31aa5c1a-b01e-4d47-90ec-c9c39726be8c To: <sip:neo@176.15.165.103> Contact: <sip:asterisk@172.236.29.157:5060> Call-ID: fb5f23e1-4ab1-4d8a-b48a-a7765696958a CSeq: 180 INVITE Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, INFO, REFER Supported: 100rel, timer, replaces, norefersub, histinfo Session-Expires: 1800 Min-SE: 90 Max-Forwards: 70 User-Agent: Asterisk PBX 22.2.0 Content-Type: application/sdp Content-Length: 600 v=0 o=- 193490376 193490376 IN IP4 172.236.29.157 s=Asterisk c=IN IP4 172.236.29.157 t=0 0 m=audio 10010 RTP/AVP 0 3 97 18 4 101 a=ice-ufrag:6d26000a5a32e6e26cd7ad9e57e99bae a=ice-pwd:19107cac24e8e7df2b42d5c1032b7ebe a=candidate:Hac110003 1 UDP 2130706431 172.17.0.3 10010 typ host a=candidate:Hac110003 2 UDP 2130706430 172.17.0.3 10011 typ host a=rtpmap:0 PCMU/8000 a=rtpmap:3 GSM/8000 a=rtpmap:97 iLBC/8000 a=fmtp:97 mode=20 a=rtpmap:18 G729/8000 a=fmtp:18 annexb=no a=rtpmap:4 G723/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=ptime:20 a=maxptime:140 a=sendrecv <--- Received SIP response (284 bytes) from UDP:176.15.165.103:18674 ---> SIP/2.0 100 Trying Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj60e9dccf-45f6-4890-a914-d6f2fa56be2c From: <sip:rabbit@172.17.0.3>;tag=31aa5c1a-b01e-4d47-90ec-c9c39726be8c To: sip:neo@176.15.165.103 Call-ID: fb5f23e1-4ab1-4d8a-b48a-a7765696958a CSeq: 180 INVITE <--- Received SIP response (464 bytes) from UDP:176.15.165.103:18674 ---> SIP/2.0 180 Ringing Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj60e9dccf-45f6-4890-a914-d6f2fa56be2c From: <sip:rabbit@172.17.0.3>;tag=31aa5c1a-b01e-4d47-90ec-c9c39726be8c To: <sip:neo@176.15.165.103>;tag=33K~uc9 Call-ID: fb5f23e1-4ab1-4d8a-b48a-a7765696958a CSeq: 180 INVITE User-Agent: LinphoneAndroid/5.2.5 (A54 пользователя Dmitry) LinphoneSDK/5.3.47 (tags/5.3.47^0) Supported: replaces, outbound, gruu, path, record-aware [1;30m -- [0mPJSIP/neo-00000003 is ringing <--- Transmitting SIP response (532 bytes) to TCP:91.122.37.167:61465 ---> SIP/2.0 180 Ringing Via: SIP/2.0/TCP 172.24.106.63:60096;rport=61465;received=91.122.37.167;branch=z9hG4bK-524287-1---01f0c2eece39282f Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. From: <sip:rabbit@developernote.com>;tag=566a2f6b To: <sip:1001@developernote.com>;tag=424179f1-ac70-49cb-bc72-b2624a1823c5 CSeq: 2 INVITE Server: Asterisk PBX 22.2.0 Contact: <sip:172.236.29.157:5060;transport=TCP> Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, INFO, REFER Content-Length: 0 <--- Received SIP response (874 bytes) from UDP:176.15.165.103:18674 ---> SIP/2.0 200 Ok Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj60e9dccf-45f6-4890-a914-d6f2fa56be2c From: <sip:rabbit@172.17.0.3>;tag=31aa5c1a-b01e-4d47-90ec-c9c39726be8c To: <sip:neo@13.160.171.146>;tag=33K~uc9 Call-ID: fb5f23e1-4ab1-4d8a-b48a-a7765696958a CSeq: 180 INVITE User-Agent: LinphoneAndroid/5.2.5 (A54 пользователя Dmitry) LinphoneSDK/5.3.47 (tags/5.3.47^0) Supported: replaces, outbound, gruu, path, record-aware Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE Contact: <sip:13.160.171.146:49167;transport=udp>;+org.linphone.specs="lime" Content-Type: application/sdp Content-Length: 187 v=0 o=neo 1659 3950 IN IP4 13.160.171.146 s=Talk c=IN IP4 13.160.171.146 t=0 0 m=audio 48655 RTP/AVP 0 18 101 a=fmtp:18 annexb=yes a=rtpmap:101 telephone-event/8000 a=rtcp:58144 [1;30m > [0m0x7e1a2c0380d0 -- Strict RTP learning after remote address set to: 13.160.171.146:48655 <--- Transmitting SIP request (384 bytes) to UDP:176.15.165.103:18674 ---> ACK sip:176.15.165.103:18674 SIP/2.0 Via: SIP/2.0/UDP 172.236.29.157:5060;rport;branch=z9hG4bKPj57edc5c4-b634-4f4b-abb5-ea0d1308196a From: <sip:rabbit@172.17.0.3>;tag=31aa5c1a-b01e-4d47-90ec-c9c39726be8c To: <sip:neo@176.15.165.103>;tag=33K~uc9 Call-ID: fb5f23e1-4ab1-4d8a-b48a-a7765696958a CSeq: 180 ACK Max-Forwards: 70 User-Agent: Asterisk PBX 22.2.0 Content-Length: 0 [1;30m -- [0mPJSIP/neo-00000003 answered PJSIP/rabbit-00000002 [1;30m > [0m0x7e1a2c028b00 -- Strict RTP learning after remote address set to: 91.122.37.167:52335 <--- Transmitting SIP response (863 bytes) to TCP:91.122.37.167:61465 ---> SIP/2.0 200 OK Via: SIP/2.0/TCP 172.24.106.63:60096;rport=61465;received=91.122.37.167;branch=z9hG4bK-524287-1---01f0c2eece39282f Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. From: <sip:rabbit@developernote.com>;tag=566a2f6b To: <sip:1001@developernote.com>;tag=424179f1-ac70-49cb-bc72-b2624a1823c5 CSeq: 2 INVITE Server: Asterisk PBX 22.2.0 Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, INFO, REFER Contact: <sip:172.236.29.157:5060;transport=TCP> Supported: 100rel, timer, replaces, norefersub Content-Type: application/sdp Content-Length: 254 v=0 o=- 0 185337777 IN IP4 172.236.29.157 s=Asterisk c=IN IP4 172.236.29.157 t=0 0 m=audio 10026 RTP/AVP 0 3 101 a=rtpmap:0 PCMU/8000 a=rtpmap:3 GSM/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=ptime:20 a=maxptime:140 a=sendrecv [1;30m -- [0mChannel PJSIP/neo-00000003 joined 'simple_bridge' basic-bridge <2a20c206-aba2-46ae-8534-43bd345e15bd> [1;30m -- [0mChannel PJSIP/rabbit-00000002 joined 'simple_bridge' basic-bridge <2a20c206-aba2-46ae-8534-43bd345e15bd> [1;30m > [0mBridge 2a20c206-aba2-46ae-8534-43bd345e15bd: switching from simple_bridge technology to native_rtp [1;30m > [0mLocally RTP bridged 'PJSIP/rabbit-00000002' and 'PJSIP/neo-00000003' in stack [Feb 12 18:48:51] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:51] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. <--- Received SIP request (440 bytes) from TCP:91.122.37.167:61465 ---> ACK sip:172.236.29.157:5060;transport=TCP SIP/2.0 Via: SIP/2.0/TCP 172.24.106.63:60096;branch=z9hG4bK-524287-1---49d6769c8bfccc99;rport Max-Forwards: 70 Contact: <sip:rabbit@91.122.37.167:61465;transport=TCP> To: <sip:1001@developernote.com>;tag=424179f1-ac70-49cb-bc72-b2624a1823c5 From: <sip:rabbit@developernote.com>;tag=566a2f6b Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. CSeq: 2 ACK User-Agent: Z 5.6.6 v2.10.20.5 Content-Length: 0 [1;30m > [0m0x7e1a2c028b00 -- Strict RTP switching to RTP target address 91.122.37.167:52335 as source [Feb 12 18:48:52] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [1;30m > [0m0x7e1a2c0380d0 -- Strict RTP qualifying stream type: audio [Feb 12 18:48:52] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [1;30m > [0m0x7e1a2c0380d0 -- Strict RTP switching source address to 176.15.165.103:36522 [Feb 12 18:48:52] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:53] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:53] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:54] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:54] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:55] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:55] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:56] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [1;30m > [0m0x7e1a2c028b00 -- Strict RTP learning complete - Locking on source address 91.122.37.167:52335 [1;30m > [0m0x7e1a2c0380d0 -- Strict RTP learning complete - Locking on source address 176.15.165.103:36522 [Feb 12 18:48:56] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. [Feb 12 18:48:57] [1;31mWARNING[0m[134][C-00000002]: [1;37mres_rtp_asterisk.c[0m:[1;37m3408[0m [1;37m__rtp_recvfrom[0m: PJ ICE Rx error status code: 370400 'Bad Request'. <--- Received SIP request (420 bytes) from UDP:176.15.165.103:18674 ---> BYE sip:asterisk@172.236.29.157:5060 SIP/2.0 Via: SIP/2.0/UDP 176.15.165.103:18674;branch=z9hG4bK.I8aQ43FV6;rport From: <sip:neo@176.15.165.103>;tag=33K~uc9 To: <sip:rabbit@172.17.0.3>;tag=31aa5c1a-b01e-4d47-90ec-c9c39726be8c CSeq: 111 BYE Call-ID: fb5f23e1-4ab1-4d8a-b48a-a7765696958a Max-Forwards: 70 User-Agent: LinphoneAndroid/5.2.5 (A54 пользователя Dmitry) LinphoneSDK/5.3.47 (tags/5.3.47^0) <--- Transmitting SIP response (343 bytes) to UDP:176.15.165.103:18674 ---> SIP/2.0 200 OK Via: SIP/2.0/UDP 176.15.165.103:18674;rport=18674;received=176.15.165.103;branch=z9hG4bK.I8aQ43FV6 Call-ID: fb5f23e1-4ab1-4d8a-b48a-a7765696958a From: <sip:neo@176.15.165.103>;tag=33K~uc9 To: <sip:rabbit@172.17.0.3>;tag=31aa5c1a-b01e-4d47-90ec-c9c39726be8c CSeq: 111 BYE Server: Asterisk PBX 22.2.0 Content-Length: 0 [1;30m -- [0mChannel PJSIP/neo-00000003 left 'native_rtp' basic-bridge <2a20c206-aba2-46ae-8534-43bd345e15bd> [1;30m -- [0mChannel PJSIP/rabbit-00000002 left 'native_rtp' basic-bridge <2a20c206-aba2-46ae-8534-43bd345e15bd> [1;30m == [0mSpawn extension (office-phones, 1001, 1) exited non-zero on 'PJSIP/rabbit-00000002' <--- Transmitting SIP request (436 bytes) to TCP:91.122.37.167:61465 ---> BYE sip:rabbit@91.122.37.167:61465;transport=TCP SIP/2.0 Via: SIP/2.0/TCP 172.236.29.157:5060;rport;branch=z9hG4bKPj13e87bce-90ad-4284-85a5-e048e8e1d498;alias From: <sip:1001@developernote.com>;tag=424179f1-ac70-49cb-bc72-b2624a1823c5 To: <sip:rabbit@developernote.com>;tag=566a2f6b Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. CSeq: 20509 BYE Reason: Q.850;cause=16 Max-Forwards: 70 User-Agent: Asterisk PBX 22.2.0 Content-Length: 0 <--- Received SIP response (412 bytes) from TCP:91.122.37.167:61465 ---> SIP/2.0 200 OK Via: SIP/2.0/TCP 172.236.29.157:5060;rport=5060;branch=z9hG4bKPj13e87bce-90ad-4284-85a5-e048e8e1d498;alias Contact: <sip:rabbit@91.122.37.167:61465;transport=TCP> To: <sip:rabbit@developernote.com>;tag=566a2f6b From: <sip:1001@developernote.com>;tag=424179f1-ac70-49cb-bc72-b2624a1823c5 Call-ID: GT7yxLcKvqe8Lpm-FZ1C5g.. CSeq: 20509 BYE User-Agent: Z 5.6.6 v2.10.20.5 Content-Length: 0 |