diff options
author | 2019-11-04 23:53:37 +0000 | |
---|---|---|
committer | 2019-11-04 23:53:37 +0000 | |
commit | 6f6a1eaf59e6a063fc419eb182de714d5712e9ec (patch) | |
tree | 5d8a044a897a4e0cc3d0a66bf4fdb0b98b4ae32c | |
parent | remove mobileip(4) (diff) | |
download | wireguard-openbsd-6f6a1eaf59e6a063fc419eb182de714d5712e9ec.tar.xz wireguard-openbsd-6f6a1eaf59e6a063fc419eb182de714d5712e9ec.zip |
mobileip(4) has been removed
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/mobileip.4 | 139 |
2 files changed, 2 insertions, 141 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 7740d9e73d2..4c16351b6a4 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.739 2019/10/23 20:33:19 kettenis Exp $ +# $OpenBSD: Makefile,v 1.740 2019/11/04 23:53:37 dlg Exp $ MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \ acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \ @@ -46,7 +46,7 @@ MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \ lisa.4 lm.4 lmenv.4 lmn.4 lmtemp.4 lo.4 lpt.4 lxtphy.4 luphy.4 \ maestro.4 mainbus.4 malo.4 maxds.4 maxrtc.4 maxtmp.4 mbg.4 \ mcprtc.4 mcx.4 midi.4 mii.4 mfi.4 \ - mfii.4 mlphy.4 mobileip.4 moscom.4 mos.4 mpe.4 mpath.4 mpi.4 mpii.4 \ + mfii.4 mlphy.4 moscom.4 mos.4 mpe.4 mpath.4 mpi.4 mpii.4 \ mpip.4 mpu.4 msk.4 mpw.4 msts.4 mtd.4 mtdphy.4 mtio.4 mue.4 \ multicast.4 mvclock.4 mvdog.4 mvgicp.4 mvgpio.4 mvicu.4 mviic.4 \ mvneta.4 mvpinctrl.4 mvrng.4 mvrtc.4 mvspi.4 mvtemp.4 mvuart.4 myx.4 \ diff --git a/share/man/man4/mobileip.4 b/share/man/man4/mobileip.4 deleted file mode 100644 index a6ae56ac524..00000000000 --- a/share/man/man4/mobileip.4 +++ /dev/null @@ -1,139 +0,0 @@ -.\" $OpenBSD: mobileip.4,v 1.3 2018/02/07 08:45:17 dlg Exp $ -.\" -.\" Copyright (c) 2018 David Gwynne <dlg@openbsd.org> -.\" -.\" Permission to use, copy, modify, and distribute this software for any -.\" purpose with or without fee is hereby granted, provided that the above -.\" copyright notice and this permission notice appear in all copies. -.\" -.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -.\" -.Dd $Mdocdate: February 7 2018 $ -.Dt MOBILEIP 4 -.Os -.Sh NAME -.Nm mobileip -.Nd MobileIP encapsulating network device -.Sh SYNOPSIS -.Cd "pseudo-device mobileip" -.Sh DESCRIPTION -The -.Nm -driver provides IP tunnel construction using -the Mobile IP (RFC 2004) encapsulation protocol -.Pp -.Nm -datagrams (IP protocol number 55) -are encapsulated into IP using a small encapsulation header. -This protocol, in line with the RFC, only supports encapsulating -IPv4. -.Pp -A -.Nm -interface can be created at runtime using the -.Ic ifconfig Nm Ns Ar N Ic create -command or by setting up a -.Xr hostname.if 5 -configuration file for -.Xr netstart 8 . -.Pp -The MTU is set to 1488 by default. -This may not be an optimal value -depending on the link between the two tunnel endpoints, -but it can be adjusted via -.Xr ifconfig 8 . -.Pp -For correct operation, the route to the tunnel destination must not -go over the interface itself. -This can be implemented by adding a distinct or a more specific -route to the tunnel destination than the hosts or networks routed -via the tunnel interface. -Alternatively, the tunnel traffic may be configured in a separate -routing table to the encapsulated traffic. -.Pp -.Nm -interfaces support the following -.Xr ioctl 2 Ns s -for configuring tunnel options: -.Bl -tag -width indent -offset 3n -.It Dv SIOCSLIFPHYADDR Fa "struct if_laddrreq *" -Set the addresses of the outer IP header. -The addresses may only be configured while the interface is down. -.It Dv SIOCGLIFPHYADDR Fa "struct if_laddrreq *" -Get the addresses of the outer IP header. -.It Dv SIOCDIFPHYADDR -Clear the outer IP header addresses. -The addresses may only be cleared while the interface is down. -.It Dv SIOCSLIFPHYRTABLE Fa "struct ifreq *" -Set the routing table the encapsulated IP packets operate within. -The routing table may only be configured while the interface is down. -.It Dv SIOCGLIFPHYRTABLE Fa "struct ifreq *" -Get the routing table the encapsulated IP packets operate within. -.El -.Sh EXAMPLES -Configuration example: -.Bd -literal -Host X --- Host A ----------- MobileIP ------------ Host D --- Host E - \e / - \e / - +------ Host B ------ Host C ------+ -.Ed -.Pp -On Host A -.Pq Ox : -.Bd -literal -offset indent -# route add default B -# ifconfig mobileipN create -# ifconfig mobileipN tunnel A D -# ifconfig mobileipN A D netmask 255.255.255.255 -# route add E D -.Ed -.Pp -On Host D -.Pq Ox : -.Bd -literal -offset indent -# route add default C -# ifconfig mobileipN create -# ifconfig mobileipN tunnel D A -# ifconfig mobileipN D A netmask 255.255.255.255 -# route add D E -.Ed -.Pp -The route domain used for the encapsulated traffic may be set using -.Xr ifconfig 8 -and the tunneldomain argument: -.Bd -literal -offset indent -# ifconfig mobileipN tunneldomain 1 -.Ed -.Sh SEE ALSO -.Xr inet 4 , -.Xr ip 4 , -.Xr netintro 4 , -.Xr options 4 , -.Xr hostname.if 5 , -.Xr protocols 5 , -.Xr ifconfig 8 , -.Xr netstart 8 -.Sh STANDARDS -.Rs -.%A C. Perkins -.%D October 1996 -.%R RFC 2004 -.%T Minimal Encapsulation within IP -.Re -.Sh HISTORY -Support for the MobileIP protocol was originally implemented as part of the -.Xr gre 4 -driver. -The -.Nm -driver was split off from -.Xr gre 4 -in -.Ox 6.3 . |