Failed to start Raise network interfacesConnecting Two Computers Together: Assigning IP doesnt workSetting Internet GatewayMultiple network on the same cardProblem when creating a network with my virtual machineNetwork interface name mismatch when using vmbuilderUbuntu 16.04 lts - network does not start on boot - bonding14.04 Dual LAN Same Network One port unusableRenaming ethernet devices in 16.04Failed to start raise network interface on Ubuntu 16.04

Why don't the absolute value functions in C accept const inputs?

Could the barycenter orbit of our sun be greatly underestimated?

Does 'hacer alguien matar' mean to make somebody kill or to get sb killed?

Unexpected large rent payments, by moneygram, for my apartment, not by me

What is a winning position in chess?

What to do with excess co-ax cable

Which seat 'predicts' the outcomes of UK General Elections the best?

How to scientifically explain bane weapons?

Is it appropriate to ask for the text of a eulogy?

Intuition behind image derivative using Fourier Transform for edges detection

one list minus another

Why are bicycle tires incapable of maintaining pressure over time, while car tyres seem to have less of a problem?

Is this a valid use of Deflect Missiles according to RAW?

Finding the right insults

I am ask to complete my withdrawal transaction with COT fee of 1200 dollars

Why is Trump not being impeached for bribery?

Is Kirk’s comment about “LDS” intended to be a religious joke?

Why aren't we seeing carbon taxes in practice?

How do I force `sudo` to ask for a password each time when a specific command is used?

Is a datagram from an upper network layer converted 1:1 to one of the lower layer?

What license do I use when I don't want stock image companies charging people money for photos?

I've never seen this before. Is this primarily a "rote computational trick" for multiplication by 9 ...?

How to I represent 5 eighth-notes as one note?

The algorithm of the new quantum factoring record 1,099,551,473,989



Failed to start Raise network interfaces


Connecting Two Computers Together: Assigning IP doesnt workSetting Internet GatewayMultiple network on the same cardProblem when creating a network with my virtual machineNetwork interface name mismatch when using vmbuilderUbuntu 16.04 lts - network does not start on boot - bonding14.04 Dual LAN Same Network One port unusableRenaming ethernet devices in 16.04Failed to start raise network interface on Ubuntu 16.04






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









2


















Ubuntu 16 (vm)
added one virtual nic ens160, working fine
added a second physical nic ens192 creating the error.



systemctl status networking.service
● networking.service - Raise network interfaces
Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled)
Drop-In: /run/systemd/generator/networking.service.d
└─50-insserv.conf-$network.conf
Active: failed (Result: exit-code) since Wed 2016-07-06 11:19:04 EDT; 8s ago
Docs: man:interfaces(5)
Process: 14290 ExecStart=/sbin/ifup -a --read-environment (code=exited, status=1/FAILURE)
Process: 14284 ExecStartPre=/bin/sh -c [ "$CONFIGURE_INTERFACES" != "no" ] && [ -n "$(ifquery --read-environment --list --exclude=lo)" ] && udevadm settle (code=exited, status=0/SUCCESS)
Main PID: 14290 (code=exited, status=1/FAILURE)

Jul 06 11:19:03 gbsnort systemd[1]: Starting Raise network interfaces...
Jul 06 11:19:04 gbsnort ifup[14290]: RTNETLINK answers: File exists
Jul 06 11:19:04 gbsnort ifup[14290]: Failed to bring up ens192.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Jul 06 11:19:04 gbsnort systemd[1]: Failed to start Raise network interfaces.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Unit entered failed state.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Failed with result 'exit-code'.


6 # The loopback network interface
7 auto lo
8 iface lo inet loopback
9
10 # The primary network interface
11 auto ens160
12 iface ens160 inet static
13 address 192.168.2.17
14 netmask 255.255.255.0
15 network 192.168.2.0
16 broadcast 192.168.2.255
17 gateway 192.168.2.40
18 # dns-* options are implemented by the resolvconf package, if installed
19 dns-nameservers 192.168.2.13
20 dns-search mydomain.com
21
22 # The monitoring interface
23 auto ens192
24 iface ens192 inet static
25 address 192.168.2.12
26 netmask 255.255.255.0
27 # network 192.168.2.0
28 # broadcast 192.168.2.255
29 gateway 192.168.2.40
30 # dns-nameservers 192.168.2.13
31 # dns-search mydomain.com
32
33 post-up ethtool -K ens192 gro off
34 post-up ethtool -K ens192 lro off









share|improve this question

























  • let's have a look see at you route command

    – user610658
    Aug 15 '18 at 6:03

















2


















Ubuntu 16 (vm)
added one virtual nic ens160, working fine
added a second physical nic ens192 creating the error.



