Proxmox KVM Bridge - Netzwerkkonfiguration

speedone

New Member
Hallo,

ich betreibe einen Debian Lenny Server mit einer Proxmox Virtualisierungsumgebung. Mit der folgenden Konfiguration ist meine Windows 7 VM als Gast auch im Internet erreichbar (und hat auch auf das Internet Zugriff), allerdings kann ich ausgehend von der VM keine anderen Server aus meinem Netzwerk 94.xxx.xxx.0 erreichen.
Das Hostsystem kann alle Server einwandfrei erreichen.

Folgende Konfiguration hat der Host:
Code:
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
auto eth0
iface eth0 inet static
        address 94.xxx.xxx.92
        netmask 255.255.255.0
        network 94.xxx.xxx.0
        broadcast 94.xxx.xxx.255
        gateway 94.xxx.xxx.1
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers xxx.xx.xxx.xx
        dns-search ***

auto vmbr0
iface vmbr0 inet static
        address 94.xxx.xxx.92
        netmask 255.255.255.0
        network 94.xxx.xxx.0
        broadcast 94.xxx.xxx.255
        bridge_ports none
        bridge_stp off
        bridge_fd 0
        up ip route add 94.xxx.xxx.93 dev vmbr0
        up ip route add 94.xxx.xxx.94 dev vmbr0
        up ip route add 94.xxx.xxx.95 dev vmbr0
        up ip route add 94.xxx.xxx.96 dev vmbr0
        up ip route add 94.xxx.xxx.97 dev vmbr0

sysctl -p
Code:
net.ipv4.conf.all.rp_filter = 1
net.ipv4.icmp_echo_ignore_broadcasts = 1
net.ipv4.conf.default.forwarding = 1
net.ipv4.conf.default.proxy_arp = 0
net.ipv4.ip_forward = 1
kernel.sysrq = 1
net.ipv4.conf.default.send_redirects = 1
net.ipv4.conf.all.send_redirects = 0
net.ipv4.conf.eth0.proxy_arp = 1

Die Virtuelle Maschine (Windows 7) hat die folgende Konfiguration:

IP: 94.xxx.xxx.93
Mask: 255.255.255.0
Gateway: 94.xxx.xxx.92
Der Zugriff auf z. B. 94.xxx.xxx.229 ist nicht möglich.

Habe ich einen Denkfehler oder eine falsche Konfiguration?
 
Back
Top