Ignore:
Timestamp:
Apr 26, 2017, 3:10:58 AM (7 years ago)
Author:
Bruno Cornec
Message:

More services up and runnig for the MondoRescue server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/ansible/roles/shorewall/defaults/main.yml

    r3655 r3656  
    3434  # Incoming HTTP
    3535  - { action: ACCEPT, source: net, destination: fw, protocol: tcp, destination_port: 80 }
     36  # Incoming RSYNC
     37  - { action: ACCEPT, source: net, destination: fw, protocol: tcp, destination_port: 873 }
    3638  # Incoming SVN
    3739  - { action: ACCEPT, source: net, destination: fw, protocol: tcp, destination_port: 3690 }
     
    4446  # Incoming PING
    4547  - { action: ACCEPT, source: net, destination: fw, protocol: icmp, destination_port: 8 }
     48  # Outgoing NTP
     49  - { action: ACCEPT, source: fw, destination: net, protocol: tcp, destination_port: 123 }
     50  - { action: ACCEPT, source: fw, destination: net, protocol: udp, destination_port: 123 }
    4651  # Outgoing DNS
    4752  - { action: ACCEPT, source: fw, destination: "net:{{ dns1 }}", protocol: udp, destination_port: 53 }
     
    4954  - { action: ACCEPT, source: fw, destination: "net:{{ dns1 }}", protocol: tcp, destination_port: 53 }
    5055  - { action: ACCEPT, source: fw, destination: "net:{{ dns2 }}", protocol: tcp, destination_port: 53 }
    51   # Outgoing HTTP
     56  # Outgoing HTTP/S
    5257  - { action: ACCEPT, source: fw, destination: net, protocol: tcp, destination_port: 80 }
     58  - { action: ACCEPT, source: fw, destination: net, protocol: tcp, destination_port: 443}
Note: See TracChangeset for help on using the changeset viewer.