summaryrefslogtreecommitdiffstats
path: root/share/man (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* spelling fix;jmc2021-02-241-3/+3
|
* typoderaadt2021-02-231-2/+2
|
* aplintc(4)kettenis2021-02-232-2/+44
|
* Fix m_copyback(9) prototype in DESCRIPTION section.mvs2021-02-231-3/+3
| | | | ok millert@
* fix up which link flags do what.dlg2021-02-231-5/+5
| | | | | ipsec code is written, but is disabled, so the ipsec words here are still commented out for now.
* try and use my words to explain what veb is and does.dlg2021-02-232-2/+124
| | | | ok jmatthew@
* Mark as arm64-specific.kettenis2021-02-221-2/+2
|
* apldog(4)kettenis2021-02-222-2/+44
|
* zap duplicate .Nm;jmc2021-02-211-2/+1
|
* i added stoeplitz_eaddrdlg2021-02-211-1/+11
|
* fix the names of the things that actually do the hashing.dlg2021-02-211-22/+23
|
* change documented drm nodes to /dev/dri/ and mention powerpc64jsg2021-02-131-5/+5
|
* Tweak ssl(8)'s text about EC generation. Streamline by using "ecparamsthen2021-02-121-16/+23
| | | | | | | | | | -genkey" rather than separately generating parameters and key. Give a clue that some CAs accept only prime256v1. Show the user where to stop if they're just generating a private key for acme-client and therefore don't need to generate a csr or cert manually. Add xr to acme-client(1) suggest by tb@. ok jmc tb
* syncjsg2021-02-127-28/+49
|
* as usual, stuff got removed without updating the documentationespie2021-02-101-75/+2
| | | | GC www/drupal7 description
* add RAID 1C to the list of supported softraid(4) disciplinesstsp2021-02-081-2/+14
|
* Mention Netgear ProSecure UTM25.visa2021-02-061-2/+4
|
* remove the suggestion to permit pkg_add with doas "nopass" when doingsthen2021-02-041-21/+13
| | | | | | | | | | | | | ports dev work. if you are able to run pkg_add as root without a password, your account is root-equivalent. typing the password multiple times is a pain but if somebody is going to choose to weaken their local security in this way, it should be their own decision and not something they have read in a manpage. ok tb@ thfr@
* Add uhidpp(4), a driver for Logitech HID++ devices. Currently limited toanton2021-02-044-7/+59
| | | | | | | | | exposing battery sensors for HID++ 2.0 devices. Most of the code is derived from the hid-logitech-hidpp Linux driver. Thanks to Ville Valkonen <weezeldinga at gmail dot com> for testing. ok mglocker@
* Remove last remnants of ASU ac_flag from accounting.rob2021-02-041-6/+2
| | | | OK deraadt@, bluhm@
* Document MODOCAML_RUNDEPjca2021-02-011-3/+9
| | | | | ok bket@ sthen@ (who initially suggested the if-not-native value under a similar name)
* describe pfsync(4)'s use of carpdemote, ok/tweak kn deraadtsthen2021-02-011-2/+10
|
* some article fixes; from eddie youseph and grepjmc2021-02-012-6/+6
|
* change route-to so it sends packets to IPs instead of interfaces.dlg2021-02-011-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this is a significant (and breaking) reworking of the policy based routing that pf can do. the intention is to make it as easy as nat/rdr to use, and more robust when it's operating. the main reasons for this change are: - route-to, reply-to, and dup-to do not work with pfsync this is because the information about where to route-to is stored in rules, and it is hard to have a ruleset synced between firewalls, and impossible to have them synced 100% of the time. - i can make my boxes panic in certain situations using route-to yeah... - the configuration and syntax for route-to rules are confusing. the argument to route-to and co is an interace name with an optional ip address. there are several problems with this. one is that people tend to think about routing as sending packets to peers by their address, not by the interface they're reachable on. another is that we currently have no way to synchronise interface topology information between firewalls, so using an interface to say where packets go means we can't do failover of these states with pfsync. another is that a change in routing topology means a host may become reachable over a different interface. tying routing policy to interfaces gets in the way of failover and load balancing. this change does the following: - stores the route info in the state instead of the pf rule this allows route-to to keep working when the ruleset changes, and allows route-to info to be sent over pfsync. there's enough spare bits in pfsync messages that the protocol doesnt break. the caveat is that route-to becomes tied to pass rules that create state, like rdr-to and nat-to. - the argument to route-to etc is a destination ip address it's not limited to a next-hop address (thought a next-hop can be a destination address). this allows for the failover and load balancing referred to above. - deprecates the address@interface host syntax in pfctl because routing is done entirely by IPs, the interface is derived from the route lookup, not pf. any attempt to use the @interface syntax will fail now in all contexts. there's enthusiasm from proctor@ jmatthew@ and others ok sashan@ bluhm@
* Add AMAP flag description.rob2021-01-301-1/+4
| | | | OK deraadt@
* Remove ACOMPAT.rob2021-01-301-5/+2
| | | | OK deraadt@
* The usb configuration descriptor parameter providing the number ofmglocker2021-01-271-3/+3
| | | | | | available device interfaces is called 'bNumInterfaces'. ok phessler@, thfr@ (who provided the man page diff)
* word fix;jmc2021-01-271-3/+3
|
* php.port.mk sets MODPHP_BUILDDEP=No by default now.sthen2021-01-251-6/+7
|
* syncderaadt2021-01-2313-52/+91
|
* introduce ujoy(4), a restricted subset of uhid(4) for gamecontrollers.thfr2021-01-234-6/+63
| | | | | | | | This includes ujoy_hid_is_collection() to work around limitations of hid_is_collection() until this can be combined without fallout. input, testing with 8bitdo controller, and ok brynet@ PS4 controller testing, fix for hid_is_collection, and ok mglocker@
* ims: an actual i2c-connected mouse is unlikelyjcs2021-01-221-4/+4
| | | | | | | Claim to be a touchpad instead, which sets up ims devices in X11 to be more like touchpads. ok mglocker
* Private functions in the kernel do not to be prototyped.millert2021-01-221-6/+8
| | | | | | We don't use static in the kernel due to ddb so functions private to the compilation unit are basically equivalent. OK cheloha@ gnezdo@ mglocker@
* Document IFM_2500_T media type.kevlo2021-01-211-2/+5
| | | | ok claudio@ jmc@ sthen@
* usb_init_task() wants a struct usb_task as the first argumentanton2021-01-191-3/+3
| | | | ok kn@ mvs@
* Introduce new function if_unit(9). This function returns a pointer themvs2021-01-181-2/+20
| | | | | | | | | | | interface descriptor corresponding to the unique name. This descriptor is guaranteed to be valid until if_put(9) is called on the returned pointer. if_unit(9) should replace already existent ifunit() which returns descriptor not safe for dereference when context was switched. This allow us to avoid some use-after-free issues in ioctl(2) path. Also this unifies interface descriptor usage. ok claudio@ sashan@
* Fix prototype for rw_assert_wrlock() function.mvs2021-01-161-3/+3
| | | | ok anton@ kn@
* zap trailing periodanton2021-01-151-2/+2
|
* add myself as the authoranton2021-01-151-2/+4
|
* now we report more addresses to the hostjmatthew2021-01-151-3/+3
|
* Support .rpm in EXTRACT_CASESkn2021-01-101-2/+4
| | | | | | Less special cases in (rare) ports, pluse one can use EXTRACT_FILES as usual now. OK espie robert
* missing plural in previous;jmc2021-01-081-2/+2
|
* Provide "Point-to-Multipoint Layer 3 GRE tunnel interfaces (mgre) example"kn2021-01-081-2/+63
| | | | | | | From Pierre Emeriaud, thanks! Feeback jmc OK dlg
* Try to document struct ip_mreqnclaudio2021-01-081-3/+16
| | | | With input from jmc@
* Remove PIPEX{S,G}MODE ioctl(2) commands. This time they are pretty dummymvs2021-01-021-16/+2
| | | | | | and were kept only for backward compatibility reasons. ok mpi@ yasuoka@
* add the "don't tunnel vxlan over itself" text.dlg2021-01-021-2/+10
|
* Enable IPv4 and TCP/UDP checksum offload on transmission.visa2020-12-311-2/+6
|
* Document STAILQ macros. OK mpi@ denis@ jmc@millert2020-12-301-17/+232
|
* missing word fix; from nam nguyenjmc2020-12-301-3/+3
|
* Document kern.video.record.mglocker2020-12-292-9/+26
| | | | | | With help/input from jmc@ and kn@. ok jmc@