Skip to content

Latest commit

 

History

History
109 lines (79 loc) · 6.46 KB

manage_security.rst

File metadata and controls

109 lines (79 loc) · 6.46 KB

Firewalls and Security Software

The perfSONAR Toolkit utilizes a number of tools the help protect against attacks on the system. Some of these tools include:

  • A default set of host firewall rules that only allow connections to ports required by perfSONAR tools.
  • Inclusion of the fail2ban intrusion detection system (IDS) to log suspicious activity such as brute-force SSH attacks

None of these solutions will protect your host from all kinds of attacks so best common practices and good sense should be used when administering your host. In addition to tools like above it's important :doc:`update your host <manage_update>` with the latest packages and to watch the mailing lists for important security announcements.

Default Firewall Rules and perfSONAR port requirements

The perfSONAR Toolkit uses iptables and ip6tables to implement IPv4 and IPv6 firewall rules respectively. The default configurations for iptabel are in /etc/sysconfig/iptables and /etc/sysconfig/ip6tables. Also see /usr/lib/firewalld/services and /etc/perfsonar/toolkit/perfsonar_firewalld_settings.conf for firewalld settings depending on operating system.

The current perfSONAR release uses the following ports (used by a Tool when requesting a test. See also :doc:`pscheduler_ref_tests_tools`) by default:

perfSONAR Tools Ports
Tool TCP ports UDP Ports
owamp (control) 861  
owamp (test)   8760-9960
twamp (control) 862  
twamp (test)   18760-19960
pscheduler 443  
traceroute   33434-33634
simplestream 5890-5900  
nuttcp 5000, 5101  
iperf3 5201  
iperf2 5001  
ntp   123

Some ports are also used to access the perfSONAR Toolkit management interfaces:

perfSONAR Toolkit Ports
Tool TCP ports
management interface 443
archive (opensearch, logstash) 443

Note

ICMP also needs to be open

Lookup Service Registration Requirements

For the Lookup Service registration to work make sure your host enables outgoing traffic to the following hosts:

  • Port TCP/80 access to 198.128.151.2 to access the Lookup Service bootstrap host
  • Port TCP/8090 access to 35.223.142.206 to register the host to the Lookup Service

Adding Your Own Firewall Rules

For operating systems using iptables, the rules added by the perfSONAR Toolkit are contained within a special perfSONAR chain of iptables (and ip6tables). You may add rules to the other chains, such as the INPUT chain, just as you would any other firewall rule. It is NOT recommended you change the perfSONAR chain as any changes you make could be overwritten by a software update.

For operating systems using firewalld it organizes the rules into "zones" and makes it more difficult to distinguish perfSONAR rules from custom rules. If you add a standard service to the zone it will get overwritten next time perfsonar-toolkit-security upgrades. We recommend looking at firewalld rich rules for adding custom rules.

For more information see:

Fail2ban Intrusion Detection System

By default the perfSONAR Toolkit installs and configures the fail2ban Intrusion Detection System (IDS). This software will log suspicious activity such as a rapid succession of failed SSH login attempts in /var/log/secure. By default it will not act to mitigate any attempts, only log them (though the default IP table rules do SSH throttling). If you would like to change this default behavior to send email or block unwanted intrusions, see the configuration file /etc/fail2ban/jail.conf and the fail2ban manual for details.

Limiting tests to Research and Education Networks Only

ESnet provides a file containing all R&E subnets, which is updated nightly. Instructions on how to download this file and configure pScheduler to use it are described on the page :doc:`manage_limits`.

Managing Login Access

perfSONAR nodes are meant to be used, both by local users and the public at large, to perform a variety of network tests. The open access policy is at odds with ways to mitigate the risk of exposing functionality to those that would cause harm. The following is a possible approach for managing access to the host:

  • SSHD can be turned off completely if remote access to the machine via the terminal is not need (e.g. in cases where console access is available either directly, or indirectly)
  • If SSHD is turned on, consider using a jump host setup wherein access to the perfSONAR node can only be accomplished through a single (or set) of trusted hosts. This type of restriction can be implemented in IPTables.