Ubuntu Server DNS Problem with Static IP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







1















I am running an Ubuntu Server on my VMBox and need to set static IP. By following the steps described in https://www.techrepublic.com/article/how-to-configure-a-static-ip-address-in-ubuntu-server-18-04/, I created the configuration file 01-netcfg.yaml as follows.



network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses: [10.10.21.8/24]
gateway4: 10.10.21.100
nameservers:
addresses: [8.8.8.8, 8.8.4.4]


Running sudo netplan apply --debugresults in:



debug



Which I'm not sure if the process is succesful or not since it mentions a merged config but gives no error at the end. However, I can not connect to Internet. sudo ping www.facebook.com returns "Temporary failure in name resolution". ping 64.233.169.104 results in "Destination Host Unreachable". sudo apt-get update fails as well.



sudo lshw -C network:


enter image description here



 cat /etc/netplan/*


enter image description here



After trying the answer.



cat /etc/resolv.conf


enter image description here



ls -al /etc/resolv.conf


enter image description here



ls -al /etc/netplan


enter image description here



sudo netplan generate --debug


enter image description here



sudo netplan apply 


No output.



systemd-resolve --status


enter image description here










share|improve this question









New contributor




codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Do you actually have a enp0s3 interface? what is the output of ls /sys/class/net?

    – steeldriver
    yesterday






  • 1





    Do you have more than one .yaml file in /etc/netplan? Edit your question and show me sudo lshw -C network. Amongst other things, I want to see the name of your ethernet device. You should be using sudo netplan --debug generate first, and then sudo netplan apply, then reboot to confirm operation.

    – heynnema
    yesterday













  • @steeldriver the output is "enp0s3" and "lo"

    – codemonkey
    19 hours ago











  • @heynnema there is also 50-cloud-init.yaml and 99-disable-network-config.cfg files, and i updated the question with "sudo lshw -C "

    – codemonkey
    19 hours ago













  • Ah! Edit your question and show me cat /etc/netplan/*. Then do you have 3 files in /etc/netplan? 2 .yaml and 1 .cfg?

    – heynnema
    16 hours ago


















1















I am running an Ubuntu Server on my VMBox and need to set static IP. By following the steps described in https://www.techrepublic.com/article/how-to-configure-a-static-ip-address-in-ubuntu-server-18-04/, I created the configuration file 01-netcfg.yaml as follows.



network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses: [10.10.21.8/24]
gateway4: 10.10.21.100
nameservers:
addresses: [8.8.8.8, 8.8.4.4]


Running sudo netplan apply --debugresults in:



debug



Which I'm not sure if the process is succesful or not since it mentions a merged config but gives no error at the end. However, I can not connect to Internet. sudo ping www.facebook.com returns "Temporary failure in name resolution". ping 64.233.169.104 results in "Destination Host Unreachable". sudo apt-get update fails as well.



sudo lshw -C network:


enter image description here



 cat /etc/netplan/*


enter image description here



After trying the answer.



cat /etc/resolv.conf


enter image description here



ls -al /etc/resolv.conf


enter image description here



ls -al /etc/netplan


enter image description here



sudo netplan generate --debug


enter image description here



sudo netplan apply 


No output.



systemd-resolve --status


enter image description here










share|improve this question









New contributor




codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Do you actually have a enp0s3 interface? what is the output of ls /sys/class/net?

    – steeldriver
    yesterday






  • 1





    Do you have more than one .yaml file in /etc/netplan? Edit your question and show me sudo lshw -C network. Amongst other things, I want to see the name of your ethernet device. You should be using sudo netplan --debug generate first, and then sudo netplan apply, then reboot to confirm operation.

    – heynnema
    yesterday













  • @steeldriver the output is "enp0s3" and "lo"

    – codemonkey
    19 hours ago











  • @heynnema there is also 50-cloud-init.yaml and 99-disable-network-config.cfg files, and i updated the question with "sudo lshw -C "

    – codemonkey
    19 hours ago













  • Ah! Edit your question and show me cat /etc/netplan/*. Then do you have 3 files in /etc/netplan? 2 .yaml and 1 .cfg?

    – heynnema
    16 hours ago














1












1








1








I am running an Ubuntu Server on my VMBox and need to set static IP. By following the steps described in https://www.techrepublic.com/article/how-to-configure-a-static-ip-address-in-ubuntu-server-18-04/, I created the configuration file 01-netcfg.yaml as follows.



network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses: [10.10.21.8/24]
gateway4: 10.10.21.100
nameservers:
addresses: [8.8.8.8, 8.8.4.4]


Running sudo netplan apply --debugresults in:



debug



Which I'm not sure if the process is succesful or not since it mentions a merged config but gives no error at the end. However, I can not connect to Internet. sudo ping www.facebook.com returns "Temporary failure in name resolution". ping 64.233.169.104 results in "Destination Host Unreachable". sudo apt-get update fails as well.



sudo lshw -C network:


enter image description here



 cat /etc/netplan/*


enter image description here



After trying the answer.



cat /etc/resolv.conf


enter image description here



ls -al /etc/resolv.conf


enter image description here



ls -al /etc/netplan


enter image description here



sudo netplan generate --debug


enter image description here



sudo netplan apply 


No output.



systemd-resolve --status


enter image description here










share|improve this question









New contributor




codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I am running an Ubuntu Server on my VMBox and need to set static IP. By following the steps described in https://www.techrepublic.com/article/how-to-configure-a-static-ip-address-in-ubuntu-server-18-04/, I created the configuration file 01-netcfg.yaml as follows.



network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses: [10.10.21.8/24]
gateway4: 10.10.21.100
nameservers:
addresses: [8.8.8.8, 8.8.4.4]


Running sudo netplan apply --debugresults in:



debug



Which I'm not sure if the process is succesful or not since it mentions a merged config but gives no error at the end. However, I can not connect to Internet. sudo ping www.facebook.com returns "Temporary failure in name resolution". ping 64.233.169.104 results in "Destination Host Unreachable". sudo apt-get update fails as well.



sudo lshw -C network:


enter image description here



 cat /etc/netplan/*


enter image description here



After trying the answer.



cat /etc/resolv.conf


enter image description here



ls -al /etc/resolv.conf


enter image description here



ls -al /etc/netplan


enter image description here



sudo netplan generate --debug


enter image description here



sudo netplan apply 


No output.



systemd-resolve --status


enter image description here







server dns netplan






share|improve this question









New contributor




codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 14 hours ago







codemonkey













New contributor




codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









codemonkeycodemonkey

356




356




New contributor




codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






codemonkey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • Do you actually have a enp0s3 interface? what is the output of ls /sys/class/net?

    – steeldriver
    yesterday






  • 1





    Do you have more than one .yaml file in /etc/netplan? Edit your question and show me sudo lshw -C network. Amongst other things, I want to see the name of your ethernet device. You should be using sudo netplan --debug generate first, and then sudo netplan apply, then reboot to confirm operation.

    – heynnema
    yesterday













  • @steeldriver the output is "enp0s3" and "lo"

    – codemonkey
    19 hours ago











  • @heynnema there is also 50-cloud-init.yaml and 99-disable-network-config.cfg files, and i updated the question with "sudo lshw -C "

    – codemonkey
    19 hours ago













  • Ah! Edit your question and show me cat /etc/netplan/*. Then do you have 3 files in /etc/netplan? 2 .yaml and 1 .cfg?

    – heynnema
    16 hours ago



















  • Do you actually have a enp0s3 interface? what is the output of ls /sys/class/net?

    – steeldriver
    yesterday






  • 1





    Do you have more than one .yaml file in /etc/netplan? Edit your question and show me sudo lshw -C network. Amongst other things, I want to see the name of your ethernet device. You should be using sudo netplan --debug generate first, and then sudo netplan apply, then reboot to confirm operation.

    – heynnema
    yesterday













  • @steeldriver the output is "enp0s3" and "lo"

    – codemonkey
    19 hours ago











  • @heynnema there is also 50-cloud-init.yaml and 99-disable-network-config.cfg files, and i updated the question with "sudo lshw -C "

    – codemonkey
    19 hours ago













  • Ah! Edit your question and show me cat /etc/netplan/*. Then do you have 3 files in /etc/netplan? 2 .yaml and 1 .cfg?

    – heynnema
    16 hours ago

















Do you actually have a enp0s3 interface? what is the output of ls /sys/class/net?

– steeldriver
yesterday





Do you actually have a enp0s3 interface? what is the output of ls /sys/class/net?

– steeldriver
yesterday




1




1





Do you have more than one .yaml file in /etc/netplan? Edit your question and show me sudo lshw -C network. Amongst other things, I want to see the name of your ethernet device. You should be using sudo netplan --debug generate first, and then sudo netplan apply, then reboot to confirm operation.

– heynnema
yesterday







Do you have more than one .yaml file in /etc/netplan? Edit your question and show me sudo lshw -C network. Amongst other things, I want to see the name of your ethernet device. You should be using sudo netplan --debug generate first, and then sudo netplan apply, then reboot to confirm operation.

– heynnema
yesterday















@steeldriver the output is "enp0s3" and "lo"

– codemonkey
19 hours ago





@steeldriver the output is "enp0s3" and "lo"

– codemonkey
19 hours ago













@heynnema there is also 50-cloud-init.yaml and 99-disable-network-config.cfg files, and i updated the question with "sudo lshw -C "

– codemonkey
19 hours ago







@heynnema there is also 50-cloud-init.yaml and 99-disable-network-config.cfg files, and i updated the question with "sudo lshw -C "

– codemonkey
19 hours ago















Ah! Edit your question and show me cat /etc/netplan/*. Then do you have 3 files in /etc/netplan? 2 .yaml and 1 .cfg?

– heynnema
16 hours ago





Ah! Edit your question and show me cat /etc/netplan/*. Then do you have 3 files in /etc/netplan? 2 .yaml and 1 .cfg?

– heynnema
16 hours ago










1 Answer
1






active

oldest

votes


















1














Partial answer...



From the comments...



In /etc/netplan we have three files...



01-network-card.yaml          # the file that you created
50-cloud-init.yaml # the file that was already there
99-disable-network-config.cfg # who knows where this file came from


cd /etc/netplan # change directories



sudo mv 50-cloud-init.yaml 50-cloud-init.yaml.HOLD # rename file



sudo mv 99-disable-network-config.cfg 99-disable-network-config.cfg.HOLD # rename file



sudo netplan --debug generate # generate config files



sudo netplan apply # apply new configuration



Note: The new configuration may already work at this point.



reboot # confirm operation



Update #1:



The 10.10.21.8 and 10.10.21.100 addresses are not correct. Go back to your instructor and get valid addresses, and then it should all work now. This all works when using dhcp4: true instead of static IP's.






share|improve this answer


























  • Unfortunately, i can't connect the internet after these steps. BTW, I created the 99-disable-network-config.cfg as well.

    – codemonkey
    15 hours ago











  • But your ping commands failed before, so you were not able to connect to the Internet then either, correct? Edit your question and show me ls -al /etc/netplan and the output of the two sudo netplan... commands... and resolvectl.

    – heynnema
    15 hours ago













  • And also ls -al /etc/resolv.conf and cat /etc/resolv.conf.

    – heynnema
    15 hours ago











  • I edited the question. resolvectl command is not found.

    – codemonkey
    14 hours ago






  • 1





    Ah again! Those IP's are wrong. Unless they've setup those specific IP's somewhere on the network, your .yaml file, although syntactically correct, will never work, and pings and Internet will fail. So this situation is not in a production environment, but rather a college/university environment? I think that with the exception of your symlink for /etc/resolv.conf, I think we've gone as far as we can. Temporarily use dhcp4: true until you get the correct IP's. Please do come back later and update me, and accept my answer when it's all working, ok?

    – heynnema
    14 hours ago












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
});


}
});






codemonkey is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1131552%2fubuntu-server-dns-problem-with-static-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









1














Partial answer...



From the comments...



In /etc/netplan we have three files...



01-network-card.yaml          # the file that you created
50-cloud-init.yaml # the file that was already there
99-disable-network-config.cfg # who knows where this file came from


cd /etc/netplan # change directories



sudo mv 50-cloud-init.yaml 50-cloud-init.yaml.HOLD # rename file



sudo mv 99-disable-network-config.cfg 99-disable-network-config.cfg.HOLD # rename file



sudo netplan --debug generate # generate config files



sudo netplan apply # apply new configuration



Note: The new configuration may already work at this point.



reboot # confirm operation



Update #1:



The 10.10.21.8 and 10.10.21.100 addresses are not correct. Go back to your instructor and get valid addresses, and then it should all work now. This all works when using dhcp4: true instead of static IP's.






share|improve this answer


























  • Unfortunately, i can't connect the internet after these steps. BTW, I created the 99-disable-network-config.cfg as well.

    – codemonkey
    15 hours ago











  • But your ping commands failed before, so you were not able to connect to the Internet then either, correct? Edit your question and show me ls -al /etc/netplan and the output of the two sudo netplan... commands... and resolvectl.

    – heynnema
    15 hours ago













  • And also ls -al /etc/resolv.conf and cat /etc/resolv.conf.

    – heynnema
    15 hours ago











  • I edited the question. resolvectl command is not found.

    – codemonkey
    14 hours ago






  • 1





    Ah again! Those IP's are wrong. Unless they've setup those specific IP's somewhere on the network, your .yaml file, although syntactically correct, will never work, and pings and Internet will fail. So this situation is not in a production environment, but rather a college/university environment? I think that with the exception of your symlink for /etc/resolv.conf, I think we've gone as far as we can. Temporarily use dhcp4: true until you get the correct IP's. Please do come back later and update me, and accept my answer when it's all working, ok?

    – heynnema
    14 hours ago
















1














Partial answer...



From the comments...



In /etc/netplan we have three files...



01-network-card.yaml          # the file that you created
50-cloud-init.yaml # the file that was already there
99-disable-network-config.cfg # who knows where this file came from


cd /etc/netplan # change directories



sudo mv 50-cloud-init.yaml 50-cloud-init.yaml.HOLD # rename file



sudo mv 99-disable-network-config.cfg 99-disable-network-config.cfg.HOLD # rename file



sudo netplan --debug generate # generate config files



sudo netplan apply # apply new configuration



Note: The new configuration may already work at this point.



reboot # confirm operation



Update #1:



The 10.10.21.8 and 10.10.21.100 addresses are not correct. Go back to your instructor and get valid addresses, and then it should all work now. This all works when using dhcp4: true instead of static IP's.






share|improve this answer


























  • Unfortunately, i can't connect the internet after these steps. BTW, I created the 99-disable-network-config.cfg as well.

    – codemonkey
    15 hours ago











  • But your ping commands failed before, so you were not able to connect to the Internet then either, correct? Edit your question and show me ls -al /etc/netplan and the output of the two sudo netplan... commands... and resolvectl.

    – heynnema
    15 hours ago













  • And also ls -al /etc/resolv.conf and cat /etc/resolv.conf.

    – heynnema
    15 hours ago











  • I edited the question. resolvectl command is not found.

    – codemonkey
    14 hours ago






  • 1





    Ah again! Those IP's are wrong. Unless they've setup those specific IP's somewhere on the network, your .yaml file, although syntactically correct, will never work, and pings and Internet will fail. So this situation is not in a production environment, but rather a college/university environment? I think that with the exception of your symlink for /etc/resolv.conf, I think we've gone as far as we can. Temporarily use dhcp4: true until you get the correct IP's. Please do come back later and update me, and accept my answer when it's all working, ok?

    – heynnema
    14 hours ago














1












1








1







Partial answer...



From the comments...



In /etc/netplan we have three files...



01-network-card.yaml          # the file that you created
50-cloud-init.yaml # the file that was already there
99-disable-network-config.cfg # who knows where this file came from


cd /etc/netplan # change directories



sudo mv 50-cloud-init.yaml 50-cloud-init.yaml.HOLD # rename file



sudo mv 99-disable-network-config.cfg 99-disable-network-config.cfg.HOLD # rename file



sudo netplan --debug generate # generate config files



sudo netplan apply # apply new configuration



Note: The new configuration may already work at this point.



reboot # confirm operation



Update #1:



The 10.10.21.8 and 10.10.21.100 addresses are not correct. Go back to your instructor and get valid addresses, and then it should all work now. This all works when using dhcp4: true instead of static IP's.






share|improve this answer















Partial answer...



From the comments...



In /etc/netplan we have three files...



01-network-card.yaml          # the file that you created
50-cloud-init.yaml # the file that was already there
99-disable-network-config.cfg # who knows where this file came from


cd /etc/netplan # change directories



sudo mv 50-cloud-init.yaml 50-cloud-init.yaml.HOLD # rename file



sudo mv 99-disable-network-config.cfg 99-disable-network-config.cfg.HOLD # rename file



sudo netplan --debug generate # generate config files



sudo netplan apply # apply new configuration



Note: The new configuration may already work at this point.



reboot # confirm operation



Update #1:



The 10.10.21.8 and 10.10.21.100 addresses are not correct. Go back to your instructor and get valid addresses, and then it should all work now. This all works when using dhcp4: true instead of static IP's.







share|improve this answer














share|improve this answer



share|improve this answer








edited 8 hours ago

























answered 15 hours ago









heynnemaheynnema

21.3k32360




21.3k32360













  • Unfortunately, i can't connect the internet after these steps. BTW, I created the 99-disable-network-config.cfg as well.

    – codemonkey
    15 hours ago











  • But your ping commands failed before, so you were not able to connect to the Internet then either, correct? Edit your question and show me ls -al /etc/netplan and the output of the two sudo netplan... commands... and resolvectl.

    – heynnema
    15 hours ago













  • And also ls -al /etc/resolv.conf and cat /etc/resolv.conf.

    – heynnema
    15 hours ago











  • I edited the question. resolvectl command is not found.

    – codemonkey
    14 hours ago






  • 1





    Ah again! Those IP's are wrong. Unless they've setup those specific IP's somewhere on the network, your .yaml file, although syntactically correct, will never work, and pings and Internet will fail. So this situation is not in a production environment, but rather a college/university environment? I think that with the exception of your symlink for /etc/resolv.conf, I think we've gone as far as we can. Temporarily use dhcp4: true until you get the correct IP's. Please do come back later and update me, and accept my answer when it's all working, ok?

    – heynnema
    14 hours ago



















  • Unfortunately, i can't connect the internet after these steps. BTW, I created the 99-disable-network-config.cfg as well.

    – codemonkey
    15 hours ago











  • But your ping commands failed before, so you were not able to connect to the Internet then either, correct? Edit your question and show me ls -al /etc/netplan and the output of the two sudo netplan... commands... and resolvectl.

    – heynnema
    15 hours ago













  • And also ls -al /etc/resolv.conf and cat /etc/resolv.conf.

    – heynnema
    15 hours ago











  • I edited the question. resolvectl command is not found.

    – codemonkey
    14 hours ago






  • 1





    Ah again! Those IP's are wrong. Unless they've setup those specific IP's somewhere on the network, your .yaml file, although syntactically correct, will never work, and pings and Internet will fail. So this situation is not in a production environment, but rather a college/university environment? I think that with the exception of your symlink for /etc/resolv.conf, I think we've gone as far as we can. Temporarily use dhcp4: true until you get the correct IP's. Please do come back later and update me, and accept my answer when it's all working, ok?

    – heynnema
    14 hours ago

















Unfortunately, i can't connect the internet after these steps. BTW, I created the 99-disable-network-config.cfg as well.

– codemonkey
15 hours ago





Unfortunately, i can't connect the internet after these steps. BTW, I created the 99-disable-network-config.cfg as well.

– codemonkey
15 hours ago













But your ping commands failed before, so you were not able to connect to the Internet then either, correct? Edit your question and show me ls -al /etc/netplan and the output of the two sudo netplan... commands... and resolvectl.

– heynnema
15 hours ago







But your ping commands failed before, so you were not able to connect to the Internet then either, correct? Edit your question and show me ls -al /etc/netplan and the output of the two sudo netplan... commands... and resolvectl.

– heynnema
15 hours ago















And also ls -al /etc/resolv.conf and cat /etc/resolv.conf.

– heynnema
15 hours ago





And also ls -al /etc/resolv.conf and cat /etc/resolv.conf.

– heynnema
15 hours ago













I edited the question. resolvectl command is not found.

– codemonkey
14 hours ago





I edited the question. resolvectl command is not found.

– codemonkey
14 hours ago




1




1





Ah again! Those IP's are wrong. Unless they've setup those specific IP's somewhere on the network, your .yaml file, although syntactically correct, will never work, and pings and Internet will fail. So this situation is not in a production environment, but rather a college/university environment? I think that with the exception of your symlink for /etc/resolv.conf, I think we've gone as far as we can. Temporarily use dhcp4: true until you get the correct IP's. Please do come back later and update me, and accept my answer when it's all working, ok?

– heynnema
14 hours ago





Ah again! Those IP's are wrong. Unless they've setup those specific IP's somewhere on the network, your .yaml file, although syntactically correct, will never work, and pings and Internet will fail. So this situation is not in a production environment, but rather a college/university environment? I think that with the exception of your symlink for /etc/resolv.conf, I think we've gone as far as we can. Temporarily use dhcp4: true until you get the correct IP's. Please do come back later and update me, and accept my answer when it's all working, ok?

– heynnema
14 hours ago










codemonkey is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















codemonkey is a new contributor. Be nice, and check out our Code of Conduct.













codemonkey is a new contributor. Be nice, and check out our Code of Conduct.












codemonkey is a new contributor. Be nice, and check out our Code of Conduct.
















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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1131552%2fubuntu-server-dns-problem-with-static-ip%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

GameSpot

connect to host localhost port 22: Connection refused

Getting a Wifi WPA2 wifi connection