Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: example of adding a custom rule (I'm not sure this is right)

...

Here is a hint of how the latter might be accomplished- http://list.sipfoundry.org/archive/sipx-dev/msg27891.html

Here is an example of adding a custom rule to the running config. I'm not sure whether this will survive if sipXecs decides to rewrite the firewall configuration:

# allows any traffic from a certain subnet
iptables -A INPUT -s 10.1.2.3/24 -p tcp -j ACCEPT
/etc/init.d/iptables save

Disabling the Firewall (Redhat-based systems)

...