Second IP range on vlan help

RenatoMN

Member
Oct 1, 2008
48
0
6
I have a Proxmox VE on vlan13, I recently asked my data center to give me additional ips. This is what the current switch setup is:

interface Vlan13
ip address 67.205.151.129 255.255.255.224 secondary
ip address 207.154.203.225 255.255.255.224
ip helper-address 67.207.75.253

How can I add the secondary range to my VE to that my virtual machines can use those new ips?

Thanks,
 
its currently

Code:
# network interface settings
auto lo
iface lo inet loopback

iface eth0 inet manual

auto vmbr0
iface vmbr0 inet static
        address  207.154.203.226
        netmask  255.255.255.224
        gateway  207.154.203.225
        bridge_ports eth0
        bridge_stp off
        bridge_fd 0

it was working fine without "iface eth0 inet manual"

i just forgot to remove after try some weird configs :P