package mirage-nat

  1. Overview
  2. Docs
Mirage-nat is a library for network address translation to be used with MirageOS

Install

Dune Dependency

Authors

Maintainers

Sources

mirage-nat-v2.2.3.tbz
sha256=aa0eb326df497b5453fab80a2fffc0ab6627f30add7c034375284282822cc933
sha512=a98cb784299645ce0f3e0c81a349f5fec621819e3324c4dab48207bebfdf1d1f8388bd52249643b0a49eeb1d83cad5a79590d489ea8d5883e41402afef60b386

CHANGES.md.html

v2.2.3 (2020-11-30)

  • example: adapt to mirage 3.8 changes (#43 @hannesm)

  • tests: depend on tcpip.unix for tcpip 6.0.0 compatibility (#44 @hannesm)

v2.2.2 (2020-06-18)

  • Avoid stack overflow in remove_connections (#42 by @linse @hannesm, reported by @talex5 in mirage/qubes-mirage-firewall#105)

  • Compatibilty with ipaddr 5.0.0 (#41 by @hannesm)

v2.2.1 (2020-05-15)

  • Also report freed ICMP ports in remove_connections (#40 by @linse @hannesm)

v2.2.0 (2020-05-04)

  • Add remove_connections : t -> Ipaddr.V4.t -> { tcp : int list ; udp : int list } to drop all connections from the NAT table for the given IP address. (#39 by @linse @hannesm)

v2.1.0 (2020-02-18)

  • support tcpip 4.1.0, which Ipv4.Fragments interface changed from LRU.M to LRU.F

  • Mirage_nat_lru uses as well a LRU.F again

  • breaking: Nat_packet.of_ipv4_frame / of_ethernet_frame output a pair of Fragments.t * (t option, error) result

  • all in #37 by @hannesm

v2.0.0 (2019-12-19)

  • support IPv4 fragmentation and reassembly (#36, by @hannesm)

  • remove unused TIME and MCLOCK requirements (#33, by @yomimono)

  • MirageOS 3.7 support (#34, by @hannesm)

1.2.0 (2019-04-15)

  • properly support ICMP error handling, enabling path MTU discovery and traceroute (#26, by @linse and @yomimono)

  • adapt to lru 0.3.0 and use imperative map interface (#29, by @pqwy)

  • update opam files to version 2; remove unused bindings and magic numbers in example unikernels (#25, @hannesm)

1.1.0 (2019-03-17)

  • Depend on (and require) new ethernet and arp packages, and the new tcpip that goes with them. (#24, by @yomimono)

  • Expose and demonstrate a Nat_packet.into_cstruct function which is a nicer fit for the new write API for network functions. (#24, by @yomimono)

  • Port the build system to Dune. (#24, by @yomimono)

1.0.0 (2017-10-05)

  • Initial release.