diff options
author | Colin Smith <colin@pfsense.org> | 2005-02-27 05:19:42 +0000 |
---|---|---|
committer | Colin Smith <colin@pfsense.org> | 2005-02-27 05:19:42 +0000 |
commit | 41b283933426ebfe07fd6039e6ed7a9d5f04a43a (patch) | |
tree | fd061e78b89a0753d91f320772e447aa91e8051d /packages/siproxd.xml | |
parent | df45cb96bc0e6ae16e514c6e2bbcfee69bd4e8e2 (diff) | |
download | pfsense-packages-41b283933426ebfe07fd6039e6ed7a9d5f04a43a.tar.gz pfsense-packages-41b283933426ebfe07fd6039e6ed7a9d5f04a43a.tar.bz2 pfsense-packages-41b283933426ebfe07fd6039e6ed7a9d5f04a43a.zip |
Add siproxd package.
Diffstat (limited to 'packages/siproxd.xml')
-rw-r--r-- | packages/siproxd.xml | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/packages/siproxd.xml b/packages/siproxd.xml new file mode 100644 index 00000000..c14918bc --- /dev/null +++ b/packages/siproxd.xml @@ -0,0 +1,162 @@ +<packagegui> + <name>siproxd</name> + <title>siproxd: Settings</title> + <version>0.5.9</version> + <aftersaveredirect>pkg_edit.php?xml=freeradiussettings.xml&id=0</aftersaveredirect> + <tabs> + <tab> + <text>Settings</text> + <url>/pkg_edit.php?xml=freeradiussettings.xml&id=0</url> + <active/> + </tab> + <tab> + <text>Users</text> + <url>/pkg.php?xml=siproxdusers.xml</url> + </tab> + </tabs> + <additional_files_needed> + <item>http://www.pfsense.com/packages/config/siproxdusers.xml</item> + </additional_files_needed> + <configpath>installedpackages->package->$packagename->configuration->settings</configpath> + <fields> + <field> + <fielddescr>Inbound interface</fielddescr> + <fieldname>if_inbound</fieldname> + <description>Select the inbound interface.</description> + <type>interfaces_selection</type> + </field> + <field> + <fielddescr>Outbound interface</fielddescr> + <fieldname>if_outbound</fieldname> + <description>Select the outbound interface.</description> + <type>interfaces_selection</type> + </field> + <field> + <fielddescr>Listening port</fielddescr> + <fieldname>port</fieldname> + <description>Enter the port on which to listen for SIP traffic (default 5060). Do not change this unless you know what you're doing.</description> + <type>input</type> + </field> + <field> + <fielddescr>Enable RTP proxy</fielddescr> + <fieldname>rtpenable</fieldname> + <description>Enable or disable the RTP proxy. (default is enabled)</description> + <type>select</type> + <options> + <option> + <name>Enable</name> + <value>1</value> + </option> + <option> + <name>Disable</name> + <value>0</value> + </option> + </options> + </field> + <field> + <fielddescr>RTP port range</fielddescr> + <fieldname>rtplower</fieldname> + <description>Enter the bottom edge of the port range siproxd will allocate for incoming RTP traffic. This range must be one not blocked by the firewall (default 7070).</description> + <type>input</type> + </field> + <field> + <fieldname>rtpupper</fieldname> + <description>Enter the top edge of the port range siproxd will allocate for incoming RTP traffic. This range must be one not blocked by the firewall (default 7079).</description> + <type>input</type> + </field> + <field> + <fielddescr>RTP stream timeout</fielddescr> + <fieldname>rtptimeout</fieldname> + <description>After this number of seconds, an RTP stream is considered dead and proxying it will be stopped (default 300sec). + <type>input</type> + </field> + <field> + <fielddescr>Default expiration timeout</fielddescr> + <fieldname>defaulttimeout</fieldname> + <description>If a REGISTER request dose not contain an Expires header or expires= parameter, this number of seconds will be used and reported back to the UA in the answer.</description> + <type>input</type> + </field> + <field> + <fielddescr>Enable proxy authentication</fielddescr> + <fieldname>authentication</fieldname> + <description>If this is checked, clients will be forced to authenticate themselves at the proxy (for registration only).</description> + <type>checkbox</type> + </field> + <field> + <fielddescr>Outbound proxy hostname</fielddescr> + <fieldname>outboundproxyhost</fieldname> + <type>input</type> + </field> + <field> + <fielddescr>Outbound proxy port</fielddescr> + <fieldname>outboundproxyport</fieldname> + <description>Enter the hostname and port of an outbound proxy to send all traffic to. This is only useful if you have multiple masquerading firewalls to cross.</description> + </fields> + <custom_php_install_command> + mwexec("rm /usr/local/etc/rc.d/siproxd.sh"); + $fout = fopen("/usr/local/etc/rc.d/siproxd.sh","w"); + fwrite($fout, "#!/bin/sh\n\n/usr/local/sbin/siproxd\n"); + fclose($fout); + </custom_php_install_command> + <custom_add_php_command> + function sync_package() { + conf_mount_rw(); + config_lock(); + global $config; + $fout = fopen("/usr/local/etc/siproxd.conf","w"); + fwrite($fout, "# This file was automatically generated by the pfSense\n# package management system.\n\n"); + if($_POST['if_inbound'] != "") { + $if_inbound = find_interface_ip($_POST['if_inbound']); + fwrite($fout, "if_inbound = " . $if_inbound . "\n"); + } + if($_POST['if_outbound'] != "") { + $if_outbound = find_interface_ip($_POST['if_outbound']); + fwrite($fout, "if_outbound = " . $if_outbound . "\n\n"); + } + if($_POST['port'] != "") { + fwrite($fout, "sip_listen_port = " . $_POST['port'] . "\n\n"); + } else { + fwrite($fout, "sip_listen_port = 5060\n\n"); + } + fwrite($fout, "daemonize = 1\n\nsilence_log = 0\n\nlog_calls = 1\n\nuser = nobody\nchrootjail = /usr/local/siproxd/\n\nregistration_file = siproxd_registrations\n\npid_file = siproxd.pid\n\n"); + if($_POST['rtpenable'] != "") { + fwrite($fout, "rtp_proxy_enable = " . $_POST['rtpenable'] . "\n\n"); + } else { + fwrite($fout, "rtp_proxy_enable = 1\n\n"); + } + if($_POST['rtplower'] != "") { + if($_POST['rtpupper'] != "") { + fwrite($fout, "rtp_port_low = " . $_POST['rtplower'] . "\n"); + fwrite($fout, "rtp_port_high = " . $_POST['rtpupper'] . "\n\n"); + } + } + if($_POST['rtptimeout'] != "") { + fwrite($fout, "rtp_timeout = " . $_POST['rtptimeout'] . "\n\n"); + } else { + fwrite($fout, "rtp_timeout = 300\n\n"); + } + if($_POST['defaulttimeout'] != "") { + fwrite($fout, "default_expires = " . $_POST['defaulttimeout'] . "\n\n"); + } else { + fwrite($fout, "default_expires = 600\n\n"); + } + if($_POST['authentication']) { + fwrite($fout, "proxy_auth_realm = Authentication_Realm\nproxy_auth_pwfile = /usr/local/etc/siproxd_passwd.cfg\n\n"); + } + fwrite($fout, "debug_level = 0x00000000\n\n"); + if($_POST['outboundproxyhost'] != "") { + if($_POST['outboundproxyport'] != "") { + fwrite($fout, "outbound_proxy_host = " . $_POST['outboundproxyhost'] . "\n"); + fwrite($fout, "outbound_proxy_port = " . $_POST['outboundproxyport'] . "\n"); + } + } + fclose($fout); + mwexec("killall siproxd"); + mwexec("/usr/local/etc/rc.d/siproxd.sh"); + conf_mount_ro(); + config_unlock(); + } + sync_package(); + </custom_add_php_command> +</packagegui> + |