Forwarding ftp port
Posted: 15. Dec 2009, 21:54
Hello,
I have installed ubuntu server in virtualbox on my windows 7 machine. I am using this code to be able to access ubuntu server from windows 7 browser
But I want to forward ftp port too. I have installed vsftpd and tried this code
But is doesnt work. Can any body help because everytime I save file using sftp of ssh it gives me a certificate error and no way to trust the certificate in my ide.
Thank You.
I have installed ubuntu server in virtualbox on my windows 7 machine. I am using this code to be able to access ubuntu server from windows 7 browser
Code: Select all
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/apache/GuestPort" value="80"/>
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/apache/HostPort" value="8888"/>
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/apache/Protocol" value="TCP"/>
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/GuestPort" value="22"/>
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/HostPort" value="2222"/>
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/Protocol" value="TCP"/>Code: Select all
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/ftp/GuestPort" value="20"/>
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/ftp/HostPort" value="2020"/>
<ExtraDataItem name="VBoxInternal/Devices/pcnet/0/LUN#0/Config/ftp/Protocol" value="TCP"/>Thank You.