Proxmox DHCP isc

MikexD

Renowned Member
Jul 3, 2015
7
0
66
Hallo Leute,

da ich ein Projekt habe, wo meine Freunde und ich VM benötigen würde ich euere Hilfe benötigen.

Ich möchte gern ein DHCP mit IPv4 und IPv6 einrichten.

Leider bekomme ich nur zum Host zu VM oder VM zu VM ein Ping, leider nicht nach außen.

Und habe ein Public Subnetz IPv4 und IPv6.

Code:
auto lo
iface lo inet loopback

iface eth0 inet manual

auto vmbr0
iface vmbr0 inet static
    address  84.200.200.124
    hwaddress aa:bb:cc:dd:ee -> ist nur ein Beispiel von ein Mac Address!
    netmask  255.255.255.192
    gateway  84.200.200.65
    bridge_ports eth0
    bridge_stp off
    bridge_fd 0

Code:
# dhcpd.conf
option domain-name-servers 8.8.8.8, 8.8.4.4;
default-lease-time 600;
max-lease-time 7200;
ddns-update-style none;
authoritative;
log-facility local7;

subnet 84.200.200.64  netmask 255.255.255.192 {
range 84.200.200.75 84.200.200.80;
option subnet-mask 255.255.255.192;
option routers 84.200.200.124;
interface vmbr0;
}

Code:
default-lease-time 2592000;
preferred-lifetime 604800;
option dhcp-renewal-time 3600;
option dhcp-rebinding-time 7200;
allow leasequery;
option dhcp6.name-servers 2001:4860:4860::8888;
#option dhcp6.domain-search "vhost01";

# A third subnet behind a relay agent chain
subnet6 2a0a:51c0:0000:0044::/64 {
    range6 2a0a:51c0:0000:0044::10 2a0a:51c0:0000:0044::ffff;
}

Code:
/etc/default/isc-dhcp-server

INTERFACESv4="vmbr0"
INTERFACESv6="vmbr0"
 
Last edited:
Sehe ich das richtig, dass der Proxmox-Server auch gleich den DHCP machen soll?

"option routers 84.200.200.124;" ist die IP deines Proxmox, aber nicht die deines Gateways.
Entweder du aktivierst IP-Forwarding auf dem Proxmox oder änderst den Eintrag auf 84.200.200.65
 

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!