OpenBSD: Defining a new loopback interface2019 Community Moderator ElectionHow come one can successfully ping 127.0.0.2 on Linux?Routing a LAN through OpenVPN on OpenBSD 5.5how to setup network routing table for wireless networkOpenBSD with only a /32 repeatedly deletes its static route to the worldpf not stopping bruteforce attemptsHow can I do a loopback test?OpenBSD: Check what files under /etc has changed in comparison to pristine base systemDoes “loopback” in a loopback file mean the same as in loopback IP address?Configuring ISO of Knoppix image to boot from USBAre the IPv4 and IPv6 networks for my loopback interface the same network?How come one can successfully ping 127.0.0.2 on Linux?

Can a malicious addon access internet history and such in chrome/firefox?

Greatest common substring

Have I saved too much for retirement so far?

Who must act to prevent Brexit on March 29th?

Science Fiction story where a man invents a machine that can help him watch history unfold

Indicating multiple different modes of speech (fantasy language or telepathy)

Was the picture area of a CRT a parallelogram (instead of a true rectangle)?

Adding empty element to declared container without declaring type of element

What does 権威 mean when referring to goods?

Bob has never been a M before

Stereotypical names

What is the term when two people sing in harmony, but they aren't singing the same notes?

Visiting the UK as unmarried couple

Word describing multiple paths to the same abstract outcome

"lassen" in meaning "sich fassen"

A workplace installs custom certificates on personal devices, can this be used to decrypt HTTPS traffic?

Are taller landing gear bad for aircraft, particulary large airliners?

Why does this part of the Space Shuttle launch pad seem to be floating in air?

How to check participants in at events?

Proof of Lemma: Every integer can be written as a product of primes

Could solar power be utilized and substitute coal in the 19th century?

Latex for-and in equation

Java - What do constructor type arguments mean when placed *before* the type?

Pronouncing Homer as in modern Greek



OpenBSD: Defining a new loopback interface



2019 Community Moderator ElectionHow come one can successfully ping 127.0.0.2 on Linux?Routing a LAN through OpenVPN on OpenBSD 5.5how to setup network routing table for wireless networkOpenBSD with only a /32 repeatedly deletes its static route to the worldpf not stopping bruteforce attemptsHow can I do a loopback test?OpenBSD: Check what files under /etc has changed in comparison to pristine base systemDoes “loopback” in a loopback file mean the same as in loopback IP address?Configuring ISO of Knoppix image to boot from USBAre the IPv4 and IPv6 networks for my loopback interface the same network?How come one can successfully ping 127.0.0.2 on Linux?










7















I need one more loopback interface in my OpenBSD 6.1, with the IP address 127.0.0.2.



I can create it by hand with the command:



ifconfig lo1 127.0.0.2


And to have it at boot time, I just inserted that command into /etc/rc.local.



I have researched for a more standard way to do that, was not successful.



Having it in /etc/rc.local also means I only have that interface late in the boot process.



How may I configure it in a cleaner "OpenBSD" way?










