Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 788 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 788 Bytes

DNS PROXY FACTORY

The proxy factory creates an updateable DNS proxy that allows for rewriting DNS entries to different IP's at runtime by calling a restful service.

USAGE

The proxy factory is setup in a multi-module approach. The project is contains the following modules:

  • Client (Rest client that can be used to call the restful service)
  • Domain (domain objects that are use by the client and the server)
  • Factory (Web module that serves the restful service)
  • Server (Proxy server)

To start the factory do the following:

  • mvn clean install (build the modules)
  • cd factory
  • mvn jetty:run (start the service)

CODE

The server is based on the opensource project jhttpp2.sourceforge.net