Changes between Version 6 and Version 7 of SfaInstallGEC9Demos


Ignore:
Timestamp:
10/19/10 09:00:52 (13 years ago)
Author:
chaos@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SfaInstallGEC9Demos

    v6 v7  
    167167= Step 8: Configure host firewall to allow SFA =
    168168
    169 If your myplc is running iptables, you will need to add rules to allow inbound connections to the `sfa-server.py` daemon, which listens on three ports.  Add the following rules to `/etc/sysconfig/iptables`:
     169If your myplc is running iptables, you will need to add rules to allow inbound connections to the `sfa-server.py` daemon, which listens on three ports.  You should also ensure that HTTP and HTTPS are allowed.  Add the following rules to `/etc/sysconfig/iptables`:
    170170{{{
     171-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
     172-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT
    171173-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 12345 -j ACCEPT
    172174-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 12346 -j ACCEPT