Skip to content

Instantly share code, notes, and snippets.

@audabas
audabas / proxmox-proxy.md
Last active April 19, 2024 13:08 — forked from caraar12345/proxmox-proxy.md
Running Proxmox behind a single IP address

I ran into the battle of running all of my VMs and the host node under a single public IP address. Luckily, the host is just pure Debian, and ships with iptables.

What needs to be done is essentially to run all the VMs on a private internal network. Outbound internet access is done via NAT. Inbound access is via port forwarding.

Network configuration

Here’s how it’s done:

  • Create a virtual interface that serves as the gateway for your VMs:
@audabas
audabas / install-sass-and-compass
Created August 12, 2020 15:40 — forked from jasodeep/install-sass-and-compass
Install Sass & Compass on debian
sudo aptitude install ruby-full
sudo gem install sass
sudo gem install compass
@audabas
audabas / wifikill.sh
Created May 20, 2016 12:53 — forked from doylefermi/wifikill.sh
A Wifikill made in bash using nmap and arpspoof.
#!/bin/bash
#Federico Ponzi
#GPLv2
usage()
{
echo "Usage: $0 [-all][-list][-i] xxx.xxx.xxx.xxx"
}
help()
#!/bin/bash
apt-get update
#Additional Packages
apt-get install -y unzip zsh
wget --no-check-certificate http://install.ohmyz.sh -O - | sh
chsh vagrant -s /bin/zsh