summaryrefslogtreecommitdiff
path: root/regress/sbin
AgeCommit message (Collapse)Author
2017-04-14Add tests with the ipsec.conf SA bundle keyword.Alexander Bluhm
2017-03-23Add tests for SA grouped in bundles.Alexander Bluhm
2017-03-23Allow to override location of ipsecctl tool with IPSECCTL environment.Alexander Bluhm
Useful for development testing without make install.
2017-02-28Reflect recent net/route.c change. Adding a conflicting route noMartin Pieuchot
longer increment a 'use' counter.
2016-12-06Update to match recent changes.Martin Pieuchot
IPv6 multicast "All Nodes Address" and "All Routers Address" routes are now attached to the corresponding interface. ok bluhm@
2016-11-23Test that af-to cannot be used together with route-to, reply-to, dup-to.Alexander Bluhm
2016-09-30also copy pf103.include to obj dirOtto Moerbeek
2016-09-04Link isakmpd regress to the build.Alexander Bluhm
OK mpi@
2016-09-04Fix use after freeMike Belopuhov
2016-09-03Some isakmpd tests need generated header files from isakmpd. ChangeAlexander Bluhm
to /usr/src/sbin/isakmpd and make depend before regress. fixed together with mikeb@
2016-09-02Repair remaining isakmpd regress testsMike Belopuhov
2016-09-02Remove the GF(2**n) math test since isakmpd has been switchedMike Belopuhov
to using D-H functions from libcrypto more than 6 years ago.
2016-09-02Remove the GF(2**n) math test since isakmpd has been switchedMike Belopuhov
to using D-H functions from libcrypto more than 6 years ago.
2016-09-02Remove the GF(2**n) math test since isakmpd has been switchedMike Belopuhov
to using D-H functions from libcrypto more than 6 years ago.
2016-09-02Remove old RSA key generation and verification test as it's done nowMike Belopuhov
by LibreSSL regress tests; checked with bcook@
2016-09-02Adjust for the new default MODP groupMike Belopuhov
2016-09-02Remove obsolete DES-CBC testsMike Belopuhov
2016-09-01no route-to/reply-to/dup-to on block rules, aka make this pass againHenning Brauer
triggered by bluhm's *meep, secret*
2016-09-01Now the cached route flag appears in "route show". Adapt test.Alexander Bluhm
OK mpi@
2016-09-01Test that RTF_LOCAL routes cannot be deleted from userland.Martin Pieuchot
2016-09-01Use counter should stay at '0' if the lookup hasn't been done forMartin Pieuchot
tansmitting packets.
2016-08-31Add a bunch of regress test to verify the RTM_CHANGE behaviour of mpathClaudio Jeker
and non-mpath routes. Some of the tests currently fail.
2016-08-31Document what the various test here do. With mpi@Claudio Jeker
2016-08-26Make regress Makefile consistent with other tests, use bsd.regress.mk.Alexander Bluhm
OK otto@
2016-08-22Use a reachable next hop for test 13, which make it fail as it should.Martin Pieuchot
2016-08-22Sync counters now that ifa_ifwithroute() no longer uses ifa_ifwithnet().Martin Pieuchot
2016-08-22Sync counters now that ifa_ifwithroute() no longer uses ifa_ifwithnet().Martin Pieuchot
2016-08-22Sync refcount with recent change.Martin Pieuchot
2016-07-19Update counters & unbreak now that rtrequest(RTM_ADD, ...) caches theMartin Pieuchot
gateway.
2016-03-24Update regress test outputs to match the order of routes exported by anMartin Pieuchot
ART-enabled kernel. The difference is that routes with the same destination are now displayed in natural prefix-length order. This can even be seen as an improvement: -10.0/16 192.0.2.4 -10.0/10 192.0.2.4 10/8 192.0.2.1 +10.0/10 192.0.2.4 +10.0/16 192.0.2.4 The previous order is due to how dup key chains are ordered. Discussed with claudio@
2015-12-02Check that routes to the same destination but with a different priorityMartin Pieuchot
are inserted in the right order. Currently failing with ART.
2015-11-30Rewrite the "netmask" rule testing the "-dst" and "-net" optionsMartin Pieuchot
of route(8) to populate the test routing table (number 5) and use different subnets since we're not passing the "-mpath" flags. Breakage reported by daniel@
2015-11-09Match recent rtalloc(9) rewrite.Martin Pieuchot
Gateway routes are now cached the first time they are used and no longer when they are added. This allows to track down which multipath route is being selected as next-hop.
2015-10-27Check that RTM_GET works without RTAX_GATEWAY argument for multipathMartin Pieuchot
route entries.
2015-10-25Sync after recent rtable_insert() change.Martin Pieuchot
2015-10-14unbreak regress/sbin/newfsSebastien Marie
/dev/prandom is no more since Nov 30, 2008 OK otto@
2015-10-08Local route entries are always UP now, missed in previous.Martin Pieuchot
2015-09-28Sync with recent changes, local routes are now always UP.Martin Pieuchot
2015-09-23Sync with recent rt_use change.Martin Pieuchot
2015-09-07Sync output with recent IPv6 loopback changes to ensure ::1 is theMartin Pieuchot
first configured address. Yes, IPv6 address configuration code is fragile and selecting the first address of an interface to use it in a route entry might not be the best choice. Breakage reported by daniel@
2015-09-03revert previous since the v6 address order has been restoredMike Belopuhov
2015-09-03route-to, reply-to and dup-to are no longer supported on block rulesMike Belopuhov
2015-09-03order of assigned v6 addresses has slightly changedMike Belopuhov
2015-09-03sync to reflect changes in pfctl_parser.c -r1.305Mike Belopuhov
2015-08-31No more connected routes on loopback interfaces.Martin Pieuchot
Those tests now pass even if you have an AUTOCONF'd address on your machine. Note that the global list of prefixes is *still* not rtable ID aware.
2015-05-19Test divert-to rules' address handling (pfctl/parse.y -r1.648)Mike Belopuhov
2015-04-17Remove superflous "::1" route, test currently failing but a fix isMartin Pieuchot
in its way.
2015-04-17Local routes should be present in the routing table output.Martin Pieuchot
2015-04-17Match -current output. Every configured address should have a local routeMartin Pieuchot
and remove redundant loopback cloning route. Note that tests using IPv6 still contain two routes to "::1" this should cause no harm but is being investigated.
2015-03-02Add three extra checks that test proper removal of the P flag. Currently 2 failClaudio Jeker