hello,
I have a problem connecting to guests. eg. when I ssh from host(192.168.1.16) to the guest (192.168.1.17)
instead the guest login i get the login from the host.
i have quite a simple network configuration on host:
on the guest (ubuntu 20.04 with netplan)
from there i have access to LAN and internet but not to the host on 192.168.1.16
the host is configured pretty much the same like another one in the same Network - but there's running everything as expected (IP Subnet 192.168.1.8/29)
i can ssh from host (192.168.1.8) to guest (192.168.1.9) and back again from guest to host
the only difference between the two hosts is: one is a pure proxmox installation and the other one (working) proxmox on top of debian
I have a problem connecting to guests. eg. when I ssh from host(192.168.1.16) to the guest (192.168.1.17)
instead the guest login i get the login from the host.
i have quite a simple network configuration on host:
Code:
root@pve:~# cat /etc/network/interfaces
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet static
address 192.168.1.16/24
gateway 192.168.1.1
iface eno2 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.16/29
gateway 192.168.1.1
bridge-ports eno2
bridge-stp off
bridge-fd 0
root@pve:~#
Code:
root@pve:~# ip r
default via 192.168.1.1 dev eno1 proto kernel onlink
192.168.1.0/24 dev eno1 proto kernel scope link src 192.168.1.16
192.168.1.16/29 dev vmbr0 proto kernel scope link src 192.168.1.17
root@pve:~#
on the guest (ubuntu 20.04 with netplan)
Code:
# ip address
....
2: ens18: ....
inet 192.168.1.17/24 brd 192.168.1.255 scope global ens18
from there i have access to LAN and internet but not to the host on 192.168.1.16
the host is configured pretty much the same like another one in the same Network - but there's running everything as expected (IP Subnet 192.168.1.8/29)
i can ssh from host (192.168.1.8) to guest (192.168.1.9) and back again from guest to host
the only difference between the two hosts is: one is a pure proxmox installation and the other one (working) proxmox on top of debian