Different IP - Ubuntu Server on Win10 (Oracle VM)
up vote
0
down vote
favorite
Iam running Ubunutu Server in Oracle VM on Win 10.
I checked ifconfig and my inet adress is 10.2.X.XX for eth0
On my Windows Pc is my Ip is 91.51.XXX.XXX
Shouldnt both IPs be the same?
And how to connect to my ubuntu server from outside?
Kind regards
virtualization ip
add a comment |
up vote
0
down vote
favorite
Iam running Ubunutu Server in Oracle VM on Win 10.
I checked ifconfig and my inet adress is 10.2.X.XX for eth0
On my Windows Pc is my Ip is 91.51.XXX.XXX
Shouldnt both IPs be the same?
And how to connect to my ubuntu server from outside?
Kind regards
virtualization ip
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Iam running Ubunutu Server in Oracle VM on Win 10.
I checked ifconfig and my inet adress is 10.2.X.XX for eth0
On my Windows Pc is my Ip is 91.51.XXX.XXX
Shouldnt both IPs be the same?
And how to connect to my ubuntu server from outside?
Kind regards
virtualization ip
Iam running Ubunutu Server in Oracle VM on Win 10.
I checked ifconfig and my inet adress is 10.2.X.XX for eth0
On my Windows Pc is my Ip is 91.51.XXX.XXX
Shouldnt both IPs be the same?
And how to connect to my ubuntu server from outside?
Kind regards
virtualization ip
virtualization ip
asked Dec 2 at 17:14
amieX
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I assume you are talking about Oracle VirtualBox ?
You are likely running the VM in NAT
networking mode. NAT
, short for Network Address Translation
will mean that any traffic going out to the network from the VM will appear as if it is coming from your host device. In your case, it would appear as if it is coming from 91.51.XXX.XXX
. Outside hosts will only be able to talk back to your host (e.g., respond to web requests) if the conversation originated (was established and tagged with NAT headers
) in your VM.
You can read more about VirtualBox and NAT
here
I won't delve too deep into the technicalities, but a quick fix for you should be to simply change the network adapter for your VM to run in Bridged
mode.
To do this:
- Open Oracle VM VirtualBox Manager.
right-click
your VM and clickSettings
- Click on the
Network
menu item on the left. - Assuming you have only 1 adapter, change the
Attached To
setting toBridged Adapter
- (Optional) By default, your hosts machine's ethernet adapter will be selected as the bridged adapter. You can change this to any other device, e.g. wireless, by choosing your preferred bridge interface in the dropdown menu next to
Name
Then, you can go into your Ubuntu Server (the guest VM) and do the following:
sudo ifdown eth0 && sleep 1 && sudo ifup eth0
This should refresh your IP to be assigned by a DHCP server on your main network and you should be able to reach the server from outside.
Alternatively, you can configure port forwarding.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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',
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%2faskubuntu.com%2fquestions%2f1097948%2fdifferent-ip-ubuntu-server-on-win10-oracle-vm%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
up vote
0
down vote
I assume you are talking about Oracle VirtualBox ?
You are likely running the VM in NAT
networking mode. NAT
, short for Network Address Translation
will mean that any traffic going out to the network from the VM will appear as if it is coming from your host device. In your case, it would appear as if it is coming from 91.51.XXX.XXX
. Outside hosts will only be able to talk back to your host (e.g., respond to web requests) if the conversation originated (was established and tagged with NAT headers
) in your VM.
You can read more about VirtualBox and NAT
here
I won't delve too deep into the technicalities, but a quick fix for you should be to simply change the network adapter for your VM to run in Bridged
mode.
To do this:
- Open Oracle VM VirtualBox Manager.
right-click
your VM and clickSettings
- Click on the
Network
menu item on the left. - Assuming you have only 1 adapter, change the
Attached To
setting toBridged Adapter
- (Optional) By default, your hosts machine's ethernet adapter will be selected as the bridged adapter. You can change this to any other device, e.g. wireless, by choosing your preferred bridge interface in the dropdown menu next to
Name
Then, you can go into your Ubuntu Server (the guest VM) and do the following:
sudo ifdown eth0 && sleep 1 && sudo ifup eth0
This should refresh your IP to be assigned by a DHCP server on your main network and you should be able to reach the server from outside.
Alternatively, you can configure port forwarding.
add a comment |
up vote
0
down vote
I assume you are talking about Oracle VirtualBox ?
You are likely running the VM in NAT
networking mode. NAT
, short for Network Address Translation
will mean that any traffic going out to the network from the VM will appear as if it is coming from your host device. In your case, it would appear as if it is coming from 91.51.XXX.XXX
. Outside hosts will only be able to talk back to your host (e.g., respond to web requests) if the conversation originated (was established and tagged with NAT headers
) in your VM.
You can read more about VirtualBox and NAT
here
I won't delve too deep into the technicalities, but a quick fix for you should be to simply change the network adapter for your VM to run in Bridged
mode.
To do this:
- Open Oracle VM VirtualBox Manager.
right-click
your VM and clickSettings
- Click on the
Network
menu item on the left. - Assuming you have only 1 adapter, change the
Attached To
setting toBridged Adapter
- (Optional) By default, your hosts machine's ethernet adapter will be selected as the bridged adapter. You can change this to any other device, e.g. wireless, by choosing your preferred bridge interface in the dropdown menu next to
Name
Then, you can go into your Ubuntu Server (the guest VM) and do the following:
sudo ifdown eth0 && sleep 1 && sudo ifup eth0
This should refresh your IP to be assigned by a DHCP server on your main network and you should be able to reach the server from outside.
Alternatively, you can configure port forwarding.
add a comment |
up vote
0
down vote
up vote
0
down vote
I assume you are talking about Oracle VirtualBox ?
You are likely running the VM in NAT
networking mode. NAT
, short for Network Address Translation
will mean that any traffic going out to the network from the VM will appear as if it is coming from your host device. In your case, it would appear as if it is coming from 91.51.XXX.XXX
. Outside hosts will only be able to talk back to your host (e.g., respond to web requests) if the conversation originated (was established and tagged with NAT headers
) in your VM.
You can read more about VirtualBox and NAT
here
I won't delve too deep into the technicalities, but a quick fix for you should be to simply change the network adapter for your VM to run in Bridged
mode.
To do this:
- Open Oracle VM VirtualBox Manager.
right-click
your VM and clickSettings
- Click on the
Network
menu item on the left. - Assuming you have only 1 adapter, change the
Attached To
setting toBridged Adapter
- (Optional) By default, your hosts machine's ethernet adapter will be selected as the bridged adapter. You can change this to any other device, e.g. wireless, by choosing your preferred bridge interface in the dropdown menu next to
Name
Then, you can go into your Ubuntu Server (the guest VM) and do the following:
sudo ifdown eth0 && sleep 1 && sudo ifup eth0
This should refresh your IP to be assigned by a DHCP server on your main network and you should be able to reach the server from outside.
Alternatively, you can configure port forwarding.
I assume you are talking about Oracle VirtualBox ?
You are likely running the VM in NAT
networking mode. NAT
, short for Network Address Translation
will mean that any traffic going out to the network from the VM will appear as if it is coming from your host device. In your case, it would appear as if it is coming from 91.51.XXX.XXX
. Outside hosts will only be able to talk back to your host (e.g., respond to web requests) if the conversation originated (was established and tagged with NAT headers
) in your VM.
You can read more about VirtualBox and NAT
here
I won't delve too deep into the technicalities, but a quick fix for you should be to simply change the network adapter for your VM to run in Bridged
mode.
To do this:
- Open Oracle VM VirtualBox Manager.
right-click
your VM and clickSettings
- Click on the
Network
menu item on the left. - Assuming you have only 1 adapter, change the
Attached To
setting toBridged Adapter
- (Optional) By default, your hosts machine's ethernet adapter will be selected as the bridged adapter. You can change this to any other device, e.g. wireless, by choosing your preferred bridge interface in the dropdown menu next to
Name
Then, you can go into your Ubuntu Server (the guest VM) and do the following:
sudo ifdown eth0 && sleep 1 && sudo ifup eth0
This should refresh your IP to be assigned by a DHCP server on your main network and you should be able to reach the server from outside.
Alternatively, you can configure port forwarding.
answered Dec 4 at 9:38
Techedemic
35615
35615
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1097948%2fdifferent-ip-ubuntu-server-on-win10-oracle-vm%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