virtualbox get access winscp access from host (vista) to guest (ubuntu) [closed] - virtual-machine

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
what worked fine is
http://kdl.nobugware.com/post/2009/02/17/virtualbox-nat-ssh-guest/
so that i can connect to guest system using ssh with putty
but winscp does not work? what i still have to install? ssh was installed on ubuntu apt-get, but what else... does winscp from vista need more ports? and if how to manage this?!

just use 127.0.0.1 instead of localhost on the session in winscp , different than putty but it works, why? I dont know :P ...

Related

How to connect to ubuntu over ssh from mac? [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 days ago.
Improve this question
Currently, have ssh client/server installed on both devices. How would I sign in from my mac terminal to access my ubuntu PC over ssh?
ssh <hostname-or-ip-of-ubuntu-PC>

Cannot ssh and ping into my CentOS VirtualBox [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I donwloaded the virtualbox image from this website:
https://www.osboxes.org/centos/#centos-782003-info
I uses CentOS 7.8.2003
I am able to start the VirtualBox but I cannot ssh into it. Then, I realized that I also cannot ping to the IP address. I already configure the network to Bridge.
Do I need to configure something on CentOS Virtual Box for me to be able to ssh into it from the Host machine? Thank you very much in advance.
You should probably post this on Superuser or Serverfault.
Anyway, I see you have 192.168.0.30 on your host machine, try configuring 192.168.0.31 on interface enp0s3 on your VM and restart the network.
You should be able to ping now.

How to make local home network on Ubuntu [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
so I wanna be able to access my files on my Ubuntu 18.04 LTS machine from my other windows machine by typing its local IP address like this image
but I don't know how to setup apache to display the folders I want, all I'm getting when I type my IP address in the other machine is the apache Ubuntu default page, so how can I make this.
thanks in advance.
To access file system on remote server you can use SFTP to transfer file between systems.
Download Winscp : https://winscp.net/eng/download.php
Type your local ip address including username and password into setup then you can access your remote folders.

problem when copying a file over putty ssh to my windows machine [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
i want to copy file from remote server that i connect with the following paramters
Ip : 192.168.1.1
port : 2202
then i log in with user and password :
user:root
pass:1234
but when i try to use this script it shows that connection is refused
pscp 192.168.1.1:/etc/hosts c:\temp\example-hosts.txt
is that correct or i should put the user and password somewhere to authenticate and be able to copy the files
You need to specify the port as it's not the standard port.
Try
pscp -P 2202 192.168.1.1:/etc/hosts c:\temp\example-hosts.txt

Reverse tunneling [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
i want to visit my xampp localhost from my server ip. my broadband internet provider does not allow me to forward any port so i need to do reverse tunneling. so if some one visit 216.158.xxx.xxx:27272 (my vps ip is 216.158.xxx.xxx) he/she will see my pc contents of 127.0.0.1:27272
i m using putty on my pc and centos 7 on my vps server.
i try to configure putty by going to ssh tunnel
source:27272
destination: 127.0.0.1:27272
its not working
i have set GatewayPorts yes on my vps
EDIT: I have fixed this problem
You have to open the port 27272 on your VPS. If it has a static IP-address configuring the firewall might be enough. This gives everybody public access.