diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-09-29 12:00:43 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-09-29 12:00:43 +0200 |
commit | 7db7b9fa379f88cd4d562dabf88102e070c8e2be (patch) | |
tree | 1f451cfe26971752871d9e351f5184b03563326f /README.md | |
download | fldigi-kissattach-7db7b9fa379f88cd4d562dabf88102e070c8e2be.tar.gz fldigi-kissattach-7db7b9fa379f88cd4d562dabf88102e070c8e2be.tar.bz2 fldigi-kissattach-7db7b9fa379f88cd4d562dabf88102e070c8e2be.zip |
Commit initial version
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..59064e6 --- /dev/null +++ b/README.md @@ -0,0 +1,37 @@ +fldigi-kissattach +================= + +Readme +------ + +fldigi-kissattach connects to the TCP KISS server of fldigi and patches that up +with the kernel in the same way kissattach connects a serial KISS TNC to the +kernel. + +This allows you to run TCP/IP over AX.25 over any modem fldigi supports. + +Compilation +----------- + +This tool is written in Rust and needs a Rust compiler and the cargo package manager. +Please go to http://rustup.rs to install this. + +Then execute `cargo build` inside the folder where this README resides. The output binary +will be written to `./target/debug/fldigi-kissattach`. + +Usage +----- + +fldigi-kissattach expects three arguments: callsign with SSID, ip:port to connect to fldigi, and mtu. You +will need to run this as root, best with sudo + +Example: `sudo ./target/debug/fldigi-kissattach HB9EGM-1 127.0.0.1:7342 120` + +I am unsure if having a corresponding entry in `/etc/ax25/axports` is required. + +License +------- + +Parts of this code are taken from the ax25-tools, which are GPL-2.0. Other parts are MIT or Apache 2.0 licensed. + +New code is Copyright 2018 Matthias P. Braendli, GPL-2.0-only |