Skip to content

3. Least cost routing

Stefan Wintermeyer edited this page Jan 3, 2013 · 1 revision

Least cost routing über verschiedene Gateways

Wenn Sie verschiedene Gateways haben und Gespräche anhand der Zielrufnummern routen möchten, so geht das mit Einträgen in der /opt/GS5/misc/freeswitch/scripts/ini/routes.ini

[outbound]
^%+49(1%d+)$ , class=gateway, endpoint=gateway1, 0%1
^%+49(%d+)$  , class=gateway, endpoint=gateway2, 0%1
^%+(%d+)$    , class=gateway, endpoint=gateway2, 00%1

Least cost routing mit verschiedenen "Billig"-Vorwahlen

Nehmen wir einmal an, das alle Gespräche an Handys über eine imaginäre Billig-Vorwahl 0999999 geführt werden sollen. Dann müssten Sie in der /opt/GS5/misc/freeswitch/scripts/ini/routes.ini folgenden Eintrag machen:

[outbound]
^%+49(1%d+)$ , class=gateway, endpoint=gateway, 0999999%1
Clone this wiki locally