Skip to main content

Questions tagged [ssh]

Secure Shell; a network protocol that allows data transfer over a secure channel between two networked devices.

-2 votes
0 answers
10 views

Secure way to remote into windows server to do task like change password for domain user or modify permissions or server roles

currently I use team viewer. I use to use VNC but I heard of security issues. I hear VPN but from what ive used i would have to power shell or cmd all the commands and im not too familiar with it . Is ...
qwertyyuiop's user avatar
0 votes
0 answers
15 views

sudo still asks password after editing sudoers [duplicate]

I need to execute the command ssh [email protected] "sudo systemctl stop crs_svc" in my GitLab YAML script. To do so I have updated the /etc/sudoers file on the host 10.1.0.56 and added the ...
saroyr's user avatar
  • 1
-1 votes
1 answer
31 views

SSH command variants

Difference between ssh [email protected] ssh za\\[email protected] ? Both login methods are giving me SSH access but some files/folders are accessible via the latter while not via ...
Aryan's user avatar
  • 31
-1 votes
0 answers
39 views

Cant connect to a Hyper V VM with Putty via another Device [closed]

OS: Windows Server 2022 VM OS: Ubuntu Server 24.04 LTS Note: The VM is on the same network I tried to connect to the vm with putty via another device but after a few seconds I got an error message:...
Razes's user avatar
  • 1
0 votes
0 answers
23 views

Sending Environment Variables via SCP

I'm looking to send some kind of environment variable using "SCP -o" (or any other file transfer protocol for that matter PSFTP, PSCP, etc). I currently use SCP to transfer files between ...
horsman's user avatar
2 votes
1 answer
176 views

adding *any* directive above Include negates HostName inside that included file

Okay - worst subject ever? Sorry. $ cat ~/.ssh/config # Host wut # LocalForward 1234 whatever:1234 Include ~/.ssh/test.include $ cat ~/.ssh/test.include Host op1 HostName 123.123.123.123 $ ssh -...
jsharpe's user avatar
  • 183
1 vote
1 answer
36 views

SSH from A through B to C, using private key on B

Schematic: ssh ssh A ------> B ------> C ^ ^ using A's using B's ssh key ssh key Preconditions: A is running ssh-agent A can access B B can access C A can't ...
J.Nexus's user avatar
  • 11
0 votes
0 answers
17 views

How do i set up MacOS Screen Sharing only through SSH?

I am physically in another country, and I want to set up Screen Sharing on my MacBook Pro running 10.15. The problem is that I didn't even think of setting up Screen Sharing before I travelled, ...
py660's user avatar
  • 1
1 vote
0 answers
19 views

Hotspot connection SSH / Ping

I have a singleboard computer (Rock 4 SE) with a wifi that is hotspot capable. It is running linux Debian. I want to SSH into it with my laptop using the linux machines own wifi as a hotspot for ...
Gergely Lévai's user avatar
0 votes
2 answers
90 views

Screen capture in Windows is all black

I'm trying get screen capture through a SSH connection. In this SSH connection, I'm using the normal user. (in my case its PC) I found that after executing this command: screenshot-cmd -o test.jpg ...
RoseTeq's user avatar
0 votes
0 answers
28 views

Getting Remote side sent SSH2_MSG_EXT_INFO after USERAUTH_SUCCESS on mobaxterm

I am getting Remote side sent SSH2_MSG_EXT_INFO after USERAUTH_SUCCESS on mobaxterm after some times, I tried to google up but couldn't find solution. This one say to adjust the PuTTY's Connection/SSH/...
Will Khoo's user avatar
1 vote
2 answers
26 views

How to find the ssh connection behind a reverse tunnel from the server side?

I use the the ssh -R command to create a ssh reverse tunnel in the client side: ssh -fNR 3389:127.0.0.1:3389 user@remotehost In the client side, I can use the ps and netstat commands to find the ssh ...
wangwei's user avatar
  • 11