How to access a virtual machine hosted by VMWare ESXi from an external IP?
There is a network topology as follows:
I can access both 172.16.0.10:8444 and 172.16.0.21:8445 from the external IP by:
telnet A 8444
telnet A 8445
However, I can not access 172.16.0.20:8443 by:
telnet A 8443 # connection timeout
Any help would be appreciated. Thanks.
networking ubuntu vmware esxi
add a comment |
There is a network topology as follows:
I can access both 172.16.0.10:8444 and 172.16.0.21:8445 from the external IP by:
telnet A 8444
telnet A 8445
However, I can not access 172.16.0.20:8443 by:
telnet A 8443 # connection timeout
Any help would be appreciated. Thanks.
networking ubuntu vmware esxi
@grawity : Thanks.
– KlSoft
Dec 18 '18 at 9:45
add a comment |
There is a network topology as follows:
I can access both 172.16.0.10:8444 and 172.16.0.21:8445 from the external IP by:
telnet A 8444
telnet A 8445
However, I can not access 172.16.0.20:8443 by:
telnet A 8443 # connection timeout
Any help would be appreciated. Thanks.
networking ubuntu vmware esxi
There is a network topology as follows:
I can access both 172.16.0.10:8444 and 172.16.0.21:8445 from the external IP by:
telnet A 8444
telnet A 8445
However, I can not access 172.16.0.20:8443 by:
telnet A 8443 # connection timeout
Any help would be appreciated. Thanks.
networking ubuntu vmware esxi
networking ubuntu vmware esxi
edited Dec 18 '18 at 8:28
grawity
232k35491546
232k35491546
asked Dec 18 '18 at 8:09
KlSoft
11
11
@grawity : Thanks.
– KlSoft
Dec 18 '18 at 9:45
add a comment |
@grawity : Thanks.
– KlSoft
Dec 18 '18 at 9:45
@grawity : Thanks.
– KlSoft
Dec 18 '18 at 9:45
@grawity : Thanks.
– KlSoft
Dec 18 '18 at 9:45
add a comment |
1 Answer
1
active
oldest
votes
We can try to troubleshoot the issue as below:
Step 1. Can we ping 172.16.0.20 on Windows server 2016?
If we can't ping, check the network configuration of Virtual machine Ubuntu 18.04.
If we can ping, continue with step 2.
Step 2. Can we telnet 172.16.0.20 on port 8443 on Windows server 2016?
If we can not telnet, check the firewall and IPtables on Virtual machine Ubuntu 18.04 and if the service corresponding to 8443 is running?
If we can telnet, continue with step 3.
Step 3. Check that if the configuration of the 8443 Port Mapping on the Router is correct.
Thanks for your reply. Step 1 and Step 2: Yes. Step 3: Port Mapping of 172.16.0.20 is same as 172.16.0.21. I have tried to set 172.16.0.20 as the DMZ of the Router, but it did not work either.
– KlSoft
Dec 19 '18 at 3:31
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1385465%2fhow-to-access-a-virtual-machine-hosted-by-vmware-esxi-from-an-external-ip%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
We can try to troubleshoot the issue as below:
Step 1. Can we ping 172.16.0.20 on Windows server 2016?
If we can't ping, check the network configuration of Virtual machine Ubuntu 18.04.
If we can ping, continue with step 2.
Step 2. Can we telnet 172.16.0.20 on port 8443 on Windows server 2016?
If we can not telnet, check the firewall and IPtables on Virtual machine Ubuntu 18.04 and if the service corresponding to 8443 is running?
If we can telnet, continue with step 3.
Step 3. Check that if the configuration of the 8443 Port Mapping on the Router is correct.
Thanks for your reply. Step 1 and Step 2: Yes. Step 3: Port Mapping of 172.16.0.20 is same as 172.16.0.21. I have tried to set 172.16.0.20 as the DMZ of the Router, but it did not work either.
– KlSoft
Dec 19 '18 at 3:31
add a comment |
We can try to troubleshoot the issue as below:
Step 1. Can we ping 172.16.0.20 on Windows server 2016?
If we can't ping, check the network configuration of Virtual machine Ubuntu 18.04.
If we can ping, continue with step 2.
Step 2. Can we telnet 172.16.0.20 on port 8443 on Windows server 2016?
If we can not telnet, check the firewall and IPtables on Virtual machine Ubuntu 18.04 and if the service corresponding to 8443 is running?
If we can telnet, continue with step 3.
Step 3. Check that if the configuration of the 8443 Port Mapping on the Router is correct.
Thanks for your reply. Step 1 and Step 2: Yes. Step 3: Port Mapping of 172.16.0.20 is same as 172.16.0.21. I have tried to set 172.16.0.20 as the DMZ of the Router, but it did not work either.
– KlSoft
Dec 19 '18 at 3:31
add a comment |
We can try to troubleshoot the issue as below:
Step 1. Can we ping 172.16.0.20 on Windows server 2016?
If we can't ping, check the network configuration of Virtual machine Ubuntu 18.04.
If we can ping, continue with step 2.
Step 2. Can we telnet 172.16.0.20 on port 8443 on Windows server 2016?
If we can not telnet, check the firewall and IPtables on Virtual machine Ubuntu 18.04 and if the service corresponding to 8443 is running?
If we can telnet, continue with step 3.
Step 3. Check that if the configuration of the 8443 Port Mapping on the Router is correct.
We can try to troubleshoot the issue as below:
Step 1. Can we ping 172.16.0.20 on Windows server 2016?
If we can't ping, check the network configuration of Virtual machine Ubuntu 18.04.
If we can ping, continue with step 2.
Step 2. Can we telnet 172.16.0.20 on port 8443 on Windows server 2016?
If we can not telnet, check the firewall and IPtables on Virtual machine Ubuntu 18.04 and if the service corresponding to 8443 is running?
If we can telnet, continue with step 3.
Step 3. Check that if the configuration of the 8443 Port Mapping on the Router is correct.
answered Dec 18 '18 at 13:58
Daisy Zhou
611114
611114
Thanks for your reply. Step 1 and Step 2: Yes. Step 3: Port Mapping of 172.16.0.20 is same as 172.16.0.21. I have tried to set 172.16.0.20 as the DMZ of the Router, but it did not work either.
– KlSoft
Dec 19 '18 at 3:31
add a comment |
Thanks for your reply. Step 1 and Step 2: Yes. Step 3: Port Mapping of 172.16.0.20 is same as 172.16.0.21. I have tried to set 172.16.0.20 as the DMZ of the Router, but it did not work either.
– KlSoft
Dec 19 '18 at 3:31
Thanks for your reply. Step 1 and Step 2: Yes. Step 3: Port Mapping of 172.16.0.20 is same as 172.16.0.21. I have tried to set 172.16.0.20 as the DMZ of the Router, but it did not work either.
– KlSoft
Dec 19 '18 at 3:31
Thanks for your reply. Step 1 and Step 2: Yes. Step 3: Port Mapping of 172.16.0.20 is same as 172.16.0.21. I have tried to set 172.16.0.20 as the DMZ of the Router, but it did not work either.
– KlSoft
Dec 19 '18 at 3:31
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1385465%2fhow-to-access-a-virtual-machine-hosted-by-vmware-esxi-from-an-external-ip%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
@grawity : Thanks.
– KlSoft
Dec 18 '18 at 9:45