Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 3 monitored gateways.

  • 1 monitored Cloud Agent, monitoring up to 3 monitored containerized gateways.

  • 7 days, after which the container needs to be deleted and re-launched (unless the activation key is extended by generating an activation request key and sending it by email to your IBM representative).

Software Prerequisites

  • RHEL/Rocky Linux/CentOS/RHEL/Ubuntu Desktop/MacOS operating system (Windows is not supported)

  • Docker installed

  • If needed, enable firewall rules:
    Port 9022 – SSH access

    Port 443 – Web Console access

    Port 60000 – Syslog agent (consumes messages from the DataPower gateways)

    Port 60020 – WS-M agent (consumes messages from the DataPower gateways)
    For example:

    Code Block
    languagebash
    sudo iptables -I INPUT 1 -p tcp -m tcp -s 0.0.0.0/0 -d 0.0.0.0/0 --dport 9022 -j ACCEPT
    sudo iptables -I INPUT 1 -p tcp -m tcp -s 0.0.0.0/0 -d 0.0.0.0/0 --dport 443 -j ACCEPT
    sudo iptables -I INPUT 1 -p tcp -m tcp -s 0.0.0.0/0 -d 0.0.0.0/0 --dport 60000 -j ACCEPT
    sudo iptables -I INPUT 1 -p tcp -m tcp -s 0.0.0.0/0 -d 0.0.0.0/0 --dport 60020 -j ACCEPT
    sudo iptables-save

...