Unable to port forward from server to local serviceSSH Port Forward a local IRC server to my remote serverNot...
Do other countries guarantee freedoms that the United States does not have?
Why do private jets such as Gulfstream fly higher than other civilian jets?
Can ads on a page read my password?
Is alignment needed after replacing upper control arms?
Decode a variable-length quantity
Why do implementations of "stdint.h" disagree on the definition of UINT8_C?
How does The Fools Guild make its money?
What is the German idiom or expression for when someone is being hypocritical against their own teachings?
Why should I "believe in" weak solutions to PDEs?
Japanese equivalent of a brain fart
How to change output voltage using the LM7805?
Looking for a new job because of relocation - is it okay to tell the real reason?
What are good ways to improve as a writer other than writing courses?
Should I self-publish my novella on Amazon or try my luck getting publishers?
Capacitors with a "/" on schematic
If there were no space agencies, could a person go to space?
Why are the inside diameters of some pipe larger than the stated size?
Validation and verification of mathematical models
Purchased new computer from DELL with pre-installed Ubuntu. Won't boot. Should assume its an error from DELL?
Was there ever a difference between 'volo' and 'volo'?
Is it double speak?
Did silent film actors actually say their lines or did they simply improvise “dialogue” while being filmed?
Could one become a successful researcher by writing some really good papers while being outside academia?
Is it really ~648.69 km/s Delta-V to "Land" on the Surface of the Sun?
Unable to port forward from server to local service
SSH Port Forward a local IRC server to my remote serverNot able to connect to my Ubuntu SSH Server even after port forwarding on routerunable to connect to forwarded port over sshSSH Tunneling - Local and Remote Use CasesSSH - Unable to access local forward from another hostCannot forward X11 anymore from as ssh serverReverse SSH tunnel works for SSH but not for HTTPCan I use SSH to tunnel a specific port via my serveriptables unable to block local ssh connectionPlease explain this SSH connection command format
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm trying to access a webpage served on my machine from a VPS, but when using the curl
tool, I get a error (Empty reply from server).
I'm running a basic server on port 8000 with python python -m http.server
Locally I can get a html response with curl localhost:8000
Now when I try a ssh connection with ssh -R 8000:localhost:8000 myhost
. And then try the same curl command I get the following output "curl: (52) Empty reply from server"
I've tried to forward the traffic to Google and it worked, so it may be some other problem.
I'm on Windows BTW.
ssh ssh-tunneling
New contributor
add a comment |
I'm trying to access a webpage served on my machine from a VPS, but when using the curl
tool, I get a error (Empty reply from server).
I'm running a basic server on port 8000 with python python -m http.server
Locally I can get a html response with curl localhost:8000
Now when I try a ssh connection with ssh -R 8000:localhost:8000 myhost
. And then try the same curl command I get the following output "curl: (52) Empty reply from server"
I've tried to forward the traffic to Google and it worked, so it may be some other problem.
I'm on Windows BTW.
ssh ssh-tunneling
New contributor
add a comment |
I'm trying to access a webpage served on my machine from a VPS, but when using the curl
tool, I get a error (Empty reply from server).
I'm running a basic server on port 8000 with python python -m http.server
Locally I can get a html response with curl localhost:8000
Now when I try a ssh connection with ssh -R 8000:localhost:8000 myhost
. And then try the same curl command I get the following output "curl: (52) Empty reply from server"
I've tried to forward the traffic to Google and it worked, so it may be some other problem.
I'm on Windows BTW.
ssh ssh-tunneling
New contributor
I'm trying to access a webpage served on my machine from a VPS, but when using the curl
tool, I get a error (Empty reply from server).
I'm running a basic server on port 8000 with python python -m http.server
Locally I can get a html response with curl localhost:8000
Now when I try a ssh connection with ssh -R 8000:localhost:8000 myhost
. And then try the same curl command I get the following output "curl: (52) Empty reply from server"
I've tried to forward the traffic to Google and it worked, so it may be some other problem.
I'm on Windows BTW.
ssh ssh-tunneling
ssh ssh-tunneling
New contributor
New contributor
New contributor
asked 22 mins ago
André Roggeri CamposAndré Roggeri Campos
1012 bronze badges
1012 bronze badges
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
André Roggeri Campos is a new contributor. Be nice, and check out our Code of Conduct.
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%2funix.stackexchange.com%2fquestions%2f534647%2funable-to-port-forward-from-server-to-local-service%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
André Roggeri Campos is a new contributor. Be nice, and check out our Code of Conduct.
André Roggeri Campos is a new contributor. Be nice, and check out our Code of Conduct.
André Roggeri Campos is a new contributor. Be nice, and check out our Code of Conduct.
André Roggeri Campos is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f534647%2funable-to-port-forward-from-server-to-local-service%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