Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrenth/routemachine
Erlang BGP daemon.
https://github.com/andrenth/routemachine
Last synced: about 1 month ago
JSON representation
Erlang BGP daemon.
- Host: GitHub
- URL: https://github.com/andrenth/routemachine
- Owner: andrenth
- Created: 2010-09-06T13:38:29.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-11-17T13:19:47.000Z (about 14 years ago)
- Last Synced: 2023-04-12T07:00:03.429Z (over 1 year ago)
- Language: Erlang
- Homepage:
- Size: 254 KB
- Stars: 13
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.