Setting up a static Ip on Ubuntu 16 server inside a VMWare Workstation
I would like to set up a static IP for my server, however I seem to have made a mistake.
My current /etc/network/interface
file is set to the following
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameserver 8.8.8.8 8.8.4.4
After the restart the server has no internet connection.
DHCP settings image
networking server dns vmware dhcp
|
show 1 more comment
I would like to set up a static IP for my server, however I seem to have made a mistake.
My current /etc/network/interface
file is set to the following
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameserver 8.8.8.8 8.8.4.4
After the restart the server has no internet connection.
DHCP settings image
networking server dns vmware dhcp
Is192.168.150.0/24
the range of your host network? if so, have you configured the VM in bridged mode?
– steeldriver
Aug 26 '16 at 12:19
2
I believe it is dns-nameservers; please change it and restart the interface:sudo ifdown ens33 && sudo ifup -v ens33
Look for errors, warnings or other clues.
– chili555
Aug 26 '16 at 12:23
It does seem that there are some errors. I ran the ens33 command and got: >Listening on LPF/ens33/00:0c:29.... >Sending on LPF/ens33/00:0c:29.... >Sending on Socket/failback >DHCPRELEASE on ens33 to 192.168.150.254 port 67 (xid=0x67d19cf6) >send_packet: Network is unreachable >send_packet: please consult README.... >dhclient .c: 2474: Failed to send 300 byte long packet over fallback interface.
– blondedude092
Aug 26 '16 at 14:02
It is configured in NAT starting IP 192.168.150.129 ending ip 192.168.150.254 subnet mask: 255.255.255.0 subnet ip: 192.168.150.0 broadcast address: 192.168.150.255
– blondedude092
Aug 26 '16 at 14:20
NAT uses your host's internet connection. Ideally you'll need to refer to the NAT dhcp series that is set by VMWare (I'm not sure how that would work as I have not played with). And I'm also not sure what exactly you are trying to achieve there. Are you trying to access the guest VM from host VM or other devices on the network?
– AzkerM
Aug 26 '16 at 14:46
|
show 1 more comment
I would like to set up a static IP for my server, however I seem to have made a mistake.
My current /etc/network/interface
file is set to the following
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameserver 8.8.8.8 8.8.4.4
After the restart the server has no internet connection.
DHCP settings image
networking server dns vmware dhcp
I would like to set up a static IP for my server, however I seem to have made a mistake.
My current /etc/network/interface
file is set to the following
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameserver 8.8.8.8 8.8.4.4
After the restart the server has no internet connection.
DHCP settings image
networking server dns vmware dhcp
networking server dns vmware dhcp
edited Aug 26 '16 at 14:31
asked Aug 26 '16 at 3:52
blondedude092
64
64
Is192.168.150.0/24
the range of your host network? if so, have you configured the VM in bridged mode?
– steeldriver
Aug 26 '16 at 12:19
2
I believe it is dns-nameservers; please change it and restart the interface:sudo ifdown ens33 && sudo ifup -v ens33
Look for errors, warnings or other clues.
– chili555
Aug 26 '16 at 12:23
It does seem that there are some errors. I ran the ens33 command and got: >Listening on LPF/ens33/00:0c:29.... >Sending on LPF/ens33/00:0c:29.... >Sending on Socket/failback >DHCPRELEASE on ens33 to 192.168.150.254 port 67 (xid=0x67d19cf6) >send_packet: Network is unreachable >send_packet: please consult README.... >dhclient .c: 2474: Failed to send 300 byte long packet over fallback interface.
– blondedude092
Aug 26 '16 at 14:02
It is configured in NAT starting IP 192.168.150.129 ending ip 192.168.150.254 subnet mask: 255.255.255.0 subnet ip: 192.168.150.0 broadcast address: 192.168.150.255
– blondedude092
Aug 26 '16 at 14:20
NAT uses your host's internet connection. Ideally you'll need to refer to the NAT dhcp series that is set by VMWare (I'm not sure how that would work as I have not played with). And I'm also not sure what exactly you are trying to achieve there. Are you trying to access the guest VM from host VM or other devices on the network?
– AzkerM
Aug 26 '16 at 14:46
|
show 1 more comment
Is192.168.150.0/24
the range of your host network? if so, have you configured the VM in bridged mode?
– steeldriver
Aug 26 '16 at 12:19
2
I believe it is dns-nameservers; please change it and restart the interface:sudo ifdown ens33 && sudo ifup -v ens33
Look for errors, warnings or other clues.
– chili555
Aug 26 '16 at 12:23
It does seem that there are some errors. I ran the ens33 command and got: >Listening on LPF/ens33/00:0c:29.... >Sending on LPF/ens33/00:0c:29.... >Sending on Socket/failback >DHCPRELEASE on ens33 to 192.168.150.254 port 67 (xid=0x67d19cf6) >send_packet: Network is unreachable >send_packet: please consult README.... >dhclient .c: 2474: Failed to send 300 byte long packet over fallback interface.
– blondedude092
Aug 26 '16 at 14:02
It is configured in NAT starting IP 192.168.150.129 ending ip 192.168.150.254 subnet mask: 255.255.255.0 subnet ip: 192.168.150.0 broadcast address: 192.168.150.255
– blondedude092
Aug 26 '16 at 14:20
NAT uses your host's internet connection. Ideally you'll need to refer to the NAT dhcp series that is set by VMWare (I'm not sure how that would work as I have not played with). And I'm also not sure what exactly you are trying to achieve there. Are you trying to access the guest VM from host VM or other devices on the network?
– AzkerM
Aug 26 '16 at 14:46
Is
192.168.150.0/24
the range of your host network? if so, have you configured the VM in bridged mode?– steeldriver
Aug 26 '16 at 12:19
Is
192.168.150.0/24
the range of your host network? if so, have you configured the VM in bridged mode?– steeldriver
Aug 26 '16 at 12:19
2
2
I believe it is dns-nameservers; please change it and restart the interface:
sudo ifdown ens33 && sudo ifup -v ens33
Look for errors, warnings or other clues.– chili555
Aug 26 '16 at 12:23
I believe it is dns-nameservers; please change it and restart the interface:
sudo ifdown ens33 && sudo ifup -v ens33
Look for errors, warnings or other clues.– chili555
Aug 26 '16 at 12:23
It does seem that there are some errors. I ran the ens33 command and got: >Listening on LPF/ens33/00:0c:29.... >Sending on LPF/ens33/00:0c:29.... >Sending on Socket/failback >DHCPRELEASE on ens33 to 192.168.150.254 port 67 (xid=0x67d19cf6) >send_packet: Network is unreachable >send_packet: please consult README.... >dhclient .c: 2474: Failed to send 300 byte long packet over fallback interface.
– blondedude092
Aug 26 '16 at 14:02
It does seem that there are some errors. I ran the ens33 command and got: >Listening on LPF/ens33/00:0c:29.... >Sending on LPF/ens33/00:0c:29.... >Sending on Socket/failback >DHCPRELEASE on ens33 to 192.168.150.254 port 67 (xid=0x67d19cf6) >send_packet: Network is unreachable >send_packet: please consult README.... >dhclient .c: 2474: Failed to send 300 byte long packet over fallback interface.
– blondedude092
Aug 26 '16 at 14:02
It is configured in NAT starting IP 192.168.150.129 ending ip 192.168.150.254 subnet mask: 255.255.255.0 subnet ip: 192.168.150.0 broadcast address: 192.168.150.255
– blondedude092
Aug 26 '16 at 14:20
It is configured in NAT starting IP 192.168.150.129 ending ip 192.168.150.254 subnet mask: 255.255.255.0 subnet ip: 192.168.150.0 broadcast address: 192.168.150.255
– blondedude092
Aug 26 '16 at 14:20
NAT uses your host's internet connection. Ideally you'll need to refer to the NAT dhcp series that is set by VMWare (I'm not sure how that would work as I have not played with). And I'm also not sure what exactly you are trying to achieve there. Are you trying to access the guest VM from host VM or other devices on the network?
– AzkerM
Aug 26 '16 at 14:46
NAT uses your host's internet connection. Ideally you'll need to refer to the NAT dhcp series that is set by VMWare (I'm not sure how that would work as I have not played with). And I'm also not sure what exactly you are trying to achieve there. Are you trying to access the guest VM from host VM or other devices on the network?
– AzkerM
Aug 26 '16 at 14:46
|
show 1 more comment
1 Answer
1
active
oldest
votes
Change your network adapter settings to
Custom -> VMnet8 (NAT)
on vm
sudo nano /etc/network/interfaces
and insert
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameservers 192.168.150.2
save it then
sudo service networking restart
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',
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%2f816967%2fsetting-up-a-static-ip-on-ubuntu-16-server-inside-a-vmware-workstation%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
Change your network adapter settings to
Custom -> VMnet8 (NAT)
on vm
sudo nano /etc/network/interfaces
and insert
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameservers 192.168.150.2
save it then
sudo service networking restart
add a comment |
Change your network adapter settings to
Custom -> VMnet8 (NAT)
on vm
sudo nano /etc/network/interfaces
and insert
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameservers 192.168.150.2
save it then
sudo service networking restart
add a comment |
Change your network adapter settings to
Custom -> VMnet8 (NAT)
on vm
sudo nano /etc/network/interfaces
and insert
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameservers 192.168.150.2
save it then
sudo service networking restart
Change your network adapter settings to
Custom -> VMnet8 (NAT)
on vm
sudo nano /etc/network/interfaces
and insert
auto ens33
iface ens33 inet static
address 192.168.150.130
netmask 255.255.255.0
gateway 192.168.150.2
dns-nameservers 192.168.150.2
save it then
sudo service networking restart
answered Nov 29 at 7:20
Sachintha Wijethunga
1
1
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%2f816967%2fsetting-up-a-static-ip-on-ubuntu-16-server-inside-a-vmware-workstation%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
Is
192.168.150.0/24
the range of your host network? if so, have you configured the VM in bridged mode?– steeldriver
Aug 26 '16 at 12:19
2
I believe it is dns-nameservers; please change it and restart the interface:
sudo ifdown ens33 && sudo ifup -v ens33
Look for errors, warnings or other clues.– chili555
Aug 26 '16 at 12:23
It does seem that there are some errors. I ran the ens33 command and got: >Listening on LPF/ens33/00:0c:29.... >Sending on LPF/ens33/00:0c:29.... >Sending on Socket/failback >DHCPRELEASE on ens33 to 192.168.150.254 port 67 (xid=0x67d19cf6) >send_packet: Network is unreachable >send_packet: please consult README.... >dhclient .c: 2474: Failed to send 300 byte long packet over fallback interface.
– blondedude092
Aug 26 '16 at 14:02
It is configured in NAT starting IP 192.168.150.129 ending ip 192.168.150.254 subnet mask: 255.255.255.0 subnet ip: 192.168.150.0 broadcast address: 192.168.150.255
– blondedude092
Aug 26 '16 at 14:20
NAT uses your host's internet connection. Ideally you'll need to refer to the NAT dhcp series that is set by VMWare (I'm not sure how that would work as I have not played with). And I'm also not sure what exactly you are trying to achieve there. Are you trying to access the guest VM from host VM or other devices on the network?
– AzkerM
Aug 26 '16 at 14:46