summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospf6d/printconf.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allow the interface setting "type p2p" to be configured globallz or perremi2020-01-211-2/+2
| | | | | | area. Most of the other interface settings allow this. ok denis@
* Add point-to-point support for broadcast interfaces.remi2019-12-261-1/+4
| | | | | tested by Kapetanakis Giannis ok denis@
* Add config option fib-priority to set a custom prio for routes ospf6dremi2018-12-291-1/+3
| | | | | | inserts into the kernel routing table. OK denis@
* Add support for rdomains.remi2018-07-121-1/+4
| | | | | small quirk from tb@ ok phessler@
* With the "depend on" option routes are sent out with a metric of 65535 ifremi2018-07-121-2/+7
| | | | | | | the referenced interface is down or in state backup. This is especially useful on a carp cluster to ensure all traffic goes to the carp master. ok friehm@ jca@
* Print metric and type for "redistribute" in ospf6d -v.jca2016-12-241-6/+9
| | | | Similar diff as for ospfd, from Remi Locherer. ok stsp@
* Redistributing the default route with ospf6d did not work correctly.bluhm2010-08-221-4/+4
| | | | | | | | | - kroute.c may not ignore the default route. - Use the ROUNDUP macro from route/show.c as this one is also correct for netmask with prefixlen 0. - Implement ospf_redistribute and the redistribute parser like ospfd. ok claudio@
* Monster commit of stuff I did mostly last month. What it does:claudio2007-12-131-2/+2
| | | | | | | | | | | * removes kif and uses iface for everything interface related. This removes unneeded data redundancy which makes the code more complex. * adds the link local prefix to struct iface and attaches a list with the other prefixes to the struct iface. This is needed to generate the link LSA. * disconnects struct iface from struct area (the backpointer is gone) this will make the reload code a bit easier. norby@ agrees with the direction we're heading with this
* First step at making kroute IPv6 aware. This resulted in many additionalclaudio2007-10-161-3/+4
| | | | | | | changes -- some are so hairy that I left them out for later by commenting out larger blocks of code (just grep for XXX if you like to help). Get it in early so that we can work on. OK norby@
* Welcome ospf6dnorby2007-10-081-0/+147
The new ospf6d daemon will support OSPFv3, basically OSPF for IPv6 networks. It is heavily based on ospfd(8), it is more or less a copy and paste of it. Currently some unneeded stuff has been removed and the trasition from IPv4 to IPv6 has begun. ospf6d is not very usefull at the moment, it is being imported to allow more people to work on it concurrently. Not yet connected to the builds. ok claudio@ dlg@