Hallo Andreas,
Andreas Kretschmer wrote:
Moin,
Frage:
Ich sitze als root auf einem Gateway, auf dem ein sshd tut, welcher von außen zum Portforwarden nach innen genutzt wird. Soweit nix besonders.
Aber: ich will nun grad mal wissen, welche Ports aktuell auf diese Weise über diese Gurke geforwardet werden. Machbar? Sicherlich, aber wie?
"lsof -i" ist dein Freund.
Hier sieht das jetzt gerade so aus:
root@ttyq5[knoppix]# lsof -i | grep '^ssh' ssh 23670 jean-luc 4u IPv4 3915287 TCP Knoppix:7779 (LISTEN) ssh 23670 jean-luc 5u IPv4 3915288 TCP Knoppix:7799 (LISTEN) ssh 23670 jean-luc 6u IPv4 3915289 TCP Knoppix:7878 (LISTEN) ssh 23670 jean-luc 10u IPv4 3923876 TCP Knoppix:7779->Knoppix:41588 (ESTABLISHED) ssh 23670 jean-luc 11u IPv4 3915881 TCP Knoppix:7878->Knoppix:41524 (ESTABLISHED) ssh 24113 jean-luc 3u IPv4 3915880 TCP Knoppix:41524->Knoppix:7878 (ESTABLISHED) ssh 24113 jean-luc 4u IPv4 3916012 TCP Knoppix:3128 (LISTEN) ssh 24113 jean-luc 5u IPv4 3916013 TCP Knoppix:9991 (LISTEN) ssh 24113 jean-luc 6u IPv4 3916014 TCP Knoppix:7777 (LISTEN) root@ttyq5[knoppix]#
Da sind also 6 ssh-Tunnel gelegt worden, die sich auf die PIDs 23670 und 24113 aufteilen...
Ciao, Thomas