go-proxy

command module
v0.2.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 1, 2017 License: MIT Imports: 0 Imported by: 0

README

groxy

license GoDoc Build Status

A simple proxy implementation for the modern day

groxy strives to achieve the following goals

  • To be not complicated
  • Code is the docuementation
  • Exist as a standalone program and a library for proxy
  • Interface with discovery backend
  • Tunnel your data with TLS connection.
  • Be as lean as possible
Import groxy as library

go get github.com/jeffjen/groxy/proxy

Running groxy as a standalone program
  • Running with static candidates:

    groxy --src :16379 --dst 10.0.3.144:6379
    
  • Running with discovery backend:

    groxy --src :16379 --srv /srv/redis/debug \
        --dsc http://etcd0:2379 \
        --dsc http://etcd1:2379
    
  • Add TLS encryption to your connection

    groxy tls-client --src :16379 --dst 10.0.3.144:6379 \
        --tlscertpath s3://devops.example.org/client-cert
    
    groxy tls-client --src :16379 --dst 10.0.3.144:6379 \
        --tlscertpath /path/to/client-cert
    
  • Setting up TLS proxy server

    groxy tls-server --src :6379 --dst 10.0.3.144:6379 \
        --tlscertpath s3://devops.example.org/server-cert
    
    groxy tls-server --src :6379 --dst 10.0.3.144:6379 \
        --tlscertpath /path/to/server-cert
    
Behavior

The proxy module does not attempt to perform reconnection to remote endpoint.

The discovery backend chosen is etcd https://github.com/coreos/etcd

Layout for the discovery backend should look like the following:

/srv/redis/debug
/srv/redis/debug/10.0.1.134:6379
/srv/redis/debug/10.0.2.15:6379
/srv/redis/debug/10.0.3.41:6379

When nodes' state in service /srv/redis/debug changes e.g. leaving or joining, the proxy will attempt to obtain a new set of nodes, followed by a reset on established connections.

Proxy behaviors can be divided into two modes: ordered, or round-robin.

In ordered mode:

  • the first remote host is attempted
  • then second
  • until all were tried, the proxy declare connection failed.

In round-robin node

  • connections are spread among available candidates.
  • no ordered retry
Documentaion

GoDoc available: https://godoc.org/github.com/poddworks/groxy

Documentation

Overview

Transport level proxy for the mondern day.

The root package is provided as a standalone proxy app for verifying implementation detail.

NAME:
   groxy - The TCP proxy with discovery service support

USAGE:
   groxy [global options] command [command options] [arguments...]

VERSION:
   0.2.6

AUTHOR:
   Yi-Hung Jen <yihungjen@gmail.com>

COMMANDS:
     tls-client  Setup client encrypt mode
     tls-server  Setup server encrypt mode
     help, h     Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --net value       Network type (default: "tcp4")
   --src value       Origin address to listen
   --dst value       Target to proxy to
   --dsc value       Discovery service endpoint
   --srv value       Service identity in discovery
   --lb              Weather we do load balance
   --loglevel value  Set debug level (default: "INFO") [$LOG_LEVEL]
   --help, -h        show help
   --version, -v     print the version

Running with static candidates:

groxy --src :16379 --dst 10.0.3.144:6379

Running with static candidates and round robin balance:

groxy --src :16379 --lb \
	--dst 10.0.0.12:6379 --dst 10.0.1.123:6379

Running with discovery backend:

groxy --dsc http://etcd0:2379 --dsc http://etcd1:2379 \
    --src :16379 \
    --srv /srv/redis/debug

Running in cluster mode:

groxy --src :16379 --src :16378 \
	--dst 10.0.0.12:6379 --dst 10.0.1.123:6379

Add TLS encryption to your connection

groxy tls-client --src :16379 --dst 10.0.3.144:6379 \
    --tlscertpath s3://devops.example.org/client-cert

groxy tls-client --src :16379 --dst 10.0.3.144:6379 \
    --tlscertpath /path/to/client-cert

Setting up TLS proxy server

groxy tls-server --src :6379 --dst 10.0.3.144:6379 \
    --tlscertpath s3://devops.example.org/server-cert

groxy tls-server --src :6379 --dst 10.0.3.144:6379 \
    --tlscertpath /path/to/server-cert

Directories

Path Synopsis
Package proxy provides an intuitive transport level proxy.
Package proxy provides an intuitive transport level proxy.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL