HomeNetworkSimulating a bad connection / packet loss with iptables Simulating a bad connection / packet loss with iptables Linux Network 24. November 201613. Mai 2024 Daniel This will randomly drop 60% of outgoing packages with a local process as source. Use it for testing purposes or if you need a good laugh. #!/bin/bash iptables -A OUTPUT -m statistic --mode random --probability 0.6 -j DROP
Debian Jessie LXC networking. Containers with public and NATed IPs It took me some time to get this working so it’s time for a blog post: Scenario This was a…
Eine Sammlung kleiner Proxmox Tipps Hier sammele ich Kleinigkeiten, die im Umgang mit Proxmox helfen können. Container manuell mounten Falls man sich einen Container zerschossen…
VAULT – A small script to create and mount encfs encrypted directories on the fly This small script will allow you to create, mount and unmount encfs directories on the fly. As the need for…