redirect traffic with iptables to local port











up vote
0
down vote

favorite












I have a machine IP1 that sends packets to port 54321 of IP2. I want to redirect this requests to a port 8080 of IP1 before these packets leave machine IP1 and go to IP2. This means I need to filter outcoming traffic.



I tried answers from related questions but this does not help:



iptables -t nat -A OUTPUT -p tcp -d IP1 --dport 54321 -j REDIRECT --to-ports 8080

iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080


Reading definitions of DNAT and REDIRECT still leave me confused what should work here.










share|improve this question




























    up vote
    0
    down vote

    favorite












    I have a machine IP1 that sends packets to port 54321 of IP2. I want to redirect this requests to a port 8080 of IP1 before these packets leave machine IP1 and go to IP2. This means I need to filter outcoming traffic.



    I tried answers from related questions but this does not help:



    iptables -t nat -A OUTPUT -p tcp -d IP1 --dport 54321 -j REDIRECT --to-ports 8080

    iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080


    Reading definitions of DNAT and REDIRECT still leave me confused what should work here.










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have a machine IP1 that sends packets to port 54321 of IP2. I want to redirect this requests to a port 8080 of IP1 before these packets leave machine IP1 and go to IP2. This means I need to filter outcoming traffic.



      I tried answers from related questions but this does not help:



      iptables -t nat -A OUTPUT -p tcp -d IP1 --dport 54321 -j REDIRECT --to-ports 8080

      iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080


      Reading definitions of DNAT and REDIRECT still leave me confused what should work here.










      share|improve this question















      I have a machine IP1 that sends packets to port 54321 of IP2. I want to redirect this requests to a port 8080 of IP1 before these packets leave machine IP1 and go to IP2. This means I need to filter outcoming traffic.



      I tried answers from related questions but this does not help:



      iptables -t nat -A OUTPUT -p tcp -d IP1 --dport 54321 -j REDIRECT --to-ports 8080

      iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080


      Reading definitions of DNAT and REDIRECT still leave me confused what should work here.







      redirect iptables nat






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 19 at 12:09

























      asked Nov 19 at 11:52









      Anastasiya Ruzhanskaya

      131118




      131118
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          Edit:



          iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080





          share|improve this answer










          New contributor




          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • According to this link PREROUTING works for incoming, not for outcoming traffic. And I have outcoming
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:04












          • But if you change the source ip to 127.0.0.1 you send rewrite all packages from 127.0.0.1:54321 to 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:09










          • This does not work:( I have mitmproxy on port 8080 on IP1 machine and want to forward him these packets before they are sent to another machine IP2. When I do the written command , no packets are printed with mitmproxy.
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:18






          • 1




            Try this: iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:23












          • Seems that worked finally:) Thanks
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:33











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          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%2fstackoverflow.com%2fquestions%2f53374082%2fredirect-traffic-with-iptables-to-local-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
          0
          down vote



          accepted










          Edit:



          iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080





          share|improve this answer










          New contributor




          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • According to this link PREROUTING works for incoming, not for outcoming traffic. And I have outcoming
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:04












          • But if you change the source ip to 127.0.0.1 you send rewrite all packages from 127.0.0.1:54321 to 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:09










          • This does not work:( I have mitmproxy on port 8080 on IP1 machine and want to forward him these packets before they are sent to another machine IP2. When I do the written command , no packets are printed with mitmproxy.
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:18






          • 1




            Try this: iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:23












          • Seems that worked finally:) Thanks
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:33















          up vote
          0
          down vote



          accepted










          Edit:



          iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080





          share|improve this answer










          New contributor




          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • According to this link PREROUTING works for incoming, not for outcoming traffic. And I have outcoming
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:04












          • But if you change the source ip to 127.0.0.1 you send rewrite all packages from 127.0.0.1:54321 to 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:09










          • This does not work:( I have mitmproxy on port 8080 on IP1 machine and want to forward him these packets before they are sent to another machine IP2. When I do the written command , no packets are printed with mitmproxy.
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:18






          • 1




            Try this: iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:23












          • Seems that worked finally:) Thanks
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:33













          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          Edit:



          iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080





          share|improve this answer










          New contributor




          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          Edit:



          iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080






          share|improve this answer










          New contributor




          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer








          edited Nov 19 at 12:23





















          New contributor




          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered Nov 19 at 12:00









          Spirit

          656




          656




          New contributor




          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Spirit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.












          • According to this link PREROUTING works for incoming, not for outcoming traffic. And I have outcoming
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:04












          • But if you change the source ip to 127.0.0.1 you send rewrite all packages from 127.0.0.1:54321 to 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:09










          • This does not work:( I have mitmproxy on port 8080 on IP1 machine and want to forward him these packets before they are sent to another machine IP2. When I do the written command , no packets are printed with mitmproxy.
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:18






          • 1




            Try this: iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:23












          • Seems that worked finally:) Thanks
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:33


















          • According to this link PREROUTING works for incoming, not for outcoming traffic. And I have outcoming
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:04












          • But if you change the source ip to 127.0.0.1 you send rewrite all packages from 127.0.0.1:54321 to 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:09










          • This does not work:( I have mitmproxy on port 8080 on IP1 machine and want to forward him these packets before they are sent to another machine IP2. When I do the written command , no packets are printed with mitmproxy.
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:18






          • 1




            Try this: iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080
            – Spirit
            Nov 19 at 12:23












          • Seems that worked finally:) Thanks
            – Anastasiya Ruzhanskaya
            Nov 19 at 12:33
















          According to this link PREROUTING works for incoming, not for outcoming traffic. And I have outcoming
          – Anastasiya Ruzhanskaya
          Nov 19 at 12:04






          According to this link PREROUTING works for incoming, not for outcoming traffic. And I have outcoming
          – Anastasiya Ruzhanskaya
          Nov 19 at 12:04














          But if you change the source ip to 127.0.0.1 you send rewrite all packages from 127.0.0.1:54321 to 127.0.0.1:8080
          – Spirit
          Nov 19 at 12:09




          But if you change the source ip to 127.0.0.1 you send rewrite all packages from 127.0.0.1:54321 to 127.0.0.1:8080
          – Spirit
          Nov 19 at 12:09












          This does not work:( I have mitmproxy on port 8080 on IP1 machine and want to forward him these packets before they are sent to another machine IP2. When I do the written command , no packets are printed with mitmproxy.
          – Anastasiya Ruzhanskaya
          Nov 19 at 12:18




          This does not work:( I have mitmproxy on port 8080 on IP1 machine and want to forward him these packets before they are sent to another machine IP2. When I do the written command , no packets are printed with mitmproxy.
          – Anastasiya Ruzhanskaya
          Nov 19 at 12:18




          1




          1




          Try this: iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080
          – Spirit
          Nov 19 at 12:23






          Try this: iptables -t nat -A OUTPUT -p tcp --dport 54321 -j DNAT --to-destination 127.0.0.1:8080
          – Spirit
          Nov 19 at 12:23














          Seems that worked finally:) Thanks
          – Anastasiya Ruzhanskaya
          Nov 19 at 12:33




          Seems that worked finally:) Thanks
          – Anastasiya Ruzhanskaya
          Nov 19 at 12:33


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374082%2fredirect-traffic-with-iptables-to-local-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

          To store a contact into the json file from server.js file using a class in NodeJS

          Redirect URL with Chrome Remote Debugging Android Devices

          Dieringhausen