Ubuntu Server 18.04.1 - error in network definition when trying to set static IP with sudo netplan apply
I get this error when trying to set static IP with the command sudo netplan apply:
Error in network definition //etc/netplan/50-cloud.init.yaml line 5 column 34: expected scalar
Here's what my config file looks like:
network:
ethernets:
enp5s0:
dhcp4: no
addresses: [192.168.85.17/24]
gateway4: [192.168.85.19]
nameservers: [8.8.8.8,8.8.4.4]
optional: true
version: 2
18.04 netplan static-ip
add a comment |
I get this error when trying to set static IP with the command sudo netplan apply:
Error in network definition //etc/netplan/50-cloud.init.yaml line 5 column 34: expected scalar
Here's what my config file looks like:
network:
ethernets:
enp5s0:
dhcp4: no
addresses: [192.168.85.17/24]
gateway4: [192.168.85.19]
nameservers: [8.8.8.8,8.8.4.4]
optional: true
version: 2
18.04 netplan static-ip
Hi, please be more precise on how you tried to do this, and perhaps don't throw some picture at us, but edit your question, to hold the information in text, both makes it easier to help you
– db429
Nov 30 '18 at 20:28
add a comment |
I get this error when trying to set static IP with the command sudo netplan apply:
Error in network definition //etc/netplan/50-cloud.init.yaml line 5 column 34: expected scalar
Here's what my config file looks like:
network:
ethernets:
enp5s0:
dhcp4: no
addresses: [192.168.85.17/24]
gateway4: [192.168.85.19]
nameservers: [8.8.8.8,8.8.4.4]
optional: true
version: 2
18.04 netplan static-ip
I get this error when trying to set static IP with the command sudo netplan apply:
Error in network definition //etc/netplan/50-cloud.init.yaml line 5 column 34: expected scalar
Here's what my config file looks like:
network:
ethernets:
enp5s0:
dhcp4: no
addresses: [192.168.85.17/24]
gateway4: [192.168.85.19]
nameservers: [8.8.8.8,8.8.4.4]
optional: true
version: 2
18.04 netplan static-ip
18.04 netplan static-ip
edited Dec 6 '18 at 14:19
asked Nov 30 '18 at 19:45
trway9
62
62
Hi, please be more precise on how you tried to do this, and perhaps don't throw some picture at us, but edit your question, to hold the information in text, both makes it easier to help you
– db429
Nov 30 '18 at 20:28
add a comment |
Hi, please be more precise on how you tried to do this, and perhaps don't throw some picture at us, but edit your question, to hold the information in text, both makes it easier to help you
– db429
Nov 30 '18 at 20:28
Hi, please be more precise on how you tried to do this, and perhaps don't throw some picture at us, but edit your question, to hold the information in text, both makes it easier to help you
– db429
Nov 30 '18 at 20:28
Hi, please be more precise on how you tried to do this, and perhaps don't throw some picture at us, but edit your question, to hold the information in text, both makes it easier to help you
– db429
Nov 30 '18 at 20:28
add a comment |
1 Answer
1
active
oldest
votes
gateway4 takes an address, not a list of addresses. So the syntax should be:
gateway4: xxx.xxx.xxx.xxx
I'm sorry, that was improper formatting/indenting on my post. The actual file is properly indented I believe. I edited my post to show what it actually looks like.
– trway9
Dec 6 '18 at 14:22
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%2f1097506%2fubuntu-server-18-04-1-error-in-network-definition-when-trying-to-set-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
gateway4 takes an address, not a list of addresses. So the syntax should be:
gateway4: xxx.xxx.xxx.xxx
I'm sorry, that was improper formatting/indenting on my post. The actual file is properly indented I believe. I edited my post to show what it actually looks like.
– trway9
Dec 6 '18 at 14:22
add a comment |
gateway4 takes an address, not a list of addresses. So the syntax should be:
gateway4: xxx.xxx.xxx.xxx
I'm sorry, that was improper formatting/indenting on my post. The actual file is properly indented I believe. I edited my post to show what it actually looks like.
– trway9
Dec 6 '18 at 14:22
add a comment |
gateway4 takes an address, not a list of addresses. So the syntax should be:
gateway4: xxx.xxx.xxx.xxx
gateway4 takes an address, not a list of addresses. So the syntax should be:
gateway4: xxx.xxx.xxx.xxx
edited Dec 7 '18 at 18:14
answered Dec 5 '18 at 8:53
slangasek
2,42311418
2,42311418
I'm sorry, that was improper formatting/indenting on my post. The actual file is properly indented I believe. I edited my post to show what it actually looks like.
– trway9
Dec 6 '18 at 14:22
add a comment |
I'm sorry, that was improper formatting/indenting on my post. The actual file is properly indented I believe. I edited my post to show what it actually looks like.
– trway9
Dec 6 '18 at 14:22
I'm sorry, that was improper formatting/indenting on my post. The actual file is properly indented I believe. I edited my post to show what it actually looks like.
– trway9
Dec 6 '18 at 14:22
I'm sorry, that was improper formatting/indenting on my post. The actual file is properly indented I believe. I edited my post to show what it actually looks like.
– trway9
Dec 6 '18 at 14:22
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%2f1097506%2fubuntu-server-18-04-1-error-in-network-definition-when-trying-to-set-static-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
Hi, please be more precise on how you tried to do this, and perhaps don't throw some picture at us, but edit your question, to hold the information in text, both makes it easier to help you
– db429
Nov 30 '18 at 20:28