host and guest not visible in local network

tredok

Member
Nov 11, 2019
13
0
21
France
Hello,

I've got a new modem-router (Zyxel VMG8825-T50) and I've got an issue with Proxmox (7.4-17). My problem seems linked to Proxmox.

At first, my host dosen't appear on my local network. I fact, it appear four or five times, but disappear. I can't reach the GUI. But, I can access to it via SSH, Webdav, or mounting a samba share. The VM are not detected and I can't reach any of them.

This morning, I've tried to list the VM, and Proxmox send me an error which help to solved some things. I've added the host name in /etc/host. Now, :
* connect to GUI : ok
* guests detected : ok

There are still two problems :
* host is not detected in my local network, but I can ping google and updated the OS
* guests doesn't have access to the web

Do you have an idea ? Is there some things I can do to investigate ?
 
Hi,

Hard to say without more inforamtion, could you please share your network configuration and the output of `ip a` command from your Proxmox VE host?
 
What do you mean about the network configuration ? The architecture, which hardware ? A schema ? Or some files ?

The output of ip a

Code:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: enp2s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master vmbr0 state UP group default qlen 1000
    link/ether 90:2b:34:66:fe:be brd ff:ff:ff:ff:ff:ff
3: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 12:ae:d3:6f:4f:d1 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.253/24 brd 192.168.1.255 scope global vmbr0
       valid_lft forever preferred_lft forever
    inet6 2001:41d0:fc2b:a900:10ae:d3ff:fe6f:4fd1/64 scope global dynamic mngtmpaddr
       valid_lft 2591904sec preferred_lft 604704sec
    inet6 fe80::10ae:d3ff:fe6f:4fd1/64 scope link
       valid_lft forever preferred_lft forever
4: tap101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master fwbr101i0 state UNKNOWN group default qlen 1000
    link/ether e2:90:b0:ce:08:42 brd ff:ff:ff:ff:ff:ff
5: fwbr101i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether ce:d1:ef:9e:ce:11 brd ff:ff:ff:ff:ff:ff
6: fwpr101p0@fwln101i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
    link/ether 4e:91:ae:d2:db:fd brd ff:ff:ff:ff:ff:ff
7: fwln101i0@fwpr101p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr101i0 state UP group default qlen 1000
    link/ether 86:06:3d:00:53:20 brd ff:ff:ff:ff:ff:ff
 
Last edited:
There it is :

Code:
auto lo
iface lo inet loopback

auto enp2s0
iface enp2s0 inet manual

auto vmbr0
iface vmbr0 inet static
        address 192.168.1.253/24
        gateway 192.168.1.254
        bridge-ports enp2s0
        bridge-stp off
        bridge-fd 0
 
Last edited:
Update.

Guest have access to internet. A service was down.

Host is still not detected. It works but I'm not sure it's normal. If you think it is, then my problem is solved ^^