Proxmox mehrere IP adressen

DarkAngel2080

New Member
Dec 16, 2018
8
0
1
44
Heyho zusammen.

Ich habe Proxmox aufgesetzt, und versuche verzweifeld eine VM mit einer zusätzlichen IP zu versorgen. Jedoch gelingt mir dies nicht, und die VM hat kein Internet.
Wenn ich einen Ping ausführe, erhalte ich die Fehlermeldung: Der Name oder Dienst ist nicht bekannt.
Falls Ihr mir helfen könntet wo mein Fehler liegt, wäre das echt toll. Falls weitere Informationen benötigt werden, lasst es mich wissen. Anbei glaub alle benötigten Informationen vom Wirt und Gastsystem(als Gastsystem Debian 9 Stretch)Achja evtl noch wichtig zu wissen. Der Server steht bei Netcup:

Wirtsystem:
/etc/network/interfaces
Habe nur diese Informationen eingefügt. Muss man dort evtl noch was anderes machen?:/
Code:
iface lo inet loopback

auto ens3
iface ens3 inet manual

auto vmbr0
iface vmbr0 inet static
        address xxx.x5.15.0
        netmask 255.255.252.0
        gateway xxx.x5.12.1
        bridge_ports ens3
        bridge_stp off
        bridge_fd 0
        bridge_vlan_aware yes

        #additional IP´s come here
        up ip route add 91.204.xxx.xxx/32 dev vmbr0

Gastsystem (frisch aufgesetzt):
Code:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback

auto ens18
iface ens18 inet static
  address 91.204.xxx.xxx
  netmask 255.255.255.255
  pointopoint xxx.x5.15.0
  gateway xxx.x5.15.0
  dns-nameservers 1.1.1.1 1.0.0.1
Vielen Dank fürs lesen:)
 
Last edited:
Hallo DarkAngel,

darf ich fragen was du genau vor hast und wieso deine VM statt einer Private- eine Public-IP haben soll?
Vielleicht wäre eine Portweiterleitung doch vorteilhafter, weil damit ist nicht die ganze VM im Internet, sondern nur Dienste die es wirklich auch nur sein sollen.

Liebe Grüße
Da-TeX
 
Ich mache es immer so (grub: net.ifnames=0 biosdevname=0):


Code:
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
    address 95.*.*.95  #Haupt-IP
    netmask 255.255.255.192
    gateway 95.*.*.65
    up route add -net 95.*.*.64 netmask 255.255.255.192 gw 95.*.*.65

iface eth0 inet6 static
  address 2a01:4f9:*::2
  netmask 128
  gateway fe80::1


# Bridge mit Haupt-IP und Routen für die einzelnen Zusatz-IPs:
auto vmbr0
iface vmbr0 inet static
    address 95.*.*.95  #Haupt-IP
    netmask 255.255.255.255    # /32!!
    bridge_ports none
    bridge_stp off
    bridge_fd 0
   up route add -host 96.*.*.100 dev vmbr0      #Zusatz-IPs
   up route add -host 96.*.*.101 dev vmbr0
   up route add -host 96.*.*.102 dev vmbr0
   up route add -host 96.*.*.103 dev vmbr0
   up route add -host 96.*.*.104 dev vmbr0
   [...]

iface vmbr0 inet6 static
  address 2a01:4f9:*::2
  netmask 64


# VLAN zwischen den Hetzner-Servern:

auto vlan4010
iface vlan4010 inet manual
    vlan_raw_device eth0
    mtu 1400

auto vmbr2
iface vmbr2 inet static
    address  10.40.10.5
    netmask  255.255.255.0
    network  10.40.10.0
    bridge_ports vlan4010
    bridge_stp off
    bridge_fd 0

Innerhalb der VMs (KVM):
Code:
auto eth0
iface eth0 inet static
    address 96.*.*.101
    netmask 255.255.255.255
    pointopoint 95.*.*.95     #Haupt-IP
    gateway 95.*.*.95         #Haupt-IP
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!