Translating technical sales excellence into secure, automated infrastructure management. Currently building a high-performance home lab (Proxmox, IaC, AI) while pursuing a CS degree at the University of Turku.
Top 5 skills from virtualization to AI-powered infrastructure
Advanced Proxmox VE management with Type-1 hypervisor expertise. Building production-grade multi-node environments for testing enterprise networking and storage solutions. Hands-on experience with containerization and VM orchestration.
VLAN segmentation, secure gateway configuration (Debian-based), and firewall management (OPNsense/pfSense). Implementing defense-in-depth strategies with network monitoring and traffic analysis. Building secure, isolated network zones.
Enterprise-level storage management with TrueNAS for reliable data integrity and media service deployment. Implementing RAID configurations, snapshot management, and automated backup strategies for production environments.
Infrastructure as Code using Ansible for automated deployments and configuration management. Version control with Git for infrastructure code. Scripting expertise in Python and Bash for custom automation solutions.
Deploying and managing GPU-accelerated nodes for local AI and Large Language Model (LLM) applications. Ubuntu-powered compute infrastructure for machine learning workloads and high-performance computing tasks.
From technical sales to infrastructure architecture
Currently working in technical sales, I have developed a sharp focus on problem-solving and high-pressure environment management. My background in spare parts sales has taught me how to navigate complex systems and provide clear, technical solutions to clients—skills I am now translating into a career in Information Technology.
As a Computer Science student at the University of Turku (expected 2027), I balance academic theory with intensive practical application. I am driven by a passion for designing secure networks and understanding the underlying architecture of modern cloud environments.
I don't just learn from books; I build.
My daily routine involves managing a
production-grade home lab where I experiment
with:
• Virtualization (Proxmox)
• Network segmentation (VLANs)
• Automation (Ansible, IaC)
• AI/LLM deployment
My immediate goal is to secure a role in
Help Desk, ICT Support, or Junior SOC
operations to apply my skills in a
professional environment while progressing
toward Cloud Security Architecture.
Current IT skills combined with cloud security tools and automation expertise
Proficient in Windows and macOS environments with hands-on experience in Active Directory, Group Policy, and user management. Skilled in hardware/software troubleshooting, network diagnostics, and IT documentation. Building expertise in Linux system administration and PowerShell scripting for automation.
# Automated user provisioning script
Import-Module ActiveDirectory
$users = Import-Csv "users.csv"
foreach ($user in $users) {
New-ADUser `
-Name $user.Name `
-GivenName $user.FirstName `
-Surname $user.LastName `
-SamAccountName $user.Username `
-UserPrincipalName "$($user.Username)@domain.com" `
-Path "OU=Users,DC=domain,DC=com" `
-AccountPassword (ConvertTo-SecureString "TempPass123!" -AsPlainText -Force) `
-Enabled $true
Write-Host "Created user: $($user.Name)"
}
Developing cloud security skills through AWS and Azure platforms. Hands-on experience with Ansible for configuration management, Git for version control, and building secure home lab environments. Actively learning SIEM tools, network security, and threat detection through TryHackMe and Hack The Box.
---
- name: Security Hardening Playbook
hosts: all
become: yes
tasks:
- name: Update all packages
apt:
upgrade: dist
update_cache: yes
- name: Configure firewall
ufw:
rule: allow
port: '{{ item }}'
loop:
- '22'
- '443'
- name: Enable UFW
ufw:
state: enabled
policy: deny
Advanced Proxmox virtualization lab - A secure, multi-node environment for enterprise-grade testing
A secure, multi-node environment designed for testing enterprise-grade networking and storage solutions. Type-1 Hypervisor (Proxmox) hosting a variety of specialized VMs with dedicated secure gateway to bridge and monitor external-to-internal traffic flow.
Lumina Home Lab Architecture:
┌─────────────────────────────────┐
│ Proxmox VE (Type-1 Hypervisor) │
├─────────────────────────────────┤
│ • Secure Gateway │
│ └─ External ↔ Internal Bridge │
│ │
│ • TrueNAS Storage Layer │
│ └─ Media & Data Integrity │
│ │
│ • Ubuntu GPU Node │
│ └─ Local AI/LLM Deployment │
│ │
│ • OPNsense Firewall │
│ └─ VLAN Segmentation │
└─────────────────────────────────┘
Future: VDI for secure remote access
Secure Access: Implemented a dedicated secure gateway to bridge
and monitor external-to-internal traffic flow.
Storage & Apps: TrueNAS-driven storage layer for reliable media management
and data integrity.
AI Compute: Ubuntu-powered GPU node dedicated to running local Large Language
Models (LLMs) and compute-heavy tasks.
Future Roadmap: Currently architecting a scalable Virtual Desktop Infrastructure
(VDI) to provide secure, remote access to internal resources.
---
- name: Deploy Proxmox VM
hosts: proxmox
tasks:
- name: Create VM from template
proxmox_kvm:
api_host: "{{ proxmox_host }}"
api_user: "{{ proxmox_user }}"
api_password: "{{ proxmox_password }}"
name: "{{ vm_name }}"
node: "{{ proxmox_node }}"
clone: "{{ template_name }}"
storage: "{{ storage_pool }}"
cores: 4
memory: 8192
net:
net0: 'virtio,bridge=vmbr0,tag=100'
state: present
Continuous professional development toward Cloud Security Engineer role
CS Student (University of Turku): Strong theoretical foundation in computer science.
Hands-on Architect: Proven ability to build complex, secure systems from the ground up.
Communication: Years of experience in technical sales—I can speak both 'human' and 'machine'.
Growth Mindset: Actively specializing in Cloud Security (AWS/Azure) and SOC analysis.