Ubuntu server network autoconfigure failed
I'm novoice Ubuntu server user.
Im using Virtualbox to install Ubuntu Server 13.10
While installation process i got message
Network Auto Configuration failed
I selected Continue
Now my server installation in completed but not able to connect to it from SSH
IFCONFIG
server ssh dhcp
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm novoice Ubuntu server user.
Im using Virtualbox to install Ubuntu Server 13.10
While installation process i got message
Network Auto Configuration failed
I selected Continue
Now my server installation in completed but not able to connect to it from SSH
IFCONFIG
server ssh dhcp
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm novoice Ubuntu server user.
Im using Virtualbox to install Ubuntu Server 13.10
While installation process i got message
Network Auto Configuration failed
I selected Continue
Now my server installation in completed but not able to connect to it from SSH
IFCONFIG
server ssh dhcp
I'm novoice Ubuntu server user.
Im using Virtualbox to install Ubuntu Server 13.10
While installation process i got message
Network Auto Configuration failed
I selected Continue
Now my server installation in completed but not able to connect to it from SSH
IFCONFIG
server ssh dhcp
server ssh dhcp
asked Apr 27 '14 at 10:38
sravissravis
4191511
4191511
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Your server is not finding a network adapter.
Verify that your virtual machine has an adapter enabled.
http://www.dedoimedo.com/images/computers_new_1/virtualbox-network-nat-new.png
add a comment |
You can create a host-only network.
- Stop your VM
- Go to VirtualBox Manager
- Go to
File
>Preferences...
- Click on
Network
- Click on
Host-only networks
- Click on
Add host-only network
(the + icon on the right) - Click on
OK
- Go to VirtualBox Manager
- Select your VM
- Click on
Settings
- Click on
Network
- At
Attached to
selectHost-only adapter
- At
Name
select your host-only adapter - Click
OK
- Start your VM
Now log in and execute ifconfig eth0
. You can access your VM from your host using the IP address displayed after inet addr
.
In my Virtualbox Network setting i have 2 lists at Name: "Dell Wireless 1705 802.11b/g/n (2.4GHZ)" and another one "Realtek PCIe FE Family Controller". I check with both but dint see any difference. Also how do i check if my network configuration is working?
– sravis
Apr 27 '14 at 10:57
If you're currently using wireless, selectDell Wireless 1705 802.11b/g/n (2.4GHZ)
. If you're using a wire, selectRealtek PCIe FE Family Controller
. You can check if it's working by executingping -c4 8.8.8.8
, if you don't get any timeouts it's working.
– Louis Matthijssen
Apr 27 '14 at 10:59
Im using wireless internet connection. so i selected "Dell Wireless 1705 802.11b/g/n (2.4GHZ)". After restart if i give the command "ping -c4 8.8.8.8" i get "Network is unreachable"
– sravis
Apr 27 '14 at 11:05
Could you try executingsudo dhclient eth0
? Do you have a DHCP server in your network (see the note in my answer)? Also, could you please post the output ofifconfig eth0
?
– Louis Matthijssen
Apr 27 '14 at 11:08
i dont see any output for above command. and i am using reliance netconnect wireless i don't know if it has inbuilt DHCP server
– sravis
Apr 27 '14 at 11:22
|
show 3 more comments
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',
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%2faskubuntu.com%2fquestions%2f456305%2fubuntu-server-network-autoconfigure-failed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your server is not finding a network adapter.
Verify that your virtual machine has an adapter enabled.
http://www.dedoimedo.com/images/computers_new_1/virtualbox-network-nat-new.png
add a comment |
Your server is not finding a network adapter.
Verify that your virtual machine has an adapter enabled.
http://www.dedoimedo.com/images/computers_new_1/virtualbox-network-nat-new.png
add a comment |
Your server is not finding a network adapter.
Verify that your virtual machine has an adapter enabled.
http://www.dedoimedo.com/images/computers_new_1/virtualbox-network-nat-new.png
Your server is not finding a network adapter.
Verify that your virtual machine has an adapter enabled.
http://www.dedoimedo.com/images/computers_new_1/virtualbox-network-nat-new.png
answered Apr 27 '14 at 10:47
C0NFUS3DC0NFUS3D
1012
1012
add a comment |
add a comment |
You can create a host-only network.
- Stop your VM
- Go to VirtualBox Manager
- Go to
File
>Preferences...
- Click on
Network
- Click on
Host-only networks
- Click on
Add host-only network
(the + icon on the right) - Click on
OK
- Go to VirtualBox Manager
- Select your VM
- Click on
Settings
- Click on
Network
- At
Attached to
selectHost-only adapter
- At
Name
select your host-only adapter - Click
OK
- Start your VM
Now log in and execute ifconfig eth0
. You can access your VM from your host using the IP address displayed after inet addr
.
In my Virtualbox Network setting i have 2 lists at Name: "Dell Wireless 1705 802.11b/g/n (2.4GHZ)" and another one "Realtek PCIe FE Family Controller". I check with both but dint see any difference. Also how do i check if my network configuration is working?
– sravis
Apr 27 '14 at 10:57
If you're currently using wireless, selectDell Wireless 1705 802.11b/g/n (2.4GHZ)
. If you're using a wire, selectRealtek PCIe FE Family Controller
. You can check if it's working by executingping -c4 8.8.8.8
, if you don't get any timeouts it's working.
– Louis Matthijssen
Apr 27 '14 at 10:59
Im using wireless internet connection. so i selected "Dell Wireless 1705 802.11b/g/n (2.4GHZ)". After restart if i give the command "ping -c4 8.8.8.8" i get "Network is unreachable"
– sravis
Apr 27 '14 at 11:05
Could you try executingsudo dhclient eth0
? Do you have a DHCP server in your network (see the note in my answer)? Also, could you please post the output ofifconfig eth0
?
– Louis Matthijssen
Apr 27 '14 at 11:08
i dont see any output for above command. and i am using reliance netconnect wireless i don't know if it has inbuilt DHCP server
– sravis
Apr 27 '14 at 11:22
|
show 3 more comments
You can create a host-only network.
- Stop your VM
- Go to VirtualBox Manager
- Go to
File
>Preferences...
- Click on
Network
- Click on
Host-only networks
- Click on
Add host-only network
(the + icon on the right) - Click on
OK
- Go to VirtualBox Manager
- Select your VM
- Click on
Settings
- Click on
Network
- At
Attached to
selectHost-only adapter
- At
Name
select your host-only adapter - Click
OK
- Start your VM
Now log in and execute ifconfig eth0
. You can access your VM from your host using the IP address displayed after inet addr
.
In my Virtualbox Network setting i have 2 lists at Name: "Dell Wireless 1705 802.11b/g/n (2.4GHZ)" and another one "Realtek PCIe FE Family Controller". I check with both but dint see any difference. Also how do i check if my network configuration is working?
– sravis
Apr 27 '14 at 10:57
If you're currently using wireless, selectDell Wireless 1705 802.11b/g/n (2.4GHZ)
. If you're using a wire, selectRealtek PCIe FE Family Controller
. You can check if it's working by executingping -c4 8.8.8.8
, if you don't get any timeouts it's working.
– Louis Matthijssen
Apr 27 '14 at 10:59
Im using wireless internet connection. so i selected "Dell Wireless 1705 802.11b/g/n (2.4GHZ)". After restart if i give the command "ping -c4 8.8.8.8" i get "Network is unreachable"
– sravis
Apr 27 '14 at 11:05
Could you try executingsudo dhclient eth0
? Do you have a DHCP server in your network (see the note in my answer)? Also, could you please post the output ofifconfig eth0
?
– Louis Matthijssen
Apr 27 '14 at 11:08
i dont see any output for above command. and i am using reliance netconnect wireless i don't know if it has inbuilt DHCP server
– sravis
Apr 27 '14 at 11:22
|
show 3 more comments
You can create a host-only network.
- Stop your VM
- Go to VirtualBox Manager
- Go to
File
>Preferences...
- Click on
Network
- Click on
Host-only networks
- Click on
Add host-only network
(the + icon on the right) - Click on
OK
- Go to VirtualBox Manager
- Select your VM
- Click on
Settings
- Click on
Network
- At
Attached to
selectHost-only adapter
- At
Name
select your host-only adapter - Click
OK
- Start your VM
Now log in and execute ifconfig eth0
. You can access your VM from your host using the IP address displayed after inet addr
.
You can create a host-only network.
- Stop your VM
- Go to VirtualBox Manager
- Go to
File
>Preferences...
- Click on
Network
- Click on
Host-only networks
- Click on
Add host-only network
(the + icon on the right) - Click on
OK
- Go to VirtualBox Manager
- Select your VM
- Click on
Settings
- Click on
Network
- At
Attached to
selectHost-only adapter
- At
Name
select your host-only adapter - Click
OK
- Start your VM
Now log in and execute ifconfig eth0
. You can access your VM from your host using the IP address displayed after inet addr
.
edited Apr 27 '14 at 12:10
answered Apr 27 '14 at 10:47
Louis MatthijssenLouis Matthijssen
8,26643344
8,26643344
In my Virtualbox Network setting i have 2 lists at Name: "Dell Wireless 1705 802.11b/g/n (2.4GHZ)" and another one "Realtek PCIe FE Family Controller". I check with both but dint see any difference. Also how do i check if my network configuration is working?
– sravis
Apr 27 '14 at 10:57
If you're currently using wireless, selectDell Wireless 1705 802.11b/g/n (2.4GHZ)
. If you're using a wire, selectRealtek PCIe FE Family Controller
. You can check if it's working by executingping -c4 8.8.8.8
, if you don't get any timeouts it's working.
– Louis Matthijssen
Apr 27 '14 at 10:59
Im using wireless internet connection. so i selected "Dell Wireless 1705 802.11b/g/n (2.4GHZ)". After restart if i give the command "ping -c4 8.8.8.8" i get "Network is unreachable"
– sravis
Apr 27 '14 at 11:05
Could you try executingsudo dhclient eth0
? Do you have a DHCP server in your network (see the note in my answer)? Also, could you please post the output ofifconfig eth0
?
– Louis Matthijssen
Apr 27 '14 at 11:08
i dont see any output for above command. and i am using reliance netconnect wireless i don't know if it has inbuilt DHCP server
– sravis
Apr 27 '14 at 11:22
|
show 3 more comments
In my Virtualbox Network setting i have 2 lists at Name: "Dell Wireless 1705 802.11b/g/n (2.4GHZ)" and another one "Realtek PCIe FE Family Controller". I check with both but dint see any difference. Also how do i check if my network configuration is working?
– sravis
Apr 27 '14 at 10:57
If you're currently using wireless, selectDell Wireless 1705 802.11b/g/n (2.4GHZ)
. If you're using a wire, selectRealtek PCIe FE Family Controller
. You can check if it's working by executingping -c4 8.8.8.8
, if you don't get any timeouts it's working.
– Louis Matthijssen
Apr 27 '14 at 10:59
Im using wireless internet connection. so i selected "Dell Wireless 1705 802.11b/g/n (2.4GHZ)". After restart if i give the command "ping -c4 8.8.8.8" i get "Network is unreachable"
– sravis
Apr 27 '14 at 11:05
Could you try executingsudo dhclient eth0
? Do you have a DHCP server in your network (see the note in my answer)? Also, could you please post the output ofifconfig eth0
?
– Louis Matthijssen
Apr 27 '14 at 11:08
i dont see any output for above command. and i am using reliance netconnect wireless i don't know if it has inbuilt DHCP server
– sravis
Apr 27 '14 at 11:22
In my Virtualbox Network setting i have 2 lists at Name: "Dell Wireless 1705 802.11b/g/n (2.4GHZ)" and another one "Realtek PCIe FE Family Controller". I check with both but dint see any difference. Also how do i check if my network configuration is working?
– sravis
Apr 27 '14 at 10:57
In my Virtualbox Network setting i have 2 lists at Name: "Dell Wireless 1705 802.11b/g/n (2.4GHZ)" and another one "Realtek PCIe FE Family Controller". I check with both but dint see any difference. Also how do i check if my network configuration is working?
– sravis
Apr 27 '14 at 10:57
If you're currently using wireless, select
Dell Wireless 1705 802.11b/g/n (2.4GHZ)
. If you're using a wire, select Realtek PCIe FE Family Controller
. You can check if it's working by executing ping -c4 8.8.8.8
, if you don't get any timeouts it's working.– Louis Matthijssen
Apr 27 '14 at 10:59
If you're currently using wireless, select
Dell Wireless 1705 802.11b/g/n (2.4GHZ)
. If you're using a wire, select Realtek PCIe FE Family Controller
. You can check if it's working by executing ping -c4 8.8.8.8
, if you don't get any timeouts it's working.– Louis Matthijssen
Apr 27 '14 at 10:59
Im using wireless internet connection. so i selected "Dell Wireless 1705 802.11b/g/n (2.4GHZ)". After restart if i give the command "ping -c4 8.8.8.8" i get "Network is unreachable"
– sravis
Apr 27 '14 at 11:05
Im using wireless internet connection. so i selected "Dell Wireless 1705 802.11b/g/n (2.4GHZ)". After restart if i give the command "ping -c4 8.8.8.8" i get "Network is unreachable"
– sravis
Apr 27 '14 at 11:05
Could you try executing
sudo dhclient eth0
? Do you have a DHCP server in your network (see the note in my answer)? Also, could you please post the output of ifconfig eth0
?– Louis Matthijssen
Apr 27 '14 at 11:08
Could you try executing
sudo dhclient eth0
? Do you have a DHCP server in your network (see the note in my answer)? Also, could you please post the output of ifconfig eth0
?– Louis Matthijssen
Apr 27 '14 at 11:08
i dont see any output for above command. and i am using reliance netconnect wireless i don't know if it has inbuilt DHCP server
– sravis
Apr 27 '14 at 11:22
i dont see any output for above command. and i am using reliance netconnect wireless i don't know if it has inbuilt DHCP server
– sravis
Apr 27 '14 at 11:22
|
show 3 more comments
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.
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%2f456305%2fubuntu-server-network-autoconfigure-failed%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