[GH-ISSUE #372] errors with interfaces #278

Closed
opened 2026-02-27 16:38:42 +03:00 by kerem · 11 comments
Owner

Originally created by @lautrecote on GitHub (Jul 22, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/372

Hello, I just installed webvirtmgr, it works well.
I just have a problème with the page "interfaces"

It throws an error : "libvirt: Network Interface Driver error : internal error: failed to get number of host interfaces: unspecified error - errors in loading some config files"

I don't know what are those config files with errors, ca omeone help me ?

thank you :-)

Originally created by @lautrecote on GitHub (Jul 22, 2014). Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/372 Hello, I just installed webvirtmgr, it works well. I just have a problème with the page "interfaces" It throws an error : "libvirt: Network Interface Driver error : internal error: failed to get number of host interfaces: unspecified error - errors in loading some config files" I don't know what are those config files with errors, ca omeone help me ? thank you :-)
kerem closed this issue 2026-02-27 16:38:42 +03:00
Author
Owner

@zodman commented on GitHub (Jul 22, 2014):

the error it is for libvirt and not for webvirtmgr.

<!-- gh-comment-id:49764140 --> @zodman commented on GitHub (Jul 22, 2014): the error it is for libvirt and not for webvirtmgr.
Author
Owner

@retspen commented on GitHub (Jul 22, 2014):

@zodman You are right! @lautrecote Can you show interfaces and what did you do?

<!-- gh-comment-id:49795484 --> @retspen commented on GitHub (Jul 22, 2014): @zodman You are right! @lautrecote Can you show interfaces and what did you do?
Author
Owner

@lautrecote commented on GitHub (Jul 23, 2014):

@zodman does it mean that there is nothing to do ? Or that the question is debated in another forum ?
@zodman I don't understant your question : in fact, I don't really know what are these interfaces : are they the physical interfaces (eth0, eth1, etc.) or the virtual network interfaces created by qemu ? Or perhaps we can define interfaces for libvirt, just like networks, via an XML file ?

<!-- gh-comment-id:49835549 --> @lautrecote commented on GitHub (Jul 23, 2014): @zodman does it mean that there is nothing to do ? Or that the question is debated in another forum ? @zodman I don't understant your question : in fact, I don't really know what are these interfaces : are they the physical interfaces (eth0, eth1, etc.) or the virtual network interfaces created by qemu ? Or perhaps we can define interfaces for libvirt, just like networks, via an XML file ?
Author
Owner

@retspen commented on GitHub (Jul 23, 2014):

@lautrecote What linux do you use?

<!-- gh-comment-id:49838463 --> @retspen commented on GitHub (Jul 23, 2014): @lautrecote What linux do you use?
Author
Owner

@lautrecote commented on GitHub (Jul 23, 2014):

My linux box is a debian jessie

I just have a new result : editing /etc/network/interfaces, I remove the spaces befoes comments (!)
virsh iface-list and webvirtmgr are both ok
Juste to be sure, I rewrite /etc/network/interfaces with spaces before some comments : always OK

here is me /etc/network/interfaces :

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth1
auto eth1
iface eth1 inet dhcp
  #iface eth1 inet manual
        #up ifconfig $IFACE 0.0.0.0 up
          #down ifconfig $IFACE down


#
auto eth0
iface eth0 inet manual
        up ifconfig $IFACE 0.0.0.0 up
        down ifconfig $IFACE down

auto br0
iface br0 inet static
        bridge_ports eth0
        bridge_maxwait 0
        bridge_stp on
        bridge_fd 0
        address 192.168.25.1
        netmask 255.255.255.0
        network 192.168.25.0

#auto br1
#iface br1 inet dhcp
        #bridge_ports eth1
        #bridge_maxwait 0
        #bridge_stp on
        #bridge_fd 0

#auto br0
#iface br0 inet static
        #address 192.168.25.2
        #netmask 255.255.255.0
        #bridge_ports eth0
        #bridge_maxwait 0
        #bridge_stp on
        #bridge_fd 0

the command virsh iface-list gives me :

Name                 State      MAC Address
---------------------------------------------------
 br0                  active     78:e7:d1:61:95:5c
 eth1                 active     52:54:00:3d:9a:b0
 lo                   active     00:00:00:00:00:00

I don't have eth0, perhaps because it is specified with IP 0.0.0.0 ?

<!-- gh-comment-id:49838792 --> @lautrecote commented on GitHub (Jul 23, 2014): My linux box is a debian jessie I just have a new result : editing /etc/network/interfaces, I remove the spaces befoes comments (!) virsh iface-list and webvirtmgr are both ok Juste to be sure, I rewrite /etc/network/interfaces with spaces before some comments : always OK here is me /etc/network/interfaces : ``` # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug eth1 auto eth1 iface eth1 inet dhcp #iface eth1 inet manual #up ifconfig $IFACE 0.0.0.0 up #down ifconfig $IFACE down # auto eth0 iface eth0 inet manual up ifconfig $IFACE 0.0.0.0 up down ifconfig $IFACE down auto br0 iface br0 inet static bridge_ports eth0 bridge_maxwait 0 bridge_stp on bridge_fd 0 address 192.168.25.1 netmask 255.255.255.0 network 192.168.25.0 #auto br1 #iface br1 inet dhcp #bridge_ports eth1 #bridge_maxwait 0 #bridge_stp on #bridge_fd 0 #auto br0 #iface br0 inet static #address 192.168.25.2 #netmask 255.255.255.0 #bridge_ports eth0 #bridge_maxwait 0 #bridge_stp on #bridge_fd 0 ``` the command virsh iface-list gives me : ``` Name State MAC Address --------------------------------------------------- br0 active 78:e7:d1:61:95:5c eth1 active 52:54:00:3d:9a:b0 lo active 00:00:00:00:00:00 ``` I don't have eth0, perhaps because it is specified with IP 0.0.0.0 ?
Author
Owner

@lautrecote commented on GitHub (Jul 23, 2014):

"I don't have eth0, perhaps because it is specified with IP 0.0.0.0 ?"
or prehaps because it's in the br0 bridge ?

<!-- gh-comment-id:49838844 --> @lautrecote commented on GitHub (Jul 23, 2014): "I don't have eth0, perhaps because it is specified with IP 0.0.0.0 ?" or prehaps because it's in the br0 bridge ?
Author
Owner

@lautrecote commented on GitHub (Jul 23, 2014):

oupsss sorry for the giant characters :-(
it seems that this forum takes the unix shell comments for title ?

<!-- gh-comment-id:49838916 --> @lautrecote commented on GitHub (Jul 23, 2014): oupsss sorry for the giant characters :-( it seems that this forum takes the unix shell comments for title ?
Author
Owner

@lautrecote commented on GitHub (Jul 23, 2014):

Ok, virsh iface-list doesn't show eth0 because it's part of the bridge br0
(I tried to replace eth0 by eth1, and virsh iface-list shows eth0 :-)

<!-- gh-comment-id:49839685 --> @lautrecote commented on GitHub (Jul 23, 2014): Ok, virsh iface-list doesn't show eth0 because it's part of the bridge br0 (I tried to replace eth0 by eth1, and virsh iface-list shows eth0 :-)
Author
Owner

@retspen commented on GitHub (Jul 28, 2014):

Can you show your nginx log file?

<!-- gh-comment-id:50303037 --> @retspen commented on GitHub (Jul 28, 2014): Can you show your nginx log file?
Author
Owner

@lautrecote commented on GitHub (Jul 28, 2014):

here is it :

192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET / HTTP/1.1" 302 5 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /login HTTP/1.1" 301 5 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /login/ HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/css/bootstrap.min.css HTTP/1.1" 200 97339 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/css/webvirtmgr.css HTTP/1.1" 200 3399 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/css/signin.css HTTP/1.1" 200 780 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/img/favicon.ico HTTP/1.1" 200 2238 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/js/bootstrap.min.js HTTP/1.1" 200 27726 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:16:59 +0200] "GET /static/js/jquery-1.10.2.js HTTP/1.1" 200 273199 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:05 +0200] "POST /login/ HTTP/1.1" 302 5 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:05 +0200] "GET /servers/ HTTP/1.1" 200 2491 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/css/table-sort.css HTTP/1.1" 200 344 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/css/bootstrap.min.css HTTP/1.1" 200 97339 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/css/webvirtmgr.css HTTP/1.1" 200 3399 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/js/bootstrap.min.js HTTP/1.1" 200 27726 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/img/favicon.ico HTTP/1.1" 200 2238 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 16448 "http://wvm.mondomaine.com/static/css/bootstrap.min.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/js/jquery-1.10.2.js HTTP/1.1" 200 273199 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:10 +0200] "GET /instances/1/ HTTP/1.1" 200 4451 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:14 +0200] "GET /interfaces/1/ HTTP/1.1" 200 2621 "http://wvm.mondomaine.com/instances/1/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:19 +0200] "GET /networks/1/ HTTP/1.1" 200 2014 "http://wvm.mondomaine.com/interfaces/1/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:22 +0200] "GET /instances/1/ HTTP/1.1" 200 4451 "http://wvm.mondomaine.com/networks/1/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:28 +0200] "GET /instance/1/hera/ HTTP/1.1" 200 8347 "http://wvm.mondomaine.com/instances/1/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:28 +0200] "GET /static/js/Chart.min.js HTTP/1.1" 200 49949 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:34 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1506 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2 HTTP/1.1" 200 2304 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/base.css HTTP/1.1" 200 9168 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/util.js HTTP/1.1" 200 12423 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/img/favicon.ico HTTP/1.1" 200 2238 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/base64.js HTTP/1.1" 200 4102 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/webutil.js HTTP/1.1" 200 5973 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/des.js HTTP/1.1" 200 10682 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/websock.js HTTP/1.1" 200 11372 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/display.js HTTP/1.1" 200 23070 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/jsunzip.js HTTP/1.1" 200 19367 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/input.js HTTP/1.1" 200 52052 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:36 +0200] "GET /static/js/novnc/rfb.js HTTP/1.1" 200 60310 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:39 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1506 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:43 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1506 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:47 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:52 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:17:56 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:18:00 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:18:04 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:18:09 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:18:13 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1548 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
192.168.25.132 - - [28/Jul/2014:08:18:17 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1548 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"

<!-- gh-comment-id:50304023 --> @lautrecote commented on GitHub (Jul 28, 2014): here is it : 192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET / HTTP/1.1" 302 5 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /login HTTP/1.1" 301 5 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /login/ HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/css/bootstrap.min.css HTTP/1.1" 200 97339 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/css/webvirtmgr.css HTTP/1.1" 200 3399 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/css/signin.css HTTP/1.1" 200 780 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/img/favicon.ico HTTP/1.1" 200 2238 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:16:58 +0200] "GET /static/js/bootstrap.min.js HTTP/1.1" 200 27726 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:16:59 +0200] "GET /static/js/jquery-1.10.2.js HTTP/1.1" 200 273199 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:05 +0200] "POST /login/ HTTP/1.1" 302 5 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:05 +0200] "GET /servers/ HTTP/1.1" 200 2491 "http://wvm.mondomaine.com/login/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/css/table-sort.css HTTP/1.1" 200 344 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/css/bootstrap.min.css HTTP/1.1" 200 97339 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/css/webvirtmgr.css HTTP/1.1" 200 3399 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/js/bootstrap.min.js HTTP/1.1" 200 27726 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/img/favicon.ico HTTP/1.1" 200 2238 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 16448 "http://wvm.mondomaine.com/static/css/bootstrap.min.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:06 +0200] "GET /static/js/jquery-1.10.2.js HTTP/1.1" 200 273199 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:10 +0200] "GET /instances/1/ HTTP/1.1" 200 4451 "http://wvm.mondomaine.com/servers/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:14 +0200] "GET /interfaces/1/ HTTP/1.1" 200 2621 "http://wvm.mondomaine.com/instances/1/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:19 +0200] "GET /networks/1/ HTTP/1.1" 200 2014 "http://wvm.mondomaine.com/interfaces/1/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:22 +0200] "GET /instances/1/ HTTP/1.1" 200 4451 "http://wvm.mondomaine.com/networks/1/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:28 +0200] "GET /instance/1/hera/ HTTP/1.1" 200 8347 "http://wvm.mondomaine.com/instances/1/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:28 +0200] "GET /static/js/Chart.min.js HTTP/1.1" 200 49949 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:34 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1506 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2 HTTP/1.1" 200 2304 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/base.css HTTP/1.1" 200 9168 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/util.js HTTP/1.1" 200 12423 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/img/favicon.ico HTTP/1.1" 200 2238 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/base64.js HTTP/1.1" 200 4102 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/webutil.js HTTP/1.1" 200 5973 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/des.js HTTP/1.1" 200 10682 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/websock.js HTTP/1.1" 200 11372 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/display.js HTTP/1.1" 200 23070 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/jsunzip.js HTTP/1.1" 200 19367 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:35 +0200] "GET /static/js/novnc/input.js HTTP/1.1" 200 52052 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:36 +0200] "GET /static/js/novnc/rfb.js HTTP/1.1" 200 60310 "http://wvm.mondomaine.com/console/?token=1-51f713ad-5f70-2357-eeb9-448721eb0ae2" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:39 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1506 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:43 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1506 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:47 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:52 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:17:56 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:18:00 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:18:04 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:18:09 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1527 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:18:13 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1548 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0" 192.168.25.132 - - [28/Jul/2014:08:18:17 +0200] "GET /info/instusage/1/hera/ HTTP/1.1" 200 1548 "http://wvm.mondomaine.com/instance/1/hera/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
Author
Owner

@retspen commented on GitHub (Jul 31, 2014):

Fix - update project.

<!-- gh-comment-id:50720246 --> @retspen commented on GitHub (Jul 31, 2014): Fix - update project.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/webvirtmgr#278
No description provided.