Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andrenth/routemachine

Erlang BGP daemon.
https://github.com/andrenth/routemachine

Last synced: about 1 month ago
JSON representation

Erlang BGP daemon.

Awesome Lists containing this project

README

        

RouteMachine
============

Intro
-----

This is still a very incomplete BGP daemon. It's being tested only against
Quagga so far. If you want to give it a try, do the following:

$ git clone git://github.com/andrenth/routemachine.git
$ cd routemachine
$ vim routemachine.conf
$ rebar compile
# chown root priv/rtm
# chmod u+s priv/rtm
$ cd ..
$ sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 179 \
-j REDIRECT --to-port 1179
$ erl -pa routemachine/ebin -boot start_sasl \
-eval 'application:start(routemachine).'

Debug messages should start showing up in the Erlang shell.

When you finish, be sure to run

application:stop(routemachine).

in the Erlang shell to ensure the routes added by RouteMachine are removed.