What do the 2 last numbers between '()' mean in 227 response to “ls” command?I've just started to use a new modem, and now all my FTP clients won't workFTP LIST command fails between between host OS and guest OSUnix - Directory not empty. Error -126: remote rmdir failedError: The data connection could not be established: ECONNREFUSED - Connection refused by serverFTP with TLS doesn't work, nor can I change port in pure-ftpdMake Linux command line ftp client ignore local IP address in passive modeWhat does numbers mean in `mkfs -t ext4` command?What does the last “-” (hyphen) mean in options of `bash`?
Why would anyone choose not use the lowlatency kernel?
Queuable Apex logic in Constructor or Execute Method
Chess PhD topic in machine learning?
Is it normal to not be able to work 8 hours a day?
What specimen of caterpillar is this?
Why are compartments in western European day trains falling out of fashion?
GIMP using command line
Repeating elements in the story of Eliezer
Could anyone judge whether or not what I have experienced are types of abuse?
Adding "dot com" to the end of a sentence?
Could a Falcon Heavy really put six GPS Block III satellites in orbit?
How did the USSR track Gagarin's Vostok-1 orbital flight? Was tracking capability an issue in the choice of orbit?
How do you preserve fresh ginger?
Is the worst version of the accusations against President Trump impeachable?
Why voltage regulators instead of voltage dividers for supplying power to loads?
Hammering under water?
What did Rex Kramer mean by routing the plane in Lake Michigan?
What is the difference between "more" and "less" commands?
Aliens kill as an art form, surprised that humans don't appreciate
How much would we learn from observing an FTL starship fly by?
Why do Germans spell and pronounce "rocket" with a (Rakete)?
Why is a living creature being frozen in carbonite in “The Mandalorian” so common when it seemed so risky in “The Empire Strikes Back?”
How do you help a new player evaluate complex multiclassing options without driving them and yourself crazy?
What is difference between Adding Item statically and Dynamically while creating sitecore package?
What do the 2 last numbers between '()' mean in 227 response to “ls” command?
I've just started to use a new modem, and now all my FTP clients won't workFTP LIST command fails between between host OS and guest OSUnix - Directory not empty. Error -126: remote rmdir failedError: The data connection could not be established: ECONNREFUSED - Connection refused by serverFTP with TLS doesn't work, nor can I change port in pure-ftpdMake Linux command line ftp client ignore local IP address in passive modeWhat does numbers mean in `mkfs -t ext4` command?What does the last “-” (hyphen) mean in options of `bash`?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
This question is related to FTP tool that can be found here: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit
If I run a command such like ls
the output is the following:
227 Entering Passive Mode (192,0,2,1,104,31)
What do the 2 last numbers between ()
mean?
linux ftp
add a comment
|
This question is related to FTP tool that can be found here: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit
If I run a command such like ls
the output is the following:
227 Entering Passive Mode (192,0,2,1,104,31)
What do the 2 last numbers between ()
mean?
linux ftp
add a comment
|
This question is related to FTP tool that can be found here: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit
If I run a command such like ls
the output is the following:
227 Entering Passive Mode (192,0,2,1,104,31)
What do the 2 last numbers between ()
mean?
linux ftp
This question is related to FTP tool that can be found here: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit
If I run a command such like ls
the output is the following:
227 Entering Passive Mode (192,0,2,1,104,31)
What do the 2 last numbers between ()
mean?
linux ftp
linux ftp
edited Sep 20 at 5:37
Martin Prikryl
13.1k4 gold badges38 silver badges101 bronze badges
13.1k4 gold badges38 silver badges101 bronze badges
asked Sep 19 at 22:51
sebelksebelk
2151 silver badge9 bronze badges
2151 silver badge9 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
That is the raw message from the FTP server, it's not generated by your client (netkit).
The last two numbers are the two bytes that comprise the remote port for the passive data connection.
In this case, the remote port is (104 << 8) + 31
, or (104 * 256) + 31
or 26655.
2
nice first answer!
– ivanivan
Sep 19 at 23:14
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "3"
;
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/4.0/"u003ecc by-sa 4.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%2fsuperuser.com%2fquestions%2f1484398%2fwhat-do-the-2-last-numbers-between-mean-in-227-response-to-ls-command%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
That is the raw message from the FTP server, it's not generated by your client (netkit).
The last two numbers are the two bytes that comprise the remote port for the passive data connection.
In this case, the remote port is (104 << 8) + 31
, or (104 * 256) + 31
or 26655.
2
nice first answer!
– ivanivan
Sep 19 at 23:14
add a comment
|
That is the raw message from the FTP server, it's not generated by your client (netkit).
The last two numbers are the two bytes that comprise the remote port for the passive data connection.
In this case, the remote port is (104 << 8) + 31
, or (104 * 256) + 31
or 26655.
2
nice first answer!
– ivanivan
Sep 19 at 23:14
add a comment
|
That is the raw message from the FTP server, it's not generated by your client (netkit).
The last two numbers are the two bytes that comprise the remote port for the passive data connection.
In this case, the remote port is (104 << 8) + 31
, or (104 * 256) + 31
or 26655.
That is the raw message from the FTP server, it's not generated by your client (netkit).
The last two numbers are the two bytes that comprise the remote port for the passive data connection.
In this case, the remote port is (104 << 8) + 31
, or (104 * 256) + 31
or 26655.
answered Sep 19 at 23:11
Nathan DorfmanNathan Dorfman
761 bronze badge
761 bronze badge
2
nice first answer!
– ivanivan
Sep 19 at 23:14
add a comment
|
2
nice first answer!
– ivanivan
Sep 19 at 23:14
2
2
nice first answer!
– ivanivan
Sep 19 at 23:14
nice first answer!
– ivanivan
Sep 19 at 23:14
add a comment
|
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1484398%2fwhat-do-the-2-last-numbers-between-mean-in-227-response-to-ls-command%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