cornfedsip: voip and sip protocol problems
Giorgio Pioda <[email protected]>
| Newsgroups | gmane.network.guarddog |
|---|---|
| Organization | Pioderia |
| Message-ID | <[email protected]> |
Yes, the bidirectional checkbox doesn't work properly. After setting up guarddog correctly for the UDP 5004 port I looked back in the exported script and the connection is NOT bidirectional. Modifiing the script manually in the way shown below solved the problem: Original: # Allow 'userdefined6' iptables -A f0to1 -p udp --sport 0:65535 --dport 5004:5024 -j ACCEPT and # Allow 'userdefined6' iptables -A f1to0 -p udp --sport 0:65535 --dport 5004:5024 -j ACCEPT modified to: # Allow 'userdefined6' iptables -A f0to1 -p udp --sport 0:65535 --dport 5004:5024 -j ACCEPT iptables -A f1to0 -p udp --sport 5004:5024 --dport 0:65535 -j ACCEPT and # Allow 'userdefined6' iptables -A f1to0 -p udp --sport 0:65535 --dport 5004:5024 -j ACCEPT iptables -A f0to1 -p udp --sport 5004:5024 --dport 0:65535 -j ACCEPT greetings giorgio ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click