Changeset - 6ac610bd3314
[Not reviewed]
0 2 0
Branko Majic (branko) - 8 years ago 2016-03-07 21:10:05
branko@majic.rs
MAR-55: Accept incoming connections to port 636 on LDAP server.
2 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
docs/rolereference.rst
Show inline comments
 
@@ -468,7 +468,8 @@ The role implements the following:
 
* Creates user-supplied groups in LDAP.
 
* Configures permissions.
 
* Creates LDAP entries.
 
* Configures firewall to allow incoming connections to the LDAP server.
 
* Configures firewall to allow incoming connections to the LDAP server (via both
 
  TCP 389 and 636).
 
* Sets the LDAP server administrator's password.
 

	
 

	
roles/ldap_server/files/ferm_ldap.conf
Show inline comments
 
table filter {
 
    chain INPUT {
 
        proto tcp dport 389 ACCEPT;
 
        proto tcp dport 636 ACCEPT;
 
    }
 
}
 
\ No newline at end of file
0 comments (0 inline, 0 general)