p To use .Nm gif , the administrator must first create the interface and then configure protocol and addresses used for the outer header. This can be done by using .Xr ifconfig 8 .Sq create and .Sq tunnel subcommands, or .Dv SIOCIFCREATE and .Dv SIOCSIFPHYADDR ioctls. Also, administrator needs to configure protocol and addresses used for the inner header, by using .Xr ifconfig 8 . Note that IPv6 link-local address
q those start with Li fe80:: will be automatically configured whenever possible. You may need to remove IPv6 link-local address manually using .Xr ifconfig 8 , when you would like to disable the use of IPv6 as inner header
q like when you need pure IPv4-over-IPv6 tunnel . Finally, use routing table to route the packets toward .Nm interface.
p .Nm can be configured to be ECN friendly. This can be configured by .Dv IFF_LINK1 .
p .Ss ECN friendly behavior .Nm can be configured to be ECN friendly, as described in .Dv draft-ietf-ipsec-ecn-02.txt . This is turned off by default, and can be turned on by .Dv IFF_LINK1 interface flag.
p Without .Dv IFF_LINK1 , .Nm will show a normal behavior, like described in RFC2893. This can be summarized as follows: l -tag -width "Ingress" -offset indent t Ingress Set outer TOS bit to .Dv 0 . t Egress Drop outer TOS bit. .El
p With .Dv IFF_LINK1 , .Nm will copy ECN bits
o .Dv 0x02 and .Dv 0x01 on IPv4 TOS byte or IPv6 traffic class byte
c on egress and ingress, as follows: l -tag -width "Ingress" -offset indent t Ingress Copy TOS bits except for ECN CE
o masked with .Dv 0xfe
c from inner to outer. set ECN CE bit to .Dv 0 . t Egress Use inner TOS bits with some change. If outer ECN CE bit is .Dv 1 , enable ECN CE bit on the inner. .El
p Note that the ECN friendly behavior violates RFC2893. This should be used in mutual agreement with the peer.
p
.Ss Security
Malicious party may try to circumvent security filters by using
tunnelled packets.
For better protection,
.Nm
performs martian filter and ingress filter against outer source address,
on egress.
Note that martian/ingress filters are no way complete.
You may want to secure your node by using packet filters.
Ingress filter can be turned off by
.Dv IFF_LINK2
bit.
.Sh SEE ALSO
.Xr inet 4 ,
.Xr inet6 4 ,
.Xr ifconfig 8
.Rs
.%A R. Gilligan
.%A E. Nordmark
.%B RFC2893
.%T Transition Mechanisms for IPv6 Hosts and Routers
.%D August 2000
.%O ftp://ftp.isi.edu/in-notes/rfc2893.txt
.Re
.Rs
.%A Sally Floyd
.%A David L. Black
.%A K. K. Ramakrishnan
.%T "IPsec Interactions with ECN"
.%D December 1999
.%O draft-ietf-ipsec-ecn-02.txt
.Re
.Sh HISTORY
The
.Nm
device first appeared in WIDE hydrangea IPv6 kit.
.Sh BUGS
There are many tunnelling protocol specifications,
defined differently from each other.
.Nm
may not interoperate with peers which are based on different specifications,
and are picky about outer header fields.
For example, you cannot usually use
.Nm
to talk with IPsec devices that use IPsec tunnel mode.
p The current code does not check if the ingress address
q outer source address configured to .Nm makes sense. Make sure to configure an address which belongs to your node. Otherwise, your node will not be able to receive packets from the peer, and your node will generate packets with a spoofed source address.
p If the outer protocol is IPv6, path MTU discovery for encapsulated packet may affect communication over the interface.
p In the past, .Nm had a multi-destination behavior, configurable via .Dv IFF_LINK0 flag. The behavior was obsoleted and is no longer supported.