How to bind a range of IP’s in Debian based linux

Problem: I would like to bind all 5 of my usable IP’s to the ‘eth0’ device Solution: Just define a new interface in /etc/network interfaces: ## Start auto eth0 auto eth0:0 auto eth0:1 auto eth0:2 auto eth0:3 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.248 gateway 192.168.1.1 iface eth0:0 inet static address 192.168.1.3 netmask 255.255.255.248… Continue reading How to bind a range of IP’s in Debian based linux