Forum Discussion
Altera_Forum
Honored Contributor
15 years agoftp settings in uClinux
Thanks in advance. I have a compact flash on the Cyclone III development board and I'd like to be able to ftp files on my compact flash to a Windows machine. How do I allow access to the ...
Altera_Forum
Honored Contributor
15 years agoHi,
just to make sure, you want to copy files from your compact flash to a another pc? Then you will need to setup a ftp server (daemon) on the board. Did you already implemented the MTD Device and installed a Flash File System, i.e. JFFS2? If so you just need to mount the filesystem i.e. in /mnt/cf and then make a ftp connection on the board to your pc and then send your files from /mnt/cf/ to the directory on pc. Urmel- Msg064842 years ago
New Contributor
Hi,
I got the iniche to work with the ucossi.
I am trying to start the FTP server.
I get strange answers such as
PS C:\Users\123> ftp 192.168.xxx.xxx
Connected to 192.168.xxx.xxx.
220 Service ready
500 Unsupported command
User (192.168.xxx.xxx:(none)): guest
Connection closed by remote host.
PS C:\Users\123> ftp 192.168.xxx.xxx
Connected to 192.168.xxx.xxx.
220 Service ready
500 Unsupported command
User (192.168.xxx.xxx:(none)): anonymous
Connection closed by remote host
I am not sure why it is doing that.
I do not have any sample code to get this to work.
Essentially I figured out how to get the FTP_SERVER preprocessor define into the bsp, then added a call to ftps_init();
There may be more I need to do.
Any suggestions would help thanks.
Martin