Hi,
My provider can give me more IP addresses if and only if I can play nice with his 802.1Q tagged VLAN network setup, with each subclassed IP address range on its own VLAN.
For testing, I have a Debian linux laptop with a VLAN enabled kernel and the vlan package installed, with its /etc/network/interfaces file configured more or less like this:
-- # /etc/network/interfaces auto lo iface lo inet loopback
# no gateway address for eth0 itself auto eth0 iface eth0 inet static address w.x.y.z netmask 255.255.255.0
## not the real vlan id :) auto eth0.1234 iface eth0.1234 inet static address 207.177.74.18 netmask 255.255.255.0 gateway 207.177.74.1
## not the real vlan id auto eth0.2345 iface eth0.2345 inet static address 207.177.73.226 netmask 255.255.255.240 gateway 207.177.73.225 metric 1
# repeat the above stanza 3 more times in its essentials to create # 5 VLANS total.