diff options
author | Michele Di Maria <michele@nt2.it> | 2011-12-05 22:49:15 +0100 |
---|---|---|
committer | Michele Di Maria <michele@nt2.it> | 2011-12-05 22:49:15 +0100 |
commit | 2fbc6884d4aa24eeea690b2afeb2e182feeabc8e (patch) | |
tree | 419199f4193e7005d3d5ae0696d2170a84cc50d2 /config/snort/snort.inc | |
parent | e35aa3111520afb6d020816d09992bd66469839a (diff) | |
download | pfsense-packages-2fbc6884d4aa24eeea690b2afeb2e182feeabc8e.tar.gz pfsense-packages-2fbc6884d4aa24eeea690b2afeb2e182feeabc8e.tar.bz2 pfsense-packages-2fbc6884d4aa24eeea690b2afeb2e182feeabc8e.zip |
Adds two variables for SIP services in the "Define Servers" interface:
SIP_SERVERS, default=$HOME_NET
SIP_PORTS, default=[5060:5090,16384:32768]
Reference: http://redmine.pfsense.org/issues/2033
Diffstat (limited to 'config/snort/snort.inc')
-rw-r--r-- | config/snort/snort.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc index 0e624c7f..36f58760 100644 --- a/config/snort/snort.inc +++ b/config/snort/snort.inc @@ -1581,6 +1581,20 @@ function generate_snort_conf($id, $if_real, $snort_uuid) $def_sip_proxy_ports_type = "5060:5090,16384:32768"; else $def_sip_proxy_ports_type = "$def_sip_proxy_ports_info_chk"; + + /* def SIP_IP */ + $def_sip_ip_info_chk = $snortcfg['def_sip_ip']; + if ($def_sip_ip_info_chk == "") + $def_sip_ip_type = "\$HOME_NET"; + else + $def_sip_ip_type = "$def_sip_ip_info_chk"; + + /* def SIP_PORTS */ + $def_sip_ports_info_chk = $snortcfg['def_sip_ports']; + if ($def_sip_ports_info_chk == "") + $def_sip_ports_type = "5060:5090,16384:32768"; + else + $def_sip_ports_type = "$def_sip_ports_info_chk"; /* def AUTH_PORTS */ $def_auth_ports_info_chk = $snortcfg['def_auth_ports']; @@ -1964,6 +1978,7 @@ var IMAP_SERVERS [{$def_imap_servers_type}] var RPC_SERVERS \$HOME_NET var WWW_SERVERS [{$def_www_servers_type}] var SIP_PROXY_IP [{$def_sip_proxy_ip_type}] +var SIP_IP [{$def_sip_ip_type}] var AIM_SERVERS \ [64.12.24.0/23,64.12.28.0/23,64.12.161.0/24,64.12.163.0/24,64.12.200.0/24,205.188.3.0/24,205.188.5.0/24,205.188.7.0/24,205.188.9.0/24,205.188.153.0/24,205.188.179.0/24,205.188.248.0/24] @@ -1997,6 +2012,7 @@ portvar TELNET_PORTS [{$def_telnet_ports_type}] portvar MAIL_PORTS [{$def_mail_ports_type}] portvar SSL_PORTS [{$def_ssl_ports_type}] portvar SIP_PROXY_PORTS [{$def_sip_proxy_ports_type}] +portvar SIP_PORTS [{$def_sip_ports_type}] # DCERPC NCACN-IP-TCP portvar DCERPC_NCACN_IP_TCP [139,445] |