share|improve this question




























    7















    I need one more loopback interface in my OpenBSD 6.1, with the IP address 127.0.0.2.



    I can create it by hand with the command:



    ifconfig lo1 127.0.0.2


    And to have it at boot time, I just inserted that command into /etc/rc.local.



    I have researched for a more standard way to do that, was not successful.



    Having it in /etc/rc.local also means I only have that interface late in the boot process.



    How may I configure it in a cleaner "OpenBSD" way?










    share|improve this question


























      7












      7








      7








      I need one more loopback interface in my OpenBSD 6.1, with the IP address 127.0.0.2.



      I can create it by hand with the command:



      ifconfig lo1 127.0.0.2


      And to have it at boot time, I just inserted that command into /etc/rc.local.



      I have researched for a more standard way to do that, was not successful.



      Having it in /etc/rc.local also means I only have that interface late in the boot process.



      How may I configure it in a cleaner "OpenBSD" way?










      share|improve this question
















      I need one more loopback interface in my OpenBSD 6.1, with the IP address 127.0.0.2.



      I can create it by hand with the command:



      ifconfig lo1 127.0.0.2


      And to have it at boot time, I just inserted that command into /etc/rc.local.



      I have researched for a more standard way to do that, was not successful.



      Having it in /etc/rc.local also means I only have that interface late in the boot process.



      How may I configure it in a cleaner "OpenBSD" way?







      openbsd loopback






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 days ago









      Kusalananda

      137k17258426




      137k17258426










      asked Jun 14 '17 at 7:47









      Rui F RibeiroRui F Ribeiro

      41.7k1483142




      41.7k1483142




















          2 Answers
          2






          active

          oldest

          votes


















          10














          As hinted at in lo(4), you may create /etc/hostname.lo1:



          inet 127.0.0.2 255.0.0.0


          This will create the lo1 interface when the boot process runs /etc/netstart. With that file in place, you may also set up the interface without rebooting through



          $ doas sh /etc/netstart lo1


          The interface is reported as



          lo1: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 32768
          index 4 priority 0 llprio 3
          groups: lo
          inet 127.0.0.2 netmask 0xff000000


          by ifconfig.



          For further info, see hostname.if(5), netstart(8) and ifconfig(8).






          share|improve this answer




















          • 2





            Thanks for all the help, I am getting my feet wet in OpenBSD in a personal netbook as a pilot/(re)introduction to the system.

            – Rui F Ribeiro
            Jun 14 '17 at 8:36



















          0














          Unless you have a reason for this to be an additional network interface, note that you do not have to have a second interface just in order to have a second IP address in 127.0.0.0/8. You can add the second IP address to the existing loopback interface:



          # echo >> /etc/hostname.lo0 inet alias 127.0.0.2 255.0.0.0
          #


          Remember if you do this that you need the -A option to ifconfig now. It's a slightly misleading option. It does not target aliases per se. It simply stops ifconfig from displaying only the first IP version 4 address that it finds, which is what it actually does in lieu of finding out which IP addresses are aliases.






          share|improve this answer























          • I defined a interface to give it to some particular software at the time. Switched back to freebsd.

            – Rui F Ribeiro
            2 days ago










          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%2f371025%2fopenbsd-defining-a-new-loopback-interface%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          10














          As hinted at in lo(4), you may create /etc/hostname.lo1:



          inet 127.0.0.2 255.0.0.0


          This will create the lo1 interface when the boot process runs /etc/netstart. With that file in place, you may also set up the interface without rebooting through



          $ doas sh /etc/netstart lo1


          The interface is reported as



          lo1: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 32768
          index 4 priority 0 llprio 3
          groups: lo
          inet 127.0.0.2 netmask 0xff000000


          by ifconfig.



          For further info, see hostname.if(5), netstart(8) and ifconfig(8).






          share|improve this answer




















          • 2





            Thanks for all the help, I am getting my feet wet in OpenBSD in a personal netbook as a pilot/(re)introduction to the system.

            – Rui F Ribeiro
            Jun 14 '17 at 8:36
















          10














          As hinted at in lo(4), you may create /etc/hostname.lo1:



          inet 127.0.0.2 255.0.0.0


          This will create the lo1 interface when the boot process runs /etc/netstart. With that file in place, you may also set up the interface without rebooting through



          $ doas sh /etc/netstart lo1


          The interface is reported as



          lo1: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 32768
          index 4 priority 0 llprio 3
          groups: lo
          inet 127.0.0.2 netmask 0xff000000


          by ifconfig.



          For further info, see hostname.if(5), netstart(8) and ifconfig(8).






          share|improve this answer




















          • 2





            Thanks for all the help, I am getting my feet wet in OpenBSD in a personal netbook as a pilot/(re)introduction to the system.

            – Rui F Ribeiro
            Jun 14 '17 at 8:36














          10












          10








          10







          As hinted at in lo(4), you may create /etc/hostname.lo1:



          inet 127.0.0.2 255.0.0.0


          This will create the lo1 interface when the boot process runs /etc/netstart. With that file in place, you may also set up the interface without rebooting through



          $ doas sh /etc/netstart lo1


          The interface is reported as



          lo1: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 32768
          index 4 priority 0 llprio 3
          groups: lo
          inet 127.0.0.2 netmask 0xff000000


          by ifconfig.



          For further info, see hostname.if(5), netstart(8) and ifconfig(8).






          share|improve this answer















          As hinted at in lo(4), you may create /etc/hostname.lo1:



          inet 127.0.0.2 255.0.0.0


          This will create the lo1 interface when the boot process runs /etc/netstart. With that file in place, you may also set up the interface without rebooting through



          $ doas sh /etc/netstart lo1


          The interface is reported as



          lo1: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 32768
          index 4 priority 0 llprio 3
          groups: lo
          inet 127.0.0.2 netmask 0xff000000


          by ifconfig.



          For further info, see hostname.if(5), netstart(8) and ifconfig(8).







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jun 14 '17 at 8:18

























          answered Jun 14 '17 at 7:59









          KusalanandaKusalananda

          137k17258426




          137k17258426







          • 2





            Thanks for all the help, I am getting my feet wet in OpenBSD in a personal netbook as a pilot/(re)introduction to the system.

            – Rui F Ribeiro
            Jun 14 '17 at 8:36













          • 2





            Thanks for all the help, I am getting my feet wet in OpenBSD in a personal netbook as a pilot/(re)introduction to the system.

            – Rui F Ribeiro
            Jun 14 '17 at 8:36








          2




          2





          Thanks for all the help, I am getting my feet wet in OpenBSD in a personal netbook as a pilot/(re)introduction to the system.

          – Rui F Ribeiro
          Jun 14 '17 at 8:36






          Thanks for all the help, I am getting my feet wet in OpenBSD in a personal netbook as a pilot/(re)introduction to the system.

          – Rui F Ribeiro
          Jun 14 '17 at 8:36














          0














          Unless you have a reason for this to be an additional network interface, note that you do not have to have a second interface just in order to have a second IP address in 127.0.0.0/8. You can add the second IP address to the existing loopback interface:



          # echo >> /etc/hostname.lo0 inet alias 127.0.0.2 255.0.0.0
          #


          Remember if you do this that you need the -A option to ifconfig now. It's a slightly misleading option. It does not target aliases per se. It simply stops ifconfig from displaying only the first IP version 4 address that it finds, which is what it actually does in lieu of finding out which IP addresses are aliases.






          share|improve this answer























          • I defined a interface to give it to some particular software at the time. Switched back to freebsd.

            – Rui F Ribeiro
            2 days ago















          0














          Unless you have a reason for this to be an additional network interface, note that you do not have to have a second interface just in order to have a second IP address in 127.0.0.0/8. You can add the second IP address to the existing loopback interface:



          # echo >> /etc/hostname.lo0 inet alias 127.0.0.2 255.0.0.0
          #


          Remember if you do this that you need the -A option to ifconfig now. It's a slightly misleading option. It does not target aliases per se. It simply stops ifconfig from displaying only the first IP version 4 address that it finds, which is what it actually does in lieu of finding out which IP addresses are aliases.






          share|improve this answer























          • I defined a interface to give it to some particular software at the time. Switched back to freebsd.

            – Rui F Ribeiro
            2 days ago













          0












          0








          0







          Unless you have a reason for this to be an additional network interface, note that you do not have to have a second interface just in order to have a second IP address in 127.0.0.0/8. You can add the second IP address to the existing loopback interface:



          # echo >> /etc/hostname.lo0 inet alias 127.0.0.2 255.0.0.0
          #


          Remember if you do this that you need the -A option to ifconfig now. It's a slightly misleading option. It does not target aliases per se. It simply stops ifconfig from displaying only the first IP version 4 address that it finds, which is what it actually does in lieu of finding out which IP addresses are aliases.






          share|improve this answer













          Unless you have a reason for this to be an additional network interface, note that you do not have to have a second interface just in order to have a second IP address in 127.0.0.0/8. You can add the second IP address to the existing loopback interface:



          # echo >> /etc/hostname.lo0 inet alias 127.0.0.2 255.0.0.0
          #


          Remember if you do this that you need the -A option to ifconfig now. It's a slightly misleading option. It does not target aliases per se. It simply stops ifconfig from displaying only the first IP version 4 address that it finds, which is what it actually does in lieu of finding out which IP addresses are aliases.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 days ago









          JdeBPJdeBP

          37.5k478180




          37.5k478180












          • I defined a interface to give it to some particular software at the time. Switched back to freebsd.

            – Rui F Ribeiro
            2 days ago

















          • I defined a interface to give it to some particular software at the time. Switched back to freebsd.

            – Rui F Ribeiro
            2 days ago
















          I defined a interface to give it to some particular software at the time. Switched back to freebsd.

          – Rui F Ribeiro
          2 days ago





          I defined a interface to give it to some particular software at the time. Switched back to freebsd.

          – Rui F Ribeiro
          2 days ago

















          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%2f371025%2fopenbsd-defining-a-new-loopback-interface%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







          -loopback, openbsd

          Popular posts from this blog

          Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

          Frič See also Navigation menuinternal link

          Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant