Hi, I'm a beginner to networking and home lab stuff so I apologize in advance if this is duplicate post or whatever. I've done my research but I'm not sure how to troubleshoot the issue assessing the management interface post-installation. I'll try to distill some of the things I've tried and
DHCP IP Pool: 192.168.0.100 - 192.168.0.249 (ensured the server Ip avoided these ip addresses)
output: cat /etc/network/interfaces
output: cat /etc/network/interfaces
abridged output: ip a
2: eno1 is up
4: vmbr0: is up
inet 192.168.100.2/24
The output on host server(server running proxmox) for "curl -k https://192.168.100.2:8006" looks to show the HTML for the Management Interface.
Issue: Timeout accessing Management Interface from another PC web browser. Not sure what's next to investigate.
Thanks in advance for the help.
DHCP IP Pool: 192.168.0.100 - 192.168.0.249 (ensured the server Ip avoided these ip addresses)
output: cat /etc/network/interfaces
Code:
iface lo inet loopback
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.100.2/24
gateway 192.168.0.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
iface wlp9s0 inet manual
output: cat /etc/network/interfaces
Code:
127.0.0.1 localhost.localdomain localhost
192.168.100.2 pve.home pve
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
fe00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
abridged output: ip a
2: eno1 is up
4: vmbr0: is up
inet 192.168.100.2/24
The output on host server(server running proxmox) for "curl -k https://192.168.100.2:8006" looks to show the HTML for the Management Interface.
Issue: Timeout accessing Management Interface from another PC web browser. Not sure what's next to investigate.
Thanks in advance for the help.