How can i view actual state of ssh port-forwarding rules?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I ssh session i pressed ~C then i defined forwarding rule, then got Forwarding port.
response, then added another one. how can i view these rules at once? (not by scrolling terminal up)
ssh> ?
Commands:
-L[bind_address:]port:host:hostport Request local forward
-R[bind_address:]port:host:hostport Request remote forward
-D[bind_address:]port Request dynamic forward
-KL[bind_address:]port Cancel local forward
-KR[bind_address:]port Cancel remote forward
-KD[bind_address:]port Cancel dynamic forward
wanted command -... display current port forwarding rules
ssh ssh-tunneling
add a comment |Â
up vote
1
down vote
favorite
I ssh session i pressed ~C then i defined forwarding rule, then got Forwarding port.
response, then added another one. how can i view these rules at once? (not by scrolling terminal up)
ssh> ?
Commands:
-L[bind_address:]port:host:hostport Request local forward
-R[bind_address:]port:host:hostport Request remote forward
-D[bind_address:]port Request dynamic forward
-KL[bind_address:]port Cancel local forward
-KR[bind_address:]port Cancel remote forward
-KD[bind_address:]port Cancel dynamic forward
wanted command -... display current port forwarding rules
ssh ssh-tunneling
netstat/ss are your friends.
â Rui F Ribeiro
Jun 27 at 10:50
I havenetstat
on local machine, not on shared remote computer
â Yurij
Jun 27 at 10:55
1
I am unfamiliar with the prompt you indicate in your terminal example. What software package/ssh client are you using?
â 0xSheepdog
Jun 27 at 16:46
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I ssh session i pressed ~C then i defined forwarding rule, then got Forwarding port.
response, then added another one. how can i view these rules at once? (not by scrolling terminal up)
ssh> ?
Commands:
-L[bind_address:]port:host:hostport Request local forward
-R[bind_address:]port:host:hostport Request remote forward
-D[bind_address:]port Request dynamic forward
-KL[bind_address:]port Cancel local forward
-KR[bind_address:]port Cancel remote forward
-KD[bind_address:]port Cancel dynamic forward
wanted command -... display current port forwarding rules
ssh ssh-tunneling
I ssh session i pressed ~C then i defined forwarding rule, then got Forwarding port.
response, then added another one. how can i view these rules at once? (not by scrolling terminal up)
ssh> ?
Commands:
-L[bind_address:]port:host:hostport Request local forward
-R[bind_address:]port:host:hostport Request remote forward
-D[bind_address:]port Request dynamic forward
-KL[bind_address:]port Cancel local forward
-KR[bind_address:]port Cancel remote forward
-KD[bind_address:]port Cancel dynamic forward
wanted command -... display current port forwarding rules
ssh ssh-tunneling
asked Jun 27 at 10:44
Yurij
83
83
netstat/ss are your friends.
â Rui F Ribeiro
Jun 27 at 10:50
I havenetstat
on local machine, not on shared remote computer
â Yurij
Jun 27 at 10:55
1
I am unfamiliar with the prompt you indicate in your terminal example. What software package/ssh client are you using?
â 0xSheepdog
Jun 27 at 16:46
add a comment |Â
netstat/ss are your friends.
â Rui F Ribeiro
Jun 27 at 10:50
I havenetstat
on local machine, not on shared remote computer
â Yurij
Jun 27 at 10:55
1
I am unfamiliar with the prompt you indicate in your terminal example. What software package/ssh client are you using?
â 0xSheepdog
Jun 27 at 16:46
netstat/ss are your friends.
â Rui F Ribeiro
Jun 27 at 10:50
netstat/ss are your friends.
â Rui F Ribeiro
Jun 27 at 10:50
I have
netstat
on local machine, not on shared remote computerâ Yurij
Jun 27 at 10:55
I have
netstat
on local machine, not on shared remote computerâ Yurij
Jun 27 at 10:55
1
1
I am unfamiliar with the prompt you indicate in your terminal example. What software package/ssh client are you using?
â 0xSheepdog
Jun 27 at 16:46
I am unfamiliar with the prompt you indicate in your terminal example. What software package/ssh client are you using?
â 0xSheepdog
Jun 27 at 16:46
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
The follow will list the tunnels created by ssh and sshd.
lsof -i -n | egrep 'ssh'
lsof -i -n | egrep 'sshd'
firewall-cmd --list-all-zones
will list all zones and port rules.
Nice! lsof do the trick!IPv6 107472 0t0 TCP [::1]:8888 (LISTEN)
â Yurij
Jun 28 at 8:31
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
The follow will list the tunnels created by ssh and sshd.
lsof -i -n | egrep 'ssh'
lsof -i -n | egrep 'sshd'
firewall-cmd --list-all-zones
will list all zones and port rules.
Nice! lsof do the trick!IPv6 107472 0t0 TCP [::1]:8888 (LISTEN)
â Yurij
Jun 28 at 8:31
add a comment |Â
up vote
0
down vote
accepted
The follow will list the tunnels created by ssh and sshd.
lsof -i -n | egrep 'ssh'
lsof -i -n | egrep 'sshd'
firewall-cmd --list-all-zones
will list all zones and port rules.
Nice! lsof do the trick!IPv6 107472 0t0 TCP [::1]:8888 (LISTEN)
â Yurij
Jun 28 at 8:31
add a comment |Â
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The follow will list the tunnels created by ssh and sshd.
lsof -i -n | egrep 'ssh'
lsof -i -n | egrep 'sshd'
firewall-cmd --list-all-zones
will list all zones and port rules.
The follow will list the tunnels created by ssh and sshd.
lsof -i -n | egrep 'ssh'
lsof -i -n | egrep 'sshd'
firewall-cmd --list-all-zones
will list all zones and port rules.
answered Jun 27 at 16:40
Govna
7817
7817
Nice! lsof do the trick!IPv6 107472 0t0 TCP [::1]:8888 (LISTEN)
â Yurij
Jun 28 at 8:31
add a comment |Â
Nice! lsof do the trick!IPv6 107472 0t0 TCP [::1]:8888 (LISTEN)
â Yurij
Jun 28 at 8:31
Nice! lsof do the trick!
IPv6 107472 0t0 TCP [::1]:8888 (LISTEN)
â Yurij
Jun 28 at 8:31
Nice! lsof do the trick!
IPv6 107472 0t0 TCP [::1]:8888 (LISTEN)
â Yurij
Jun 28 at 8:31
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f452192%2fhow-can-i-view-actual-state-of-ssh-port-forwarding-rules%23new-answer', 'question_page');
);
Post as a guest
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
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
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
netstat/ss are your friends.
â Rui F Ribeiro
Jun 27 at 10:50
I have
netstat
on local machine, not on shared remote computerâ Yurij
Jun 27 at 10:55
1
I am unfamiliar with the prompt you indicate in your terminal example. What software package/ssh client are you using?
â 0xSheepdog
Jun 27 at 16:46