Set up network

Setting up the network involves opening ports to connect to UDP and TLS.

Note:

To open ports below 1024 requires root permissions.
To set up the network:
  1. Open incoming ports to allow external connections to UDP and TLS port.
    # cd /etc/sysconfig/
    # vi iptables
  2. Add the following lines:
    -A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 514 -j ACCEPT
    -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 6514 -j ACCEPT
  3. Restart the service.
    # service iptables restart
    Flushing firewall rules: [OK]