Use Ethernet connection for RDP and Wireless for internet












-2















Configuration:




  • machine1 is connected to router1 using ethernet connection

  • machine2 is connected to router1 using ethernet connection

  • machine2 is connected to router2 using wifi connection


What I want to achieve:




  • machine1 > RDP > machine2 [using router1's ethernet connection] BUT in the same time machine2 should be connected to the internet through router2's internet connection


I would like to be able to connect to a windows 10 through RDP using a cable network connection but use the WiFi connection to connect to the internet.



So machine1 is connected to router1 through cable, machine2 is also connected to router1 through cable but also connected through WiFi to router2. Both routers have internet access but I want that machine2 to use the WiFi connection to access the internet.



The Ethernet connection on machine2 has a static 192.168.0.100 ip and that's the ip I'm using when connecting through RDP.



Haven't tried anything yet but searching for a solution and understanding how should I approach this issue. I do have 2 more routers and 2 more external wireless cards, if needed.










share|improve this question





























    -2















    Configuration:




    • machine1 is connected to router1 using ethernet connection

    • machine2 is connected to router1 using ethernet connection

    • machine2 is connected to router2 using wifi connection


    What I want to achieve:




    • machine1 > RDP > machine2 [using router1's ethernet connection] BUT in the same time machine2 should be connected to the internet through router2's internet connection


    I would like to be able to connect to a windows 10 through RDP using a cable network connection but use the WiFi connection to connect to the internet.



    So machine1 is connected to router1 through cable, machine2 is also connected to router1 through cable but also connected through WiFi to router2. Both routers have internet access but I want that machine2 to use the WiFi connection to access the internet.



    The Ethernet connection on machine2 has a static 192.168.0.100 ip and that's the ip I'm using when connecting through RDP.



    Haven't tried anything yet but searching for a solution and understanding how should I approach this issue. I do have 2 more routers and 2 more external wireless cards, if needed.










    share|improve this question



























      -2












      -2








      -2








      Configuration:




      • machine1 is connected to router1 using ethernet connection

      • machine2 is connected to router1 using ethernet connection

      • machine2 is connected to router2 using wifi connection


      What I want to achieve:




      • machine1 > RDP > machine2 [using router1's ethernet connection] BUT in the same time machine2 should be connected to the internet through router2's internet connection


      I would like to be able to connect to a windows 10 through RDP using a cable network connection but use the WiFi connection to connect to the internet.



      So machine1 is connected to router1 through cable, machine2 is also connected to router1 through cable but also connected through WiFi to router2. Both routers have internet access but I want that machine2 to use the WiFi connection to access the internet.



      The Ethernet connection on machine2 has a static 192.168.0.100 ip and that's the ip I'm using when connecting through RDP.



      Haven't tried anything yet but searching for a solution and understanding how should I approach this issue. I do have 2 more routers and 2 more external wireless cards, if needed.










      share|improve this question
















      Configuration:




      • machine1 is connected to router1 using ethernet connection

      • machine2 is connected to router1 using ethernet connection

      • machine2 is connected to router2 using wifi connection


      What I want to achieve:




      • machine1 > RDP > machine2 [using router1's ethernet connection] BUT in the same time machine2 should be connected to the internet through router2's internet connection


      I would like to be able to connect to a windows 10 through RDP using a cable network connection but use the WiFi connection to connect to the internet.



      So machine1 is connected to router1 through cable, machine2 is also connected to router1 through cable but also connected through WiFi to router2. Both routers have internet access but I want that machine2 to use the WiFi connection to access the internet.



      The Ethernet connection on machine2 has a static 192.168.0.100 ip and that's the ip I'm using when connecting through RDP.



      Haven't tried anything yet but searching for a solution and understanding how should I approach this issue. I do have 2 more routers and 2 more external wireless cards, if needed.







      windows networking rdp






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 30 '18 at 12:19







      Stan K

















      asked Dec 28 '18 at 14:18









      Stan KStan K

      14




      14
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I have found the solution to my problem. The answer is to change the metrics for the target computer networks.



          So I will connect the target computer to both networks and while I'm still being able to connect through rdp from machine1 using the 192.168.0.100 ip I can go and use



          Get-NetIPInterface


          to see the current network metric configuration and then use



          Set-NetIPInterface -InterfaceIndex 21 -InterfaceMetric 10


          to set up the wireless configuration with a lower value than the other network connection so let's say if my ethernet has a metric of 15 and my wifi a metric of 10 then it will use the wifi to connect to the internet.



          In addition to that I am usign forceBindIp64 to manually configure individual application on my machine2 to use the internet connection that I choose either from the eth or wifi.






          share|improve this answer
























          • I want to thank those 2 who downvoted my question without a reason for not helping me on this one

            – Stan K
            Jan 8 at 0:00











          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',
          autoActivateHeartbeat: false,
          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%2f53959945%2fuse-ethernet-connection-for-rdp-and-wireless-for-internet%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









          0














          I have found the solution to my problem. The answer is to change the metrics for the target computer networks.



          So I will connect the target computer to both networks and while I'm still being able to connect through rdp from machine1 using the 192.168.0.100 ip I can go and use



          Get-NetIPInterface


          to see the current network metric configuration and then use



          Set-NetIPInterface -InterfaceIndex 21 -InterfaceMetric 10


          to set up the wireless configuration with a lower value than the other network connection so let's say if my ethernet has a metric of 15 and my wifi a metric of 10 then it will use the wifi to connect to the internet.



          In addition to that I am usign forceBindIp64 to manually configure individual application on my machine2 to use the internet connection that I choose either from the eth or wifi.






          share|improve this answer
























          • I want to thank those 2 who downvoted my question without a reason for not helping me on this one

            – Stan K
            Jan 8 at 0:00
















          0














          I have found the solution to my problem. The answer is to change the metrics for the target computer networks.



          So I will connect the target computer to both networks and while I'm still being able to connect through rdp from machine1 using the 192.168.0.100 ip I can go and use



          Get-NetIPInterface


          to see the current network metric configuration and then use



          Set-NetIPInterface -InterfaceIndex 21 -InterfaceMetric 10


          to set up the wireless configuration with a lower value than the other network connection so let's say if my ethernet has a metric of 15 and my wifi a metric of 10 then it will use the wifi to connect to the internet.



          In addition to that I am usign forceBindIp64 to manually configure individual application on my machine2 to use the internet connection that I choose either from the eth or wifi.






          share|improve this answer
























          • I want to thank those 2 who downvoted my question without a reason for not helping me on this one

            – Stan K
            Jan 8 at 0:00














          0












          0








          0







          I have found the solution to my problem. The answer is to change the metrics for the target computer networks.



          So I will connect the target computer to both networks and while I'm still being able to connect through rdp from machine1 using the 192.168.0.100 ip I can go and use



          Get-NetIPInterface


          to see the current network metric configuration and then use



          Set-NetIPInterface -InterfaceIndex 21 -InterfaceMetric 10


          to set up the wireless configuration with a lower value than the other network connection so let's say if my ethernet has a metric of 15 and my wifi a metric of 10 then it will use the wifi to connect to the internet.



          In addition to that I am usign forceBindIp64 to manually configure individual application on my machine2 to use the internet connection that I choose either from the eth or wifi.






          share|improve this answer













          I have found the solution to my problem. The answer is to change the metrics for the target computer networks.



          So I will connect the target computer to both networks and while I'm still being able to connect through rdp from machine1 using the 192.168.0.100 ip I can go and use



          Get-NetIPInterface


          to see the current network metric configuration and then use



          Set-NetIPInterface -InterfaceIndex 21 -InterfaceMetric 10


          to set up the wireless configuration with a lower value than the other network connection so let's say if my ethernet has a metric of 15 and my wifi a metric of 10 then it will use the wifi to connect to the internet.



          In addition to that I am usign forceBindIp64 to manually configure individual application on my machine2 to use the internet connection that I choose either from the eth or wifi.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 8 at 0:00









          Stan KStan K

          14




          14













          • I want to thank those 2 who downvoted my question without a reason for not helping me on this one

            – Stan K
            Jan 8 at 0:00



















          • I want to thank those 2 who downvoted my question without a reason for not helping me on this one

            – Stan K
            Jan 8 at 0:00

















          I want to thank those 2 who downvoted my question without a reason for not helping me on this one

          – Stan K
          Jan 8 at 0:00





          I want to thank those 2 who downvoted my question without a reason for not helping me on this one

          – Stan K
          Jan 8 at 0:00


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • 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%2fstackoverflow.com%2fquestions%2f53959945%2fuse-ethernet-connection-for-rdp-and-wireless-for-internet%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

          Mossoró

          Error while reading .h5 file using the rhdf5 package in R

          Pushsharp Apns notification error: 'InvalidToken'