You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
i2p-zero/README.md

262 lines
11 KiB

<img src="https://github.com/i2p-zero/i2p-zero/blob/master/i2p-zero.png" align="left" width="336" height="124">
5 years ago
## Zero dependency, small footprint, cross-platform I2P Java Router with GUI, simple tunnel/socks controller and SAM interface
##
5 years ago
Note that I2P-zero is not a re-implementation of I2P. It uses the exact I2P source code from the official I2P GitHub repository.
5 years ago
I2P-zero is a build script that produces a zero-dependency installation of the official I2P release, and includes a simplified front end interface.
This project will run under Linux, and build native launchers for Linux, MacOS and Windows.
The launchers will include the I2P router, a SAM listener, simple tunnel and socks tunnel functionality and a minimal JVM.
5 years ago
## Downloads
Download the latest binary releases for Mac/Windows/Linux here: https://github.com/i2p-zero/i2p-zero/releases
## GUI Screenshots
<img src="https://github.com/i2p-zero/i2p-zero/blob/master/screenshot1.png" align="center" width="472" height="440">
<br/>
<img src="https://github.com/i2p-zero/i2p-zero/blob/master/screenshot2.png" align="center" width="892" height="549">
<br/>
<img src="https://github.com/i2p-zero/i2p-zero/blob/master/screenshot3.png" align="center" width="880" height="540">
5 years ago
## Footprint
The zero-dependency distribution sizes are as follows:
OS | Uncompressed size (MB) | Compressed size (MB) | v1.20 Reproducible build SHA-256
------------ | ----------------------- | --------------------- | ------------------------------------------------------------------
Mac | 38.5 | 26.5 | `9d35c9d31e7c8c820736f7437e02d928f325f4197cf19c7720196c1e586ce1a1`
Windows | 47.8 | 32.4 | `37c38e66a1f4935a21c2514eb4692827834ec8bd9c2dfc11d6871f7a07dbdd16`
Linux | 61.3 | 36.6 | `7e7216b281624ec464b55217284017576d109eaba7b35f7e4994ae2a78634de7`
Mac GUI | 61.2 | 45.9 | `9278fce1196555fd9823d74b716cb0370bac26b964a50b4e9a11eae0f2107eb4`
Windows GUI | 70.3 | 50.7 | `20723da50684c6a6581b36f8c7a90e9d63baf0e4848e0b781a343ad1791ab2a0`
Linux GUI | 87.4 | 56.9 | `1852ecf426d87c6931b163964fa55ddc09da60ede217da1f033a6f78acce2ad1`
Note: Reproducible builds are currently experimental. Due to JDK differences, Builds on Mac will consistently have different hashes than builds on Linux. Official releases will always be built using Docker.
5 years ago
5 years ago
## Building the launchers
5 years ago
5 years ago
All binary releases for Windows, Mac and Linux can be built from either Linux or Mac.
Use the Docker build method for reproducible builds.
### To build using Docker on Mac:
First install docker from https://hub.docker.com/editions/community/docker-ce-desktop-mac
````
containerId=$(docker run -td --rm ubuntu)
docker exec -ti $containerId bash -c '\
apt-get update \
&& apt-get -y install git wget zip unzip \
&& git clone https://github.com/i2p-zero/i2p-zero.git --depth 1 \
&& cd i2p-zero && bash bin/build-all-and-zip.sh'
docker cp $containerId:/i2p-zero/dist-zip ./
docker container stop $containerId
````
### To build using Docker on Ubuntu:
````
sudo apt -y install docker docker.io
systemctl start docker
containerId=$(sudo docker run -td --rm ubuntu)
sudo docker exec -ti $containerId bash -c '\
apt-get update \
&& apt-get -y install git wget zip unzip \
&& git clone https://github.com/i2p-zero/i2p-zero.git --depth 1 \
&& cd i2p-zero && bash bin/build-all-and-zip.sh'
sudo docker cp $containerId:/i2p-zero/dist-zip ./
sudo docker container stop $containerId
````
This will result in a dist-zip directory being copied into the current directory. The dist-zip directory will contain the builds for all platforms.
### To build without Docker on Ubuntu:
To build without Docker on a freshly installed Ubuntu system, first ensure git is installed:
5 years ago
`sudo apt install git`
Then, retrieve this project from git:
`git clone https://github.com/i2p-zero/i2p-zero.git`
5 years ago
Also note that JDKs for Linux, MacOS and Windows will be downloaded, which will total several hundred megabytes. You may need to ensure your system has zip, unzip and bzip2 installed to run the build script.
5 years ago
5 years ago
Run the `bin/build-all-and-zip.sh` script, which will in turn call the following scripts:
5 years ago
1. `bin/import-packages.sh` to retrieve the I2P Java sources, OpenJDK and the Ant build tool
5 years ago
5 years ago
2. `bin/build-original-i2p.sh` to build the I2P project retrieved from the I2P repository
5 years ago
5 years ago
3. `bin/build-launcher.sh` to convert the I2P JARs to modules, compile the Java source code in this project, and then use
5 years ago
the jlink tool to build zero-dependency platform-specific launchers.
5 years ago
5 years ago
4. `bin/zip-all.sh` to produce the distribution zip files and display their SHA-256 hashes. Note that reproducible builds are currently a work in progress, and that only builds on Linux will show the same hashes as the official releases.
5 years ago
## Running the GUI
To run the Linux router, double-click the app located at `dist/linux-gui/router/bin/i2p-zero`
5 years ago
To run the MacOS router, double-click the app located at `dist/mac-gui/router/i2p-zero.app`
For Windows, double-click the app located at `dist/win-gui/router/i2p-zero.exe`
5 years ago
## Running the command line version
5 years ago
5 years ago
To run the Linux router, type:
5 years ago
`dist/linux/router/bin/i2p-zero`
5 years ago
5 years ago
To run the MacOS router, type:
`dist/mac/router/bin/launch.sh`
For Windows, run: (note that the Windows build will run in the background and not show a success message)
5 years ago
`dist/win/router/i2p-zero.exe`
5 years ago
5 years ago
If it launches successfully, you'll see the message:
5 years ago
5 years ago
```
5 years ago
I2P router launched.
5 years ago
Press Ctrl-C to gracefully shut down the router (or send the SIGINT signal to the process).
```
5 years ago
## Tunnel control
5 years ago
Note that it may take a short while for new tunnels to be set up.
Call the `dist/linux/router/bin/tunnel-control.sh` script as follows to create and destroy tunnels:
#### Get the router reachability status. Returns a string such as "Testing", "Firewalled", "Running", "Error"
`tunnel-control.sh router.reachability`
5 years ago
#### Find out if the router is running (where "running" means it has warmed up and is allowing I2P connections to be created). Returns "true" or "false"
`tunnel-control.sh router.isRunning`
#### Listen for I2P connections and forward them to the specified host and port. Returns the I2P base 32 destination address for the server tunnel created.
Optionally, specify a directory for storing/reading the server key file.
If the directory doesn't exist with a file named *.b32.i2p.keys in it,
returns a newly created destination address and writes the secret key for the
new address to a file called <I2P dest addr>.keys in the specified directory. Otherwise, read the existing
secret key from that directory. The server tunnel will listen for I2P connections and forward them to the
specified host and port. Note that the base 32 I2P destination address deterministically depends on the contents of the .keys file).
`tunnel-control.sh server.create <host> <port> <(optional) directory>`
or, if you would like a vanity b32 address for your server tunnel that begins with a 3 character (alphanumeric) prefix, type:
`tunnel-control.sh server.create.vanity <host> <port> <directory> <prefix>`
If you do not want to specify the directory parameter above, specify `none` as the directory. Note that this command may take several minutes to complete.
#### Check the state of a tunnel. Returns "opening" or "open"
`tunnel-control.sh server.state <base 32 I2P address>`
`tunnel-control.sh client.state <local port>`
`tunnel-control.sh http.state <local port>`
`tunnel-control.sh socks.state <local port>`
#### Close the tunnel listening for connections on the specified I2P destination address. Returns "OK".
`tunnel-control.sh server.destroy <base 32 I2P address>`
#### Create a tunnel that listens for connections on localhost on the specified port and forwards connections over I2P to the specified destination public key.
`tunnel-control.sh client.create <I2P destination> <local port>`
#### Close the tunnel listening for connections on the specified port. Returns "OK".
`tunnel-control.sh client.destroy <local port>`
#### Create an http proxy (for accessing .i2p web sites), listening on the specified port
`tunnel-control.sh http.create <local port>`
#### Destroy the http proxy listening on the specified port
`tunnel-control.sh http.destroy <local port>`
#### Create a socks tunnel, listening on the specified port
`tunnel-control.sh socks.create <local port>`
#### Destroy the socks tunnel listening on the specified port
`tunnel-control.sh socks.destroy <local port>`
#### Destroy all tunnels. Returns "OK"
`tunnel-control.sh all.destroy`
#### List all tunnels. Returns JSON string containing information about all tunnels currently in existence
`tunnel-control.sh all.list`
#### Start a SAM listener on port 7656. Returns "OK"
`tunnel-control.sh sam.create`
#### Get the external port randomly assigned to this router when first run, which the firewall should allow incoming UDP and TCP connections on. Returns the port number.
`tunnel-control.sh router.externalPort`
#### Set the bandwidth limit, measured in KBps. Returns "OK".
`tunnel-control.sh router.setBandwidthLimitKBps <KBps>`
#### Get the bandwidth limit, measured in KBps
`tunnel-control.sh router.getBandwidthLimitKBps`
5 years ago
#### Get bandwidth statistics. Returns a comma separated list of statistics
`tunnel-control.sh router.getBandwidthStats`
5 years ago
example response:
5 years ago
`1sRateInKBps=12.34,1sRateOutKBps=12.34,5mRateInKBps=12.34,5mRateOutKBps=12.34,avgRateInKBps=12.34,avgRateOutKBps=12.34,totalInMB=12.34,totalOutMB=12.34`
or, for pleasant viewing on the command line, automatically updating every 2 seconds:
5 years ago
`watch "tunnel-control.sh router.getBandwidthStats | tr ',' '\n' | sort"`
#### Get the I2P-zero version
`tunnel-control.sh version`
example response:
`i2p-zero 1.8`
## Watch the I2P log for messages
`tail -f dist/linux/router/i2p.config/wrapper.log`
## Note on bundled windows launcher.exe executable
There is a bundled `resources/launcher.exe` file in the source tree. This allows the windows distributable to be built
even on a non-windows platform.
#This file can be deterministically recreated by following these steps on a Windows machine:
1. Download AdoptOpenJDK14 from https://github.com/AdoptOpenJDK/openjdk14-binaries/releases/download/jdk14-2020-03-09-04-56/OpenJDK14-jdk_x64_windows_hotspot_2020-03-09-04-56.zip
2. Create a new folder, and place inside the `resources/icons.ico` file and the `router` folder from an I2P-zero for Windows GUI build
3. Run `<path to jdk>\bin\jpackage.exe --type app-image --icon icons.ico --name i2p-zero -m org.getmonero.i2p.zero.gui/org.getmonero.i2p.zero.gui.Gui --runtime-image router\runtime
4. Run `certUtil -hashfile i2p-zero/i2p-zero.exe SHA256` to get the SHA256 hash.
5. This hash should exactly match the SHA256 hash of the `resources/launcher.exe` file, which should be `3d5d00eeff5cb9d63ea415c593d67f201a7d024b6378d22d702b001e6693a93a`