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

          Creating 100m^2 grid automatically using QGIS?Creating grid constrained within polygon in QGIS?Createing polygon layer from point data using QGIS?Creating vector grid using QGIS?Creating grid polygons from coordinates using R or PythonCreating grid from spatio temporal point data?Creating fields in attributes table using other layers using QGISCreate .shp vector grid in QGISQGIS Creating 4km point grid within polygonsCreate a vector grid over a raster layerVector Grid Creates just one grid

          Nikolai Prilezhaev Bibliography References External links Navigation menuEarly Russian Organic Chemists and Their Legacy092774english translationRussian Biography

          How to link a C library to an Assembly library on Mac with clangHow do you set, clear, and toggle a single bit?Find (and kill) process locking port 3000 on MacWho is listening on a given TCP port on Mac OS X?How to start PostgreSQL server on Mac OS X?Compile assembler in nasm on mac osHow do I install pip on macOS or OS X?AFNetworking 2.0 “_NSURLSessionTransferSizeUnknown” linking error on Mac OS X 10.8C++ code for testing the Collatz conjecture faster than hand-written assembly - why?How to link a NASM code and GCC in Mac OS X?How to run x86 .asm on macOS Sierra