Systeminfo on PI3 shows wrong IP?

I am running openHABian on a Raspberry Pi 3 with Systeminfo Binding shows me this
immagine

but I’m sure that the network IP is different

$ ifconfig
eth0      Link encap:Ethernet  HWaddr b8:27:eb:1f:84:db                                                                                                                                                             
          inet addr:192.168.0.80  Bcast:192.168.0.255  Mask:255.255.255.0                                                                                                                                           
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1                                                                                                                                                        
          RX packets:1532663 errors:0 dropped:4823 overruns:0 frame:0                                                                                                                                               
          TX packets:1566200 errors:0 dropped:0 overruns:0 carrier:0                                                                                                                                                
          collisions:0 txqueuelen:1000                                                                                                                                                                              
          RX bytes:191153113 (182.2 MiB)  TX bytes:1048466896 (999.8 MiB)                                                                                                                                           
                                                                                                                                                                                                                    
lo        Link encap:Local Loopback                                                                                                                                                                                 
          inet addr:127.0.0.1  Mask:255.0.0.0                                                                                                                                                                       
          UP LOOPBACK RUNNING  MTU:65536  Metric:1                                                                                                                                                                  
          RX packets:87687 errors:0 dropped:0 overruns:0 frame:0                                                                                                                                                    
          TX packets:87687 errors:0 dropped:0 overruns:0 carrier:0                                                                                                                                                  
          collisions:0 txqueuelen:1                                                                                                                                                                                 
          RX bytes:12140904 (11.5 MiB)  TX bytes:12140904 (11.5 MiB)                                                                                                                                                
                                                                                                                                                                                                                    
wlan0     Link encap:Ethernet  HWaddr b8:27:eb:4a:d1:8e                                                                                                                                                             
          UP BROADCAST MULTICAST  MTU:1500  Metric:1                                                                                                                                                                
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0                                                                                                                                                        
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0                                                                                                                                                      
          collisions:0 txqueuelen:1000                                                                                                                                                                              
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

where am I making a mistake?
ty
Ale

What property are you using to define the Network_IP item?

I use these items

String Network_Name     (gSystem)       { channel="systeminfo:computer:Pi3due:network#networkName" }
String Network_IP       (gSystem)       { channel="systeminfo:computer:Pi3due:network#ip" }

and this in /etc/network/interfaces

auto eth0
allow-hotplug eth0
    iface eth0 inet static
        address 192.168.0.80
        netmask 255.255.255.0
        gateway 192.168.0.1

It appears this may be a defect. My guess is it lies in the underlying library and not in OH.

Normally I would suggest pulling a debug log, but there appears to be no reasonable logging in the systeminfo binding, so in this case, it wouldn’t likely be of any help.

I recommend opening a defect in the OH2 issue tracker.