ansible.builtin.seport (v2.5.15) — module

Manages SELinux network port type definitions

| "added in version" 2.0 of ansible.builtin"

Authors: Dan Keder

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.5.15

Description

Manages SELinux network port type definitions.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Allow Apache to listen on tcp port 8888
  seport:
    ports: 8888
    proto: tcp
    setype: http_port_t
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Allow sshd to listen on tcp port 8991
  seport:
    ports: 8991
    proto: tcp
    setype: ssh_port_t
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Allow memcached to listen on tcp ports 10000-10100 and 10112
  seport:
    ports: 10000-10100,10112
    proto: tcp
    setype: memcache_port_t
    state: present

Inputs

    
ports:
    description:
    - Ports or port ranges, separated by a comma.
    required: true

proto:
    choices:
    - tcp
    - udp
    description:
    - Protocol for the specified port.
    required: true

state:
    choices:
    - absent
    - present
    default: present
    description:
    - Desired boolean value.
    required: true

reload:
    default: 'yes'
    description:
    - Reload SELinux policy after commit.
    type: bool

setype:
    description:
    - SELinux type for the specified port.
    required: true