0

We can establish connection between Unix based machines using these commands -

ssh
telnet

but how to establish a connection between a Linux and Windows? Putty, WinSCP etc are used in Windows to connect to Linux. But how do I connect to windows from Linux?(or is it even possible?)

hari
  • 101
  • 1

3 Answers3

2

You can connect to a windows host in the same way you would connect to a linux host. You just have to set up an ssh or telnet server on the windows machine.

Sylence
  • 121
  • 2
2

you can use the "rdesktop" command to connect to a windows machine...

krisdigitx
  • 609
  • 3
  • 18
  • 30
1

It depends what you want to do.

NT Server edition comes with a telnet daemon - but telnet is far from secure. You can run an ssh server on MSWindows - but you still only get access to the NT command prompt - which is very limited.

If you want to access a MSWindows machine from Linux, then you probably want to use a remote frame buffer solution like vnc, NoMachine, Citrix or just use the built-in remote desktop server in MSWindows with xrdp

symcbean
  • 19,931
  • 1
  • 29
  • 49