IHU Cybersecurity Exam Notes

Source: Juni_2026_Exams/Advance_Forensics/LOGIN_INSTRUCTIONS.md

University Environment Login Instructions

Purpose: Quick, reproducible steps to connect to the university (UNI) lab environment so you can test exercises during preparation.

Replace placeholder values (<...>) with the real hostnames, usernames and VPN portal your Uni provides.


Prerequisites


Common Values (replace these)


Connect (macOS / Linux)

  1. Start VPN (if required) using the Uni's instructions or client.
  2. Test network reachability:

ping -c 3 <forensic01.uni.edu>

  1. SSH directly (no jump host):

ssh -i ~/.ssh/id_rsa <your-uni-username>@<forensic01.uni.edu>

  1. SSH via bastion / jump host:

ssh -J <your-uni-username>@<bastion.uni.edu> <your-uni-username>@<forensic01.uni.edu>

  1. If the SSH uses a non-standard port (e.g. 2222):

ssh -p 2222 -i ~/.ssh/id_rsa <your-uni-username>@<forensic01.uni.edu>

  1. Use verbose output for troubleshooting:

ssh -vvv -i ~/.ssh/id_rsa <your-uni-username>@<forensic01.uni.edu>


Windows (PuTTY / OpenSSH)


VS Code Remote-SSH

  1. Install Remote - SSH extension.
  2. Add an entry to ~/.ssh/config:
Host uni-forensic
  HostName <forensic01.uni.edu>
  User <your-uni-username>
  IdentityFile ~/.ssh/id_rsa
  ProxyJump <your-uni-username>@<bastion.uni.edu>
  1. Connect from VS Code: Remote-SSH β†’ Connect to Host… β†’ uni-forensic.

Test Checklist (once connected)

cd ~/IHU_CYBERSECURITY_EXAMS || git clone git@github.com:sfigas/IHU_CYBERSECURITY_EXAMS.git
cd IHU_CYBERSECURITY_EXAMS
git checkout -b test/login-verify
echo "login test by <your-uni-username> on $(date)" > login-test.txt
git add login-test.txt
git commit -m "test: login verification"
git push --set-upstream origin test/login-verify

Troubleshooting


Security Notes


If you give me the exact hostnames/usernames or want me to add a ~/.ssh/config template with your real values, tell me and I'll patch the file accordingly.