https://github.com/udhos/nexthop
Dynamic Internet Routing Suite in Go
https://github.com/udhos/nexthop
Last synced: 18 days ago
JSON representation
Dynamic Internet Routing Suite in Go
- Host: GitHub
- URL: https://github.com/udhos/nexthop
- Owner: udhos
- License: mit
- Created: 2014-05-07T21:01:34.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-10-24T21:38:42.000Z (about 7 years ago)
- Last Synced: 2024-11-18T00:13:30.434Z (about 1 year ago)
- Language: Go
- Size: 327 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
nexthop
=======
[](https://goreportcard.com/report/github.com/udhos/nexthop)
[](https://travis-ci.org/udhos/nexthop)
Dynamic Internet Routing Suite in Go
quick start - Linux
===================
1. install Go from https://golang.org/dl/
2. set GOPATH: export GOPATH=$HOME/devel/nexthop
3. enter development dir: cd $HOME/devel
4. get nexthop: git clone https://github.com/udhos/nexthop
5. build: $HOME/devel/nexthop/lin-build.sh
6. run daemons
rib: `sudo $HOME/devel/nexthop/bin/rib`
rip: `sudo $HOME/devel/nexthop/bin/rip`
7. access the daemon CLI with TELNET
rib: `telnet localhost 2001`
rip: `telnet localhost 2002`
quick start - Windows 8
=======================
1. install Go from https://golang.org/dl/
2. set GOPATH: set GOPATH=c:\tmp\devel\nexthop
3. enter development dir: cd c:\tmp\devel
4. get nexthop: git clone https://github.com/udhos/nexthop
5. build: \tmp\devel\nexthop\win-build.cmd
6. run: \tmp\devel\nexthop\win-run.cmd
7. telnet to rib daemon: telnet localhost 2001
==EOF==