I have a dedicated server from Hetzner with proxmox 4, my main server Ip is 46.4.90.241 and I have an additional ip (46.4.90.232) I want to use this additional ip on a windows VM, use this ip to connect to my windows VM through RDP etc
My network device configuration is e1000=00:50:56:00:52:A4,bridge=vmbr0 (I tried using VirtIO but i have the same problem)
My /etc/network/interfaces config:
My network device configuration is e1000=00:50:56:00:52:A4,bridge=vmbr0 (I tried using VirtIO but i have the same problem)
My /etc/network/interfaces config:
Code:
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto eth0
iface eth0 inet static
address 46.4.90.241
netmask 255.255.255.224
gateway 46.4.90.225
up route add -net 46.4.90.232 netmask 255.255.255.224 gw 46.4.90.225 eth0
up route add -net 46.4.90.224 netmask 255.255.255.224 gw 46.4.90.225 dev eth0
# route 46.4.90.224/27 via 46.4.90.225
iface eth0 inet6 static
address 2a01:4f8:140:73dd::2
netmask 64
gateway fe80::1
up ip route add 2a01:4f8:140:73dd::3/64 dev eth0
auto vmbr0
iface vmbr0 inet static
address 46.4.90.241
netmask 255.255.255.224
bridge_ports none
bridge_stp off
bridge_fd 0
up ip route add 46.4.90.232/32 dev vmbr0
Last edited: