version + readme

This commit is contained in:
martin61
2016-03-05 18:45:46 +01:00
parent f3dfe04a51
commit aadf07d8c8
3 changed files with 8 additions and 4 deletions

View File

@@ -21,13 +21,13 @@ bin/i2p-tools -h
GOPATH=$HOME/go; cd $GOPATH; bin/i2p-tools reseed --signer=you@mail.i2p --netdb=/home/i2p/.i2p/netDb --port=8443 --ip=127.0.0.1 --trustProxy GOPATH=$HOME/go; cd $GOPATH; bin/i2p-tools reseed --signer=you@mail.i2p --netdb=/home/i2p/.i2p/netDb --port=8443 --ip=127.0.0.1 --trustProxy
``` ```
### Without webserver, standalone with tls support ### Without webserver, standalone with TLS support
``` ```
GOPATH=$HOME/go; cd $GOPATH; bin/i2p-tools reseed --signer=you@mail.i2p --netdb=/home/i2p/.i2p/netDb --tlsHost=your-domain.tld GOPATH=$HOME/go; cd $GOPATH; bin/i2p-tools reseed --signer=you@mail.i2p --netdb=/home/i2p/.i2p/netDb --tlsHost=your-domain.tld
``` ```
If this is your first time running a reseed server (ie. you don't have any existing keys), you can simply run the command and follow the prompts to create the appropriate keys and certificates. If this is your first time running a reseed server (ie. you don't have any existing keys), you can simply run the command and follow the prompts to create the appropriate keys and certificates.
Afterwards an HTTPS reseed server will start on the default port and generate 4 files in your current directory (a TLS key and certificate, and a signing key and certificate). Afterwards an HTTPS reseed server will start on the default port and generate 6 files in your current directory (a TLS key, certificate and crl, and a signing key, certificate and crl).
Get a the source code and a pre-build binary anonymously on http://reseed.i2p/ - also short guide and complete tech info. Get a the source code and a pre-build binary anonymously on http://reseed.i2p/ - also a short guide and complete tech info.

View File

@@ -1,3 +1,7 @@
2013-03-05
* app.Version = "0.1.3"
* CRL creation added
2016-01-31 2016-01-31
* allowed TLS ciphers updated (hardened) * allowed TLS ciphers updated (hardened)
* TLS certificate generation: RSA 4096 --> ECDSAWithSHA512 384bit secp384r1 * TLS certificate generation: RSA 4096 --> ECDSAWithSHA512 384bit secp384r1

View File

@@ -14,7 +14,7 @@ func main() {
app := cli.NewApp() app := cli.NewApp()
app.Name = "i2p-tools" app.Name = "i2p-tools"
app.Version = "0.1.2" app.Version = "0.1.3"
app.Usage = "I2P tools and reseed server" app.Usage = "I2P tools and reseed server"
app.Author = "martin61" app.Author = "martin61"
app.Email = "noemail" app.Email = "noemail"