systemctl status networking.service
● networking.service - Raise network interfaces
Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled)
Drop-In: /run/systemd/generator/networking.service.d
└─50-insserv.conf-$network.conf
Active: failed (Result: exit-code) since Wed 2016-07-06 11:19:04 EDT; 8s ago
Docs: man:interfaces(5)
Process: 14290 ExecStart=/sbin/ifup -a --read-environment (code=exited, status=1/FAILURE)
Process: 14284 ExecStartPre=/bin/sh -c [ "$CONFIGURE_INTERFACES" != "no" ] && [ -n "$(ifquery --read-environment --list --exclude=lo)" ] && udevadm settle (code=exited, status=0/SUCCESS)
Main PID: 14290 (code=exited, status=1/FAILURE)

Jul 06 11:19:03 gbsnort systemd[1]: Starting Raise network interfaces...
Jul 06 11:19:04 gbsnort ifup[14290]: RTNETLINK answers: File exists
Jul 06 11:19:04 gbsnort ifup[14290]: Failed to bring up ens192.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Jul 06 11:19:04 gbsnort systemd[1]: Failed to start Raise network interfaces.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Unit entered failed state.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Failed with result 'exit-code'.


6 # The loopback network interface
7 auto lo
8 iface lo inet loopback
9
10 # The primary network interface
11 auto ens160
12 iface ens160 inet static
13 address 192.168.2.17
14 netmask 255.255.255.0
15 network 192.168.2.0
16 broadcast 192.168.2.255
17 gateway 192.168.2.40
18 # dns-* options are implemented by the resolvconf package, if installed
19 dns-nameservers 192.168.2.13
20 dns-search mydomain.com
21
22 # The monitoring interface
23 auto ens192
24 iface ens192 inet static
25 address 192.168.2.12
26 netmask 255.255.255.0
27 # network 192.168.2.0
28 # broadcast 192.168.2.255
29 gateway 192.168.2.40
30 # dns-nameservers 192.168.2.13
31 # dns-search mydomain.com
32
33 post-up ethtool -K ens192 gro off
34 post-up ethtool -K ens192 lro off









share|improve this question

























  • let's have a look see at you route command

    – user610658
    Aug 15 '18 at 6:03













2













2









2


4






Ubuntu 16 (vm)
added one virtual nic ens160, working fine
added a second physical nic ens192 creating the error.



systemctl status networking.service
● networking.service - Raise network interfaces
Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled)
Drop-In: /run/systemd/generator/networking.service.d
└─50-insserv.conf-$network.conf
Active: failed (Result: exit-code) since Wed 2016-07-06 11:19:04 EDT; 8s ago
Docs: man:interfaces(5)
Process: 14290 ExecStart=/sbin/ifup -a --read-environment (code=exited, status=1/FAILURE)
Process: 14284 ExecStartPre=/bin/sh -c [ "$CONFIGURE_INTERFACES" != "no" ] && [ -n "$(ifquery --read-environment --list --exclude=lo)" ] && udevadm settle (code=exited, status=0/SUCCESS)
Main PID: 14290 (code=exited, status=1/FAILURE)

Jul 06 11:19:03 gbsnort systemd[1]: Starting Raise network interfaces...
Jul 06 11:19:04 gbsnort ifup[14290]: RTNETLINK answers: File exists
Jul 06 11:19:04 gbsnort ifup[14290]: Failed to bring up ens192.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Jul 06 11:19:04 gbsnort systemd[1]: Failed to start Raise network interfaces.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Unit entered failed state.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Failed with result 'exit-code'.


6 # The loopback network interface
7 auto lo
8 iface lo inet loopback
9
10 # The primary network interface
11 auto ens160
12 iface ens160 inet static
13 address 192.168.2.17
14 netmask 255.255.255.0
15 network 192.168.2.0
16 broadcast 192.168.2.255
17 gateway 192.168.2.40
18 # dns-* options are implemented by the resolvconf package, if installed
19 dns-nameservers 192.168.2.13
20 dns-search mydomain.com
21
22 # The monitoring interface
23 auto ens192
24 iface ens192 inet static
25 address 192.168.2.12
26 netmask 255.255.255.0
27 # network 192.168.2.0
28 # broadcast 192.168.2.255
29 gateway 192.168.2.40
30 # dns-nameservers 192.168.2.13
31 # dns-search mydomain.com
32
33 post-up ethtool -K ens192 gro off
34 post-up ethtool -K ens192 lro off









share|improve this question














Ubuntu 16 (vm)
added one virtual nic ens160, working fine
added a second physical nic ens192 creating the error.



