summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospfctl (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* use Forwarding Information Base vs. Forward Information Base;stevesk2006-08-281-5/+5
| | | | ok jmc@ claudio@
* Add a comment about the empty imsg_event_add() function to make it clearclaudio2006-08-231-1/+3
| | | | why it is needed.
* -Wmissing-declarations -Wredundant-decls are not very useful and especiallyclaudio2006-08-171-2/+1
| | | | | -Wredundant-decls causes many false warnings because of redeclarations in header files. Remove them, requested by deraadt@
* amazing how far a typo of mine (CFLAGS vs CLFAGS) from early 2004 spreadhenning2006-07-251-2/+2
| | | | | (and how long it went unnoticed) From: Alexey Dobriyan <adobriyan@gmail.com>
* Track the uptime of the ospfd daemon itself.norby2006-06-281-1/+3
| | | | | | | It is possible to read the uptime of the daemon with the "ospfctl show" command. ok claudio@
* Add IFT_PPP to the iftype to ifmedia type conversion function. Now P2P linksclaudio2006-04-211-8/+5
| | | | | will show the correct link state. While there do some cleanup and shorten the output if the media or link state is unknown.
* Show the neighbor uptime in "show nei detail".norby2006-03-261-1/+2
| | | | ok claudio@
* Show the link status of interfaces for real, I guess most users don't knownorby2006-03-261-24/+31
| | | | | | what it means that an interface is in state 2. ok claudio@
* typo;jmc2006-03-241-2/+2
|
* Document fib couple and decouple. Mostly form bgpctl.8 but with a warningclaudio2006-03-241-1/+10
| | | | that fib decouple my break you network. OK norby@
* List interfaces they way we list neighbors etc.norby2006-03-233-6/+70
| | | | | | | | This makes it much easier to grep in the output. The original format of "show interface" can be seen with "show interface detail". help and ok claudio@
* ospfd has the framework to couple and decouple the FIB. Add the neededclaudio2006-03-223-3/+30
| | | | | | | functionality to ospfctl for it. NOTE: decoupling the FIB one a router may totaly fuck up the complete network. Use it with care! OK norby@
* Track interface uptime.norby2006-03-091-1/+3
| | | | ok claudio@
* Start using *_name function that are now shared between ospfd and ospfctl.claudio2006-03-091-82/+10
| | | | OK norby@
* Last kroute.c commit changed the meaning of the flags so check them correctly.claudio2006-03-081-2/+2
| | | | OK norby@
* Keep track of the uptime of the entries in the RIB.norby2006-02-241-5/+6
| | | | | | | It is now possible to see the uptime of the individual entries in the RIB. The uptime can be displayed with "ospfctl show rib" ok claudio@
* Keep track of the duration of our relationships with neighbors.norby2006-02-191-17/+18
| | | | | | Displayed in "ospfctl show neighbor". ok claudio@
* imsg API changed so adapt to it.claudio2006-02-101-18/+18
|
* indicate passive interface in 'show interface'; ok claudio@stevesk2005-10-271-2/+4
|
* 0) ospfctl doesn't use ospfd.conf so remove that from FILESstevesk2005-10-251-5/+6
| | | | | | | 1) add /var/run/ospfd.sock to ospfd and ospfctl FILES 2) add .Xr ospfd.conf 5 to ospfctl SEE ALSO ok claudio@ jmc@
* use err() vs. fatal(); ok claudio@stevesk2005-10-231-3/+2
|
* space between macro args and punctuation;jmc2005-10-191-2/+2
|
* 1) indicate optional argsstevesk2005-10-181-15/+28
| | | | | | | 2) add missing args 3) reword some areas ok claudio@ jmc@
* initial documentation of 'show fib'; ok claudio@ jmc@stevesk2005-10-171-2/+19
|
* remove duplicate function declaration; ok claudio@stevesk2005-10-161-2/+1
|
* missing break caused erroneous auth-type crypt enabled in 'sh int'stevesk2005-10-161-1/+3
| | | | when simple enabled; ok claudio@
* - add auth_type and auth_keyid to struct ctl_ifacemsf2005-09-241-1/+15
| | | | | | - have ospfctl tell us when we are using authentication with 'show interface' ok claudio@ norby@
* use prefixlen2mask which handles zero prefixlens righthenning2005-06-161-2/+12
|
* Small formatting bits in show neighbor detail.norby2005-05-271-5/+4
| | | | ok claudio@
* Fix multi area display bug.norby2005-05-261-1/+2
| | | | ok claudio@
* Add missing bits to ospfctl show rib detail.norby2005-05-221-9/+41
| | | | ok claudio@
* tweaks;jmc2005-05-121-5/+5
|
* Reflect reality.norby2005-05-121-2/+2
|
* Add "show database asbr/external/network/router/self-originate/summary"norby2005-05-124-17/+299
| | | | | | | | to ospfctl. Show detailed information about the LSAs in the Link State Database. ok claudio@
* Fix a display bug in 'show database', when ospfd is member of morenorby2005-05-061-1/+2
| | | | | | | | than one area. Input from claudio. ok claudio@
* Document the fact that ospfctl(8) understands "show rib".norby2005-04-191-1/+3
| | | | ok claudio@
* Static routes are flagged with F_STATIC and not with F_KERNEL.claudio2005-04-161-2/+2
|
* The RFC never mentions anything about transfer, this should be transmit.norby2005-03-291-2/+2
| | | | | | From Jason Ackley (thanks). ok claudio@
* ospfctl bits for the "ospfctl show fib interface" part. This will printclaudio2005-03-262-6/+10
| | | | | the interface status as seen from the parent kroute perspective. OK henning@ norby@
* Sync mask2prefixlen() with the kroute.c version of ospfd because they shareclaudio2005-03-231-6/+6
| | | | | the same prototype definition comming from ospfd.h. OK norby@
* bgpctl parts for "show fib".claudio2005-03-153-3/+217
| | | | OK norby@ deraadt@
* Add "show summary" to ospfctl.norby2005-03-144-15/+53
| | | | ok claudio@ henning@
* Add "show rib" and "show rib detail" to ospfctl.norby2005-03-123-4/+175
| | | | ok henning@
* Small K&F.norby2005-03-121-5/+5
| | | | ok henning@
* KNFhenning2005-02-022-8/+8
|
* usage() is __deadhenning2005-02-021-3/+3
| | | | pt out by Alexander v Gernler
* tweaks;jmc2005-01-281-2/+2
|
* Change my email address to the OpenBSD one since Ericsson has nothing tonorby2005-01-284-8/+8
| | | | | do with this software, just happend to be my only valid email address at the time.
* Control program like bgpctl but this time for ospfd.claudio2005-01-285-0/+956
Currently only basic show commands work. Not yet connected to the builds. OK henning@