• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Issue with White list IP(s) not working :(

Scheduled Pinned Locked Moved Troubleshooting
23 Posts 11 Posters 12.0k Views 12 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    pingywon
    last edited by Aug 25, 2017, 10:47 PM

    Got an issue with white listing IPs. I am sure I am doing something wrong, but I cant for the life of me figure it out.

    I wanna whitelist the whole 192.168.0.x and possibly even 192.168.1.x networks /24

    I added this to my white list

    var config = {
            port: 8080,
            ipWhitelist: ["192.168.0.1/24 , ::ffff:192.168.0.1/24", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
                                                                   // or add a specific IPv4 of 192.168.1.5 :
                                                                   // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
                                                                   // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
                                                                   // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
    
    

    The mirror boots fine (as opposed to black screening on me) but I get the

    “This device is not allowed to access your mirror.
    Please check your config.js or config.js.sample to change this.”

    error.

    Can someone give me something I can copy and paste…im not understanding this whitelist thing.

    M 1 Reply Last reply Aug 26, 2017, 12:51 AM Reply Quote 0
    • M Offline
      Mykle1 Project Sponsor Module Developer @pingywon
      last edited by Aug 26, 2017, 12:51 AM

      @pingywon said in Issue with White list IP(s) not working :(:

      Can someone give me something I can copy and paste…im not understanding this whitelist thing.

      You may or may not need the address: line. This will Whitelist all IP’s on the network. I don’t know if that is what you want. However, it should work.

      var config = {
      	port: 8080,
      	ipWhitelist: [],
      	address: "0.0.0.0",
      

      Create a working config
      How to add modules

      1 Reply Last reply Reply Quote 0
      • P Offline
        pingywon
        last edited by Aug 26, 2017, 1:30 AM

        white listing everyone would be totally fine. Thanks for this! I cant wait to try it!

        M 1 Reply Last reply Aug 26, 2017, 1:32 AM Reply Quote 1
        • M Offline
          Mykle1 Project Sponsor Module Developer @pingywon
          last edited by Aug 26, 2017, 1:32 AM

          @pingywon

          Keep my posted. Good luck! :^)

          Create a working config
          How to add modules

          P 1 Reply Last reply Aug 26, 2017, 2:25 AM Reply Quote 0
          • P Offline
            pingywon @Mykle1
            last edited by Aug 26, 2017, 2:25 AM

            @Mykle1

            it still isnt working :( Here is my config now…

            var config = {
                    port: 8080,
                    ipWhitelist:   [],                                     // Set [] to allow all IP addresses
                                address:"0.0.0.0",                         // or add a specific IPv4 of 192.168.1.5 :
                                                                           // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
                                                                           // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
                                                                           // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/2$
            

            Any other ideas? I dont know why this is so hard :*(

            M 1 Reply Last reply Aug 26, 2017, 2:36 AM Reply Quote 0
            • M Offline
              Mykle1 Project Sponsor Module Developer @pingywon
              last edited by Aug 26, 2017, 2:36 AM

              @pingywon said in Issue with White list IP(s) not working :(:

              Any other ideas? I dont know why this is so hard :*(

              You tried with and without the address line?

              I know, it can be frustrating. Other people have had a similar problem. What I suggested to you has helped some of them. I’m sorry that it didn’t. Perhaps try searching the forum for Whitelist and see what you come up with. This one if just from the other day.

              https://forum.magicmirror.builders/topic/4701/changing-ipwhitelist-prevents-mirror-from-loading-correctly

              Create a working config
              How to add modules

              1 Reply Last reply Reply Quote 0
              • P Offline
                pingywon
                last edited by Aug 26, 2017, 2:41 AM

                I do thank you for your time, but that thread is someone with the exact same problem as me and the answer is the same one you posed here and it doesnt work.

                Why does it seem only a few people are having this issue?

                M 1 Reply Last reply Aug 26, 2017, 2:53 AM Reply Quote 0
                • M Offline
                  Mykle1 Project Sponsor Module Developer @pingywon
                  last edited by Mykle1 Aug 26, 2017, 3:06 AM Aug 26, 2017, 2:53 AM

                  @pingywon said in Issue with White list IP(s) not working :(:

                  Why does it seem only a few people are having this issue?

                  I really can’t say why it happens to some and not others. It’s hard to troubleshoot for someone when there are so many unknowns. There are so many different setups (various Pi’s, PC’s, Mac’s, etc) all running different OS’s (various Raspbian flavors, various Windows versions, Mac OS, various uBuntu versions). This make’s it impossible for “one fix fits all” solutions. Personally, I do the best I can to help people that ask for help. There are many Whitelist topics that have been posted. I can only suggest that you use the search function here on the forum. In the meantime, someone else may have a suggestion that might work for you.

                  Best of luck to you

                  https://forum.magicmirror.builders/search?term=Whitelist&in=titlesposts

                  Create a working config
                  How to add modules

                  1 Reply Last reply Reply Quote 0
                  • P Offline
                    pingywon
                    last edited by Aug 26, 2017, 3:10 PM

                    Anyone else have any input. Im kinda stuck here. I have looked at other threads and have not drawn any conclusions

                    1 Reply Last reply Reply Quote 0
                    • D Offline
                      da4throux
                      last edited by Aug 26, 2017, 9:19 PM

                      Not my area, but I was reading this: https://forum.magicmirror.builders/topic/1326/ipwhitelist-howto/8
                      and it mentions that the whitelisting on a range is for IPv6 , so maybe not working with IPv4.
                      Hope that help

                      M 1 Reply Last reply Aug 26, 2017, 9:29 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 1 / 3
                      1 / 3
                      • First post
                        5/23
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy