Skip to content

python3f/ftp-socket-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic FTP server implementation using sockets in Python.

server

python server.py
# start server on port 2001, 2000 (data)

python server.py 3001
# start server on port 3001, 3000 (data)

python server.py 3001 3002
# start server on port 3001, 3002 (data)

client

python client.py
# Get index.html from 127.0.0.1:2001

python client.py 127.0.0.1:3001
# Get index.html from 127.0.0.1:3001

python client.py 127.0.0.1:3001/server.py
# Get server.py from 127.0.0.1:3001

About

Basic FTP server implementation using sockets in Python.

Resources

License

Stars

Watchers

Forks