How to set a static IP using netplan? (running Ubuntu Bionic server)












0















My problem is that no static IP is getting assigned to the built-in ethernet port. I have run netplan apply several times. I've also rebooted the PC and still no luck.



I am sure the ethernet port works as I was previously using it on Ubuntu 16.04 just before I decided to fresh install 18.04.2.



Any ideas what I could be doing wrong? I am going to use the ethernet port to connect my main PC to the Ubuntu server via a crossover cable.



If I set the ethernet port to use dchp4:true and connect an ethernet cable from it to my modem/router and disable my WiFi card (by removing the netplan config), the PC can connect to the net without any issues.



Thanks





This is the output of netplan --debug apply which also shows the contents of my YAML files. I have tried with and without dhcp4/dchp6/gateway4/renderer.



enter image description here










share|improve this question





























    0















    My problem is that no static IP is getting assigned to the built-in ethernet port. I have run netplan apply several times. I've also rebooted the PC and still no luck.



    I am sure the ethernet port works as I was previously using it on Ubuntu 16.04 just before I decided to fresh install 18.04.2.



    Any ideas what I could be doing wrong? I am going to use the ethernet port to connect my main PC to the Ubuntu server via a crossover cable.



    If I set the ethernet port to use dchp4:true and connect an ethernet cable from it to my modem/router and disable my WiFi card (by removing the netplan config), the PC can connect to the net without any issues.



    Thanks





    This is the output of netplan --debug apply which also shows the contents of my YAML files. I have tried with and without dhcp4/dchp6/gateway4/renderer.



    enter image description here










    share|improve this question



























      0












      0








      0








      My problem is that no static IP is getting assigned to the built-in ethernet port. I have run netplan apply several times. I've also rebooted the PC and still no luck.



      I am sure the ethernet port works as I was previously using it on Ubuntu 16.04 just before I decided to fresh install 18.04.2.



      Any ideas what I could be doing wrong? I am going to use the ethernet port to connect my main PC to the Ubuntu server via a crossover cable.



      If I set the ethernet port to use dchp4:true and connect an ethernet cable from it to my modem/router and disable my WiFi card (by removing the netplan config), the PC can connect to the net without any issues.



      Thanks





      This is the output of netplan --debug apply which also shows the contents of my YAML files. I have tried with and without dhcp4/dchp6/gateway4/renderer.



      enter image description here










      share|improve this question
















      My problem is that no static IP is getting assigned to the built-in ethernet port. I have run netplan apply several times. I've also rebooted the PC and still no luck.



      I am sure the ethernet port works as I was previously using it on Ubuntu 16.04 just before I decided to fresh install 18.04.2.



      Any ideas what I could be doing wrong? I am going to use the ethernet port to connect my main PC to the Ubuntu server via a crossover cable.



      If I set the ethernet port to use dchp4:true and connect an ethernet cable from it to my modem/router and disable my WiFi card (by removing the netplan config), the PC can connect to the net without any issues.



      Thanks





      This is the output of netplan --debug apply which also shows the contents of my YAML files. I have tried with and without dhcp4/dchp6/gateway4/renderer.



      enter image description here







      networking netplan






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 hours ago









      Rui F Ribeiro

      41.5k1481140




      41.5k1481140










      asked 4 hours ago









      mrjayvipermrjayviper

      5321719




      5321719






















          1 Answer
          1






          active

          oldest

          votes


















          -1














          Did you tried with /etc/network/interfaces File ..



          edit interfaces file with following static ip config like eth0 in the following example.




          root@redbird:~# cat /etc/network/interfaces




          interfaces(5) file used by ifup(8) and ifdown(8)



          auto lo
          iface lo inet loopback



          auto eth0
          iface eth0 inet static
          address 192.168.0.130
          netmask 255.255.255.0
          network 192.168.0.0
          broadcast 192.168.0.255
          gateway 192.168.0.1



          ** Broadcast and Network lines are optional **



          replace eth0 with enp3s0 and run




          "ifup enp3s0" .







          share|improve this answer










          New contributor




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




















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f506192%2fhow-to-set-a-static-ip-using-netplan-running-ubuntu-bionic-server%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














            Did you tried with /etc/network/interfaces File ..



            edit interfaces file with following static ip config like eth0 in the following example.




            root@redbird:~# cat /etc/network/interfaces




            interfaces(5) file used by ifup(8) and ifdown(8)



            auto lo
            iface lo inet loopback



            auto eth0
            iface eth0 inet static
            address 192.168.0.130
            netmask 255.255.255.0
            network 192.168.0.0
            broadcast 192.168.0.255
            gateway 192.168.0.1



            ** Broadcast and Network lines are optional **



            replace eth0 with enp3s0 and run




            "ifup enp3s0" .







            share|improve this answer










            New contributor




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

























              -1














              Did you tried with /etc/network/interfaces File ..



              edit interfaces file with following static ip config like eth0 in the following example.




              root@redbird:~# cat /etc/network/interfaces




              interfaces(5) file used by ifup(8) and ifdown(8)



              auto lo
              iface lo inet loopback



              auto eth0
              iface eth0 inet static
              address 192.168.0.130
              netmask 255.255.255.0
              network 192.168.0.0
              broadcast 192.168.0.255
              gateway 192.168.0.1



              ** Broadcast and Network lines are optional **



              replace eth0 with enp3s0 and run




              "ifup enp3s0" .







              share|improve this answer










              New contributor




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























                -1












                -1








                -1







                Did you tried with /etc/network/interfaces File ..



                edit interfaces file with following static ip config like eth0 in the following example.




                root@redbird:~# cat /etc/network/interfaces




                interfaces(5) file used by ifup(8) and ifdown(8)



                auto lo
                iface lo inet loopback



                auto eth0
                iface eth0 inet static
                address 192.168.0.130
                netmask 255.255.255.0
                network 192.168.0.0
                broadcast 192.168.0.255
                gateway 192.168.0.1



                ** Broadcast and Network lines are optional **



                replace eth0 with enp3s0 and run




                "ifup enp3s0" .







                share|improve this answer










                New contributor




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










                Did you tried with /etc/network/interfaces File ..



                edit interfaces file with following static ip config like eth0 in the following example.




                root@redbird:~# cat /etc/network/interfaces




                interfaces(5) file used by ifup(8) and ifdown(8)



                auto lo
                iface lo inet loopback



                auto eth0
                iface eth0 inet static
                address 192.168.0.130
                netmask 255.255.255.0
                network 192.168.0.0
                broadcast 192.168.0.255
                gateway 192.168.0.1



                ** Broadcast and Network lines are optional **



                replace eth0 with enp3s0 and run




                "ifup enp3s0" .








                share|improve this answer










                New contributor




                Vijay Kumar Nandigam 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 answer



                share|improve this answer








                edited 17 mins ago





















                New contributor




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









                answered 25 mins ago









                Vijay Kumar NandigamVijay Kumar Nandigam

                12




                12




                New contributor




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





                New contributor





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






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






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • 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%2funix.stackexchange.com%2fquestions%2f506192%2fhow-to-set-a-static-ip-using-netplan-running-ubuntu-bionic-server%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

                    Loup dans la culture

                    How to solve the problem of ntp “Unable to contact time server” from KDE?

                    Connection limited (no internet access)