Trying to run the client for a week. still not loading blocks....wtf. any ideas how to load blocks and run the client???
Edit: I have NFD blocks loaded on my DO server and now trying to tunnel ssh to access client locally. Anyone know the command to do this? I tried below combinations but getting "could not resolve"error".
ssh –L8874:localhost:8876
user@x.x.x.xssh –L18876:localhost:8876
user@x.x.x.xuse 127.0.0.1 instead of localhost
I use following script:
#!/bin/sh
# -R remote port:remote server:local port forwarden
# -L local port:local server:remote port forwarden
while [ true ]; do
ssh 85.214.148.130 -L 8876:127.0.0.1:8876 vmstat 10
sleep 1
done
"vmstat 10" is a command to display every 10 seconds some statistics. I use it to keep ssh connection alive. If connection get closed, because of provider ip change, the script will reconnect.
You have to setup public key authorization for this to work.