Ubuntu UFW 3x specific IP addresses only to access a specific port











up vote
1
down vote

favorite
2












I need to use UFW to allow only 3x different IP addresses to connect on a specific port.
Ex:
IP address [1] - 111.111.111.111
IP address [1] - 222.222.222.222
IP address [1] - 333.333.333.333
on a specific port. All other connections denied.
Any help please ?
Can I simply add 3x rules one after each other for each ip address to point at the port ?
Thanks










share|improve this question


























    up vote
    1
    down vote

    favorite
    2












    I need to use UFW to allow only 3x different IP addresses to connect on a specific port.
    Ex:
    IP address [1] - 111.111.111.111
    IP address [1] - 222.222.222.222
    IP address [1] - 333.333.333.333
    on a specific port. All other connections denied.
    Any help please ?
    Can I simply add 3x rules one after each other for each ip address to point at the port ?
    Thanks










    share|improve this question
























      up vote
      1
      down vote

      favorite
      2









      up vote
      1
      down vote

      favorite
      2






      2





      I need to use UFW to allow only 3x different IP addresses to connect on a specific port.
      Ex:
      IP address [1] - 111.111.111.111
      IP address [1] - 222.222.222.222
      IP address [1] - 333.333.333.333
      on a specific port. All other connections denied.
      Any help please ?
      Can I simply add 3x rules one after each other for each ip address to point at the port ?
      Thanks










      share|improve this question













      I need to use UFW to allow only 3x different IP addresses to connect on a specific port.
      Ex:
      IP address [1] - 111.111.111.111
      IP address [1] - 222.222.222.222
      IP address [1] - 333.333.333.333
      on a specific port. All other connections denied.
      Any help please ?
      Can I simply add 3x rules one after each other for each ip address to point at the port ?
      Thanks







      firewall






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 23 '17 at 1:34









      maljam

      62




      62






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          2
          down vote













          First lets deny all access:



          sudo ufw default deny incoming
          sudo ufw default allow outgoing


          Now limit out inbound traffic to ip via these ports:



          sudo ufw allow from 1111.1111.1111.1111 to any port 33
          sudo ufw allow from 2222.2222.2222.2222 to any port 33
          sudo ufw allow from 3333.3333.3333.3333 to any port 33


          If adding a specific protocol to the rules above:



          sudo ufw allow from 1111.1111.1111.1111 proto udp to any port 33


          Now check your rules:



          sudo ufw status


          To delete these rules at any time:



          sudo ufw delete allow from 1111.1111.1111.1111 to any port 33


          Source:



          https://help.ubuntu.com/community/UFW



          https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-14-04






          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',
            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/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%2faskubuntu.com%2fquestions%2f875098%2fubuntu-ufw-3x-specific-ip-addresses-only-to-access-a-specific-port%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








            up vote
            2
            down vote













            First lets deny all access:



            sudo ufw default deny incoming
            sudo ufw default allow outgoing


            Now limit out inbound traffic to ip via these ports:



            sudo ufw allow from 1111.1111.1111.1111 to any port 33
            sudo ufw allow from 2222.2222.2222.2222 to any port 33
            sudo ufw allow from 3333.3333.3333.3333 to any port 33


            If adding a specific protocol to the rules above:



            sudo ufw allow from 1111.1111.1111.1111 proto udp to any port 33


            Now check your rules:



            sudo ufw status


            To delete these rules at any time:



            sudo ufw delete allow from 1111.1111.1111.1111 to any port 33


            Source:



            https://help.ubuntu.com/community/UFW



            https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-14-04






            share|improve this answer

























              up vote
              2
              down vote













              First lets deny all access:



              sudo ufw default deny incoming
              sudo ufw default allow outgoing


              Now limit out inbound traffic to ip via these ports:



              sudo ufw allow from 1111.1111.1111.1111 to any port 33
              sudo ufw allow from 2222.2222.2222.2222 to any port 33
              sudo ufw allow from 3333.3333.3333.3333 to any port 33


              If adding a specific protocol to the rules above:



              sudo ufw allow from 1111.1111.1111.1111 proto udp to any port 33


              Now check your rules:



              sudo ufw status


              To delete these rules at any time:



              sudo ufw delete allow from 1111.1111.1111.1111 to any port 33


              Source:



              https://help.ubuntu.com/community/UFW



              https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-14-04






              share|improve this answer























                up vote
                2
                down vote










                up vote
                2
                down vote









                First lets deny all access:



                sudo ufw default deny incoming
                sudo ufw default allow outgoing


                Now limit out inbound traffic to ip via these ports:



                sudo ufw allow from 1111.1111.1111.1111 to any port 33
                sudo ufw allow from 2222.2222.2222.2222 to any port 33
                sudo ufw allow from 3333.3333.3333.3333 to any port 33


                If adding a specific protocol to the rules above:



                sudo ufw allow from 1111.1111.1111.1111 proto udp to any port 33


                Now check your rules:



                sudo ufw status


                To delete these rules at any time:



                sudo ufw delete allow from 1111.1111.1111.1111 to any port 33


                Source:



                https://help.ubuntu.com/community/UFW



                https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-14-04






                share|improve this answer












                First lets deny all access:



                sudo ufw default deny incoming
                sudo ufw default allow outgoing


                Now limit out inbound traffic to ip via these ports:



                sudo ufw allow from 1111.1111.1111.1111 to any port 33
                sudo ufw allow from 2222.2222.2222.2222 to any port 33
                sudo ufw allow from 3333.3333.3333.3333 to any port 33


                If adding a specific protocol to the rules above:



                sudo ufw allow from 1111.1111.1111.1111 proto udp to any port 33


                Now check your rules:



                sudo ufw status


                To delete these rules at any time:



                sudo ufw delete allow from 1111.1111.1111.1111 to any port 33


                Source:



                https://help.ubuntu.com/community/UFW



                https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-14-04







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 23 '17 at 11:48









                George Udosen

                19.1k94266




                19.1k94266






























                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f875098%2fubuntu-ufw-3x-specific-ip-addresses-only-to-access-a-specific-port%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

                    flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                    Mangá

                     ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