1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

B #2139: Show IPv6 Address in Network tab (#2149)

This commit is contained in:
Abel Coronado 2018-06-04 17:05:07 +02:00 committed by Ruben S. Montero
parent 1f55aeeed0
commit 6290b85d8b

View File

@ -299,10 +299,15 @@ define(function(require) {
var pci_address = is_pci ? nic.ADDRESS : '';
var ipStr = "IP";
if (nic.IP6 !== undefined){
ipStr = "IP6"
}
nic_dt_data.push({
NIC_ID : nic.NIC_ID,
NETWORK : Navigation.link(nic.NETWORK, "vnets-tab", nic.NETWORK_ID),
IP : _ipTr(nic, "IP"),
IP : _ipTr(nic, ipStr),
MAC : nic.MAC,
PCI_ADDRESS: pci_address,
IP6_ULA : _ipTr(nic, "IP6_ULA"),