systemctl status networking.service
● networking.service - Raise network interfaces
Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled)
Drop-In: /run/systemd/generator/networking.service.d
└─50-insserv.conf-$network.conf
Active: failed (Result: exit-code) since Wed 2016-07-06 11:19:04 EDT; 8s ago
Docs: man:interfaces(5)
Process: 14290 ExecStart=/sbin/ifup -a --read-environment (code=exited, status=1/FAILURE)
Process: 14284 ExecStartPre=/bin/sh -c [ "$CONFIGURE_INTERFACES" != "no" ] && [ -n "$(ifquery --read-environment --list --exclude=lo)" ] && udevadm settle (code=exited, status=0/SUCCESS)
Main PID: 14290 (code=exited, status=1/FAILURE)

Jul 06 11:19:03 gbsnort systemd[1]: Starting Raise network interfaces...
Jul 06 11:19:04 gbsnort ifup[14290]: RTNETLINK answers: File exists
Jul 06 11:19:04 gbsnort ifup[14290]: Failed to bring up ens192.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Jul 06 11:19:04 gbsnort systemd[1]: Failed to start Raise network interfaces.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Unit entered failed state.
Jul 06 11:19:04 gbsnort systemd[1]: networking.service: Failed with result 'exit-code'.


6 # The loopback network interface
7 auto lo
8 iface lo inet loopback
9
10 # The primary network interface
11 auto ens160
12 iface ens160 inet static
13 address 192.168.2.17
14 netmask 255.255.255.0
15 network 192.168.2.0
16 broadcast 192.168.2.255
17 gateway 192.168.2.40
18 # dns-* options are implemented by the resolvconf package, if installed
19 dns-nameservers 192.168.2.13
20 dns-search mydomain.com
21
22 # The monitoring interface
23 auto ens192
24 iface ens192 inet static
25 address 192.168.2.12
26 netmask 255.255.255.0
27 # network 192.168.2.0
28 # broadcast 192.168.2.255
29 gateway 192.168.2.40
30 # dns-nameservers 192.168.2.13
31 # dns-search mydomain.com
32
33 post-up ethtool -K ens192 gro off
34 post-up ethtool -K ens192 lro off






networking






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jul 6 '16 at 15:28









scopascopa

871 gold badge3 silver badges7 bronze badges




871 gold badge3 silver badges7 bronze badges















  • let's have a look see at you route command

    – user610658
    Aug 15 '18 at 6:03

















  • let's have a look see at you route command

    – user610658
    Aug 15 '18 at 6:03
















let's have a look see at you route command

– user610658
Aug 15 '18 at 6:03





let's have a look see at you route command

– user610658
Aug 15 '18 at 6:03










1 Answer
1






active

oldest

votes


















0



















  1. execute dmesg | grep eth and see whether it is ens192.



  2. edit /etc/network/interfaces and append a few lines like bellow:



    iface ensxxx inet static
    address 192.168.1.138
    netmask 255.255.255.0
    gateway 192.168.1.1






share|improve this answer




























    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/4.0/"u003ecc by-sa 4.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%2faskubuntu.com%2fquestions%2f795592%2ffailed-to-start-raise-network-interfaces%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









    0



















    1. execute dmesg | grep eth and see whether it is ens192.



    2. edit /etc/network/interfaces and append a few lines like bellow:



      iface ensxxx inet static
      address 192.168.1.138
      netmask 255.255.255.0
      gateway 192.168.1.1






    share|improve this answer































      0



















      1. execute dmesg | grep eth and see whether it is ens192.



      2. edit /etc/network/interfaces and append a few lines like bellow:



        iface ensxxx inet static
        address 192.168.1.138
        netmask 255.255.255.0
        gateway 192.168.1.1






      share|improve this answer





























        0















        0











        0









        1. execute dmesg | grep eth and see whether it is ens192.



        2. edit /etc/network/interfaces and append a few lines like bellow:



          iface ensxxx inet static
          address 192.168.1.138
          netmask 255.255.255.0
          gateway 192.168.1.1






        share|improve this answer
















        1. execute dmesg | grep eth and see whether it is ens192.



        2. edit /etc/network/interfaces and append a few lines like bellow:



          iface ensxxx inet static
          address 192.168.1.138
          netmask 255.255.255.0
          gateway 192.168.1.1







        share|improve this answer















        share|improve this answer




        share|improve this answer








        edited Feb 19 '17 at 14:05









        David Foerster

        29.9k13 gold badges71 silver badges119 bronze badges




        29.9k13 gold badges71 silver badges119 bronze badges










        answered Feb 19 '17 at 13:45









        tedylitedyli

        331 silver badge5 bronze badges




        331 silver badge5 bronze badges































            draft saved

            draft discarded















































            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%2f795592%2ffailed-to-start-raise-network-interfaces%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

            Tamil (spriik) Luke uk diar | Nawigatjuun

            Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

            Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?