-
Notifications
You must be signed in to change notification settings - Fork 919
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: avoid use of vNIC IP in guest.TransferURL if there are multiple
InitiateFileTransfer{To,From}Guest methods return an ESX host's inventory name (HostSystem.Name). This name was used to add the host to vCenter and cannot be changed (unless the host is removed from inventory and added back with another name). The name used when adding to VC may not resolvable by this client's DNS, so we prefer an ESX management IP. However, if there is more than one management vNIC, we don't know which IP(s) the client has a route to. Leave the hostname as-is in that case or if the env var has disabled the preference.
- Loading branch information
Showing
5 changed files
with
96 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
Copyright (c) 2021 VMware, Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package internal_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/vmware/govmomi/internal" | ||
"github.com/vmware/govmomi/simulator/esx" | ||
) | ||
|
||
func TestHostSystemManagementIPs(t *testing.T) { | ||
ips := internal.HostSystemManagementIPs(esx.HostSystem.Config.VirtualNicManagerInfo.NetConfig) | ||
|
||
if len(ips) != 1 { | ||
t.Fatalf("no mgmt ip found") | ||
} | ||
if ips[0].String() != "127.0.0.1" { | ||
t.Fatalf("Expected management ip %s, got %s", "127.0.0.1", ips[0].String()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters