# Server Simple server works and can give us a bash session # Remote forward ```bash # Server python -m http.server 8001 ./termshare # Attempt to bind to localhost 8000 granted # Client ssh -R 8000:localhost:8001 root@127.0.0.1 -p 2222 curl 127.0.0.1:8000 # See the python listing # Build go build ``` # Todo: - Build a very small client that can connect to the host # Fixed: - Importing the function from the internal library is not working * exported names need to start with a Captial - How to pass arguments to command function?