Use Ethernet connection for RDP and Wireless for internet
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
add a comment |
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
add a comment |
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
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
windows networking rdp
edited Dec 30 '18 at 12:19
Stan K
asked Dec 28 '18 at 14:18
Stan KStan K
14
14
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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