autossh creating many processes every time

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0















I'm using autossh to connect to a reverse SSH tunnel. I run it from startup.



However, I was facing problems in that the tunnel sometimes goes down.



I created a script which checks if the tunnel is actually working , and if not do other stuff like restart the modem etc.



The only way I seem to be able to check if the tunnel is working is by using the autossh command again and checking the reply.



autossh -M 0 -N -q -o ServerAliveInterval=20 -o ServerAliveCountMax=3 HMzg8fspYG8SS1oJ7Jl6bkDnT2lYrB@fw1.sshreach.me -i id_rsa -R 13238:localhost:22 -v


I just noticed tho that every time I use this autossh command, it starts a new auto process. There are so many autossh processes running now. This is obviously not good.



There are two questions :



1) Is there a better way to verify if my tunnel is working without using the autossh command again? (I couldn't find another way)



2) The other option I suppose is to kill the processes in my script which are not used and just have the one autossh process. However, How do I find the pid of a process if there are many of them with the name autossh?










share|improve this question
























  • The point of autossh is you not having to launch processes manually, I think. Could it be possible that you are using SSH to tunnel something that should be tunnelled on other way?

    – Rui F Ribeiro
    Feb 16 at 14:43











  • I know, but, this is the only way to solve my problem. I need to check with autossh in a script if the tunnel is actually open by reading the responses, if not, then restart the modem to solve it. I don't understand why this is, but it fixes my issue

    – Engineer999
    Feb 16 at 14:49















0















I'm using autossh to connect to a reverse SSH tunnel. I run it from startup.



However, I was facing problems in that the tunnel sometimes goes down.



I created a script which checks if the tunnel is actually working , and if not do other stuff like restart the modem etc.



The only way I seem to be able to check if the tunnel is working is by using the autossh command again and checking the reply.



autossh -M 0 -N -q -o ServerAliveInterval=20 -o ServerAliveCountMax=3 HMzg8fspYG8SS1oJ7Jl6bkDnT2lYrB@fw1.sshreach.me -i id_rsa -R 13238:localhost:22 -v


I just noticed tho that every time I use this autossh command, it starts a new auto process. There are so many autossh processes running now. This is obviously not good.



There are two questions :



1) Is there a better way to verify if my tunnel is working without using the autossh command again? (I couldn't find another way)



2) The other option I suppose is to kill the processes in my script which are not used and just have the one autossh process. However, How do I find the pid of a process if there are many of them with the name autossh?










share|improve this question
























  • The point of autossh is you not having to launch processes manually, I think. Could it be possible that you are using SSH to tunnel something that should be tunnelled on other way?

    – Rui F Ribeiro
    Feb 16 at 14:43











  • I know, but, this is the only way to solve my problem. I need to check with autossh in a script if the tunnel is actually open by reading the responses, if not, then restart the modem to solve it. I don't understand why this is, but it fixes my issue

    – Engineer999
    Feb 16 at 14:49













0












0








0








I'm using autossh to connect to a reverse SSH tunnel. I run it from startup.



However, I was facing problems in that the tunnel sometimes goes down.



I created a script which checks if the tunnel is actually working , and if not do other stuff like restart the modem etc.



The only way I seem to be able to check if the tunnel is working is by using the autossh command again and checking the reply.



autossh -M 0 -N -q -o ServerAliveInterval=20 -o ServerAliveCountMax=3 HMzg8fspYG8SS1oJ7Jl6bkDnT2lYrB@fw1.sshreach.me -i id_rsa -R 13238:localhost:22 -v


I just noticed tho that every time I use this autossh command, it starts a new auto process. There are so many autossh processes running now. This is obviously not good.



There are two questions :



1) Is there a better way to verify if my tunnel is working without using the autossh command again? (I couldn't find another way)



2) The other option I suppose is to kill the processes in my script which are not used and just have the one autossh process. However, How do I find the pid of a process if there are many of them with the name autossh?










share|improve this question
















I'm using autossh to connect to a reverse SSH tunnel. I run it from startup.



However, I was facing problems in that the tunnel sometimes goes down.



I created a script which checks if the tunnel is actually working , and if not do other stuff like restart the modem etc.



The only way I seem to be able to check if the tunnel is working is by using the autossh command again and checking the reply.



autossh -M 0 -N -q -o ServerAliveInterval=20 -o ServerAliveCountMax=3 HMzg8fspYG8SS1oJ7Jl6bkDnT2lYrB@fw1.sshreach.me -i id_rsa -R 13238:localhost:22 -v


I just noticed tho that every time I use this autossh command, it starts a new auto process. There are so many autossh processes running now. This is obviously not good.



There are two questions :



1) Is there a better way to verify if my tunnel is working without using the autossh command again? (I couldn't find another way)



2) The other option I suppose is to kill the processes in my script which are not used and just have the one autossh process. However, How do I find the pid of a process if there are many of them with the name autossh?







linux debian process autossh






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 16 at 14:26









Rui F Ribeiro

41.4k1481140




41.4k1481140










asked Feb 16 at 14:00









Engineer999Engineer999

31319




31319












  • The point of autossh is you not having to launch processes manually, I think. Could it be possible that you are using SSH to tunnel something that should be tunnelled on other way?

    – Rui F Ribeiro
    Feb 16 at 14:43











  • I know, but, this is the only way to solve my problem. I need to check with autossh in a script if the tunnel is actually open by reading the responses, if not, then restart the modem to solve it. I don't understand why this is, but it fixes my issue

    – Engineer999
    Feb 16 at 14:49

















  • The point of autossh is you not having to launch processes manually, I think. Could it be possible that you are using SSH to tunnel something that should be tunnelled on other way?

    – Rui F Ribeiro
    Feb 16 at 14:43











  • I know, but, this is the only way to solve my problem. I need to check with autossh in a script if the tunnel is actually open by reading the responses, if not, then restart the modem to solve it. I don't understand why this is, but it fixes my issue

    – Engineer999
    Feb 16 at 14:49
















The point of autossh is you not having to launch processes manually, I think. Could it be possible that you are using SSH to tunnel something that should be tunnelled on other way?

– Rui F Ribeiro
Feb 16 at 14:43





The point of autossh is you not having to launch processes manually, I think. Could it be possible that you are using SSH to tunnel something that should be tunnelled on other way?

– Rui F Ribeiro
Feb 16 at 14:43













I know, but, this is the only way to solve my problem. I need to check with autossh in a script if the tunnel is actually open by reading the responses, if not, then restart the modem to solve it. I don't understand why this is, but it fixes my issue

– Engineer999
Feb 16 at 14:49





I know, but, this is the only way to solve my problem. I need to check with autossh in a script if the tunnel is actually open by reading the responses, if not, then restart the modem to solve it. I don't understand why this is, but it fixes my issue

– Engineer999
Feb 16 at 14:49










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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f501049%2fautossh-creating-many-processes-every-time%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















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f501049%2fautossh-creating-many-processes-every-time%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

Peggy Mitchell

Palaiologos

The Forum (Inglewood, California)