- Timestamp:
- Dec 9, 2021 4:29:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r92838 r92850 2463 2463 fRc = oSession.setNicMacAddress(sNic0MacAddr, 0); 2464 2464 # Needed to reach the host (localhost) from the guest. See xTracker #9896. 2465 if fRc and self.fpApiVer >= 7.0 and eNic0AttachType == vboxcon.NetworkAttachmentType_NAT:2465 if fRc and self.fpApiVer >= 7.0: 2466 2466 fRc = oSession.setNicLocalhostReachable(True, 0); 2467 2467 if fRc and fNatForwardingForTxs is True: … … 2566 2566 fRc = oSession.setNicMacAddress(sNic0MacAddr, 0); 2567 2567 # Needed to reach the host (localhost) from the guest. See xTracker #9896. 2568 if fRc and self.fpApiVer >= 7.0 and eNic0AttachType == vboxcon.NetworkAttachmentType_NAT:2568 if fRc and self.fpApiVer >= 7.0: 2569 2569 fRc = oSession.setNicLocalhostReachable(True, 0); 2570 2571 if fRc and self.fEnableVrdp: 2572 fRc = oSession.setupVrdp(True, self.uVrdpBasePort + iGroup); 2570 2573 2571 2574 if fRc and fVmmDevTestingPart is not None:
Note:
See TracChangeset
for help on using the changeset viewer.