1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

B #5425: Fix alias not showing IP6 ULA nor GLOBAL (#1309)

This commit is contained in:
Frederick Borges 2021-06-17 10:20:04 +02:00 committed by GitHub
parent 9eae8273be
commit 4ac261e38e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -939,7 +939,7 @@ define(function(require) {
alias_ip = identation + "> " + alias.IP
else if (alias.IP6)
alias_ip = identation + "> " + alias.IP6
else if (nic.IP6_ULA && nic.IP6_GLOBAL)
else if (alias.IP6_ULA && alias.IP6_GLOBAL)
alias_ip = alias.IP6_ULA + "

" + identation + "> " + alias.IP6_GLOBAL;
if (alias_ip){
@ -980,7 +980,7 @@ define(function(require) {
alias_ip = identation + "> " + alias.IP
else if (alias.IP6)
alias_ip = identation + "> " + alias.IP6
else if (nic.IP6_ULA && nic.IP6_GLOBAL)
else if (alias.IP6_ULA && alias.IP6_GLOBAL)
alias_ip = alias.IP6_ULA + "<br>" + identation + "> " + alias.IP6_GLOBAL;
if (alias_ip){