[WEB GUI] Web GUI can't be accessed after change IP Address

dennish

New Member
Feb 17, 2015
7
0
1
good-for-share.blogspot.com
Dear My Friends,

I have some problem with Web GUI of the proxmox that I install,

The Version was pve-manager/3.1-21/93bf03d4 (running kernel: 2.6.32-26-pve)

After installation, I can access Web GUI and I change the IP Address and the interface, this is the rc.local config on my proxmox

# activate main interface
ifconfig eth1 up
ifconfig eth0 up

# activate vmbr
brctl addbr vmbr1
brctl addif vmbr1 eth1
brctl addbr vmbr0
brctl addif vmbr0 eth0
ifconfig vmbr1 up
ifconfig vmbr0 up

# add ip for manage proxmox
ifconfig vmbr1.5 172.17.5.253 netmask 255.255.255.0 up

# add routing
ip route add default via 172.17.5.1

After I reboot the machine, the proxmox can be access via ssh but Web GUI can't access anymore

Please kindly give me suggestion.

Thanks
 
Hi, have you also change the /etc/hosts ?
 
Hi wolfgang,

Thanks for your fast response,

I'm not change the /etc/host, it's still :

127.0.0.1 localhost.localdomain localhost
172.17.5.253 VM.Router1 VM pvelocalhost

on my first installation, 172.17.5.253 was set on VMBR0, and I just change it to VMBR1.5
after that, I can't access web management


Thanks
dennish
 
Hi wolfgang,

I was change the /etc/host

127.0.0.1 localhost.localdomain localhost
172.17.5.253 VMRouter1.localdomain VMRouter1 pvelocalhost

and the hostname was VMRouter1,

when I hits the GUI, It show untrusted, but after I give exception, the web just loading and never show the GUI
 
Why you config your Network not in the /etc/network/interfaces file?
 
It was more easy to config network in rc.local, I never try to config the network on /etc/network/interfaces, but
I will try it and give feedback soon

Hi wolfgang,

I was try to change the interface using /etc/network/interfaces :
here my config

auto lo
iface lo inet loopback

auto eth1
iface eth1 inet manual

auto vmbr0
iface vmbr0 inet static
address 0.0.0.0
netmask 0.0.0.0
# gateway
bridge_ports eth0
bridge_stp off
bridge_fd 0

auto vmbr1
iface vmbr1 inet static
address 0.0.0.0
netmask 0.0.0.0
# gateway
bridge_ports eth1
bridge_stp off
bridge_fd 1

auto vmbr1.5
iface vmbr1.5 inet static
address 172.17.5.253
netmask 255.255.255.0
gateway 172.17.5.1
bridge_port eth1
bridge_stp off
bridge_fd 1



I try open the browser with IP https://172.17.5.253:8006 but still, just loading and never show anything,

I was already upgrade the version to the latest one.

Any suggest ?