Connect to a server (SSH)¶
One-time setup
Ask a systems administrator to add your public SSH key to the relevant ssh list in the server’s Pillar file.
On machines running Docker, use SSH as usual. For example:
ssh USER@ocp99.open-contracting.org
On machines not running Docker, the SSH port is closed by default. The easiest way to open it depends on whether your IP address is dynamic or static.
Dynamic IP: Port knock¶
To open the SSH port for 30 seconds, send traffic to port 8255, replacing example.open-contracting.org with the server you want to connect to:
curl --silent --connect-timeout 1 ocp99.open-contracting.org:8255 || true
You can then use ssh as usual. Once you’re connected, the server will close the port, but not your connection.
Note
Port 8255 returns no data. Without --connect-timeout 1, curl waits forever for a response.
Static IP: Allow list¶
Add your IP address(es) to the
ssh_ipv4andssh_ipv6list(s) in the common private Pillar fileAdd your full name in a comment
If you’re unsure, contact sysadmin@open-contracting.org.