�Hola!
> May I ask a stupid question, please? Could someone go over these ip
> commands line by line and explain the options and what they mean?
I'll try...
> # > I do in box-1:
> # >
> # > ip tunnel add test mode sit remote <box-2-ipv4> local <box-1-ipv4>
This adds (create) a new tunnel interface called test, of type sit (i don't
know what sit means, but it's the standard ipv6-over-v4 afaik), using
ip <box-1-ipv4> as the local end of the tunnel and <box-2-ipv4> as the
other (remote) end...
> # > ip link set test up
Similar to ifconfig test up. It activates the just created tunneling
interface...
> # > ip addr add <prefix::1>/64 dev test
It adds a new IPv6 address (and automagic route) to the tunnel interface...
> # > ip ro add <prefix::2>/64 dev test
I supposse that isn't required. It adds a new route (but, afaik, it's equal to
the automagic one added by the "addr add"...)
> # >
> # > In box-2:
> # >
> # > ip tunnel add test mode sit remote <box-1-ipv4> local <box-2-ipv4>
> # > ip link set test up
> # > ip addr add <prefix::2>/64 dev test
> # > ip ro add <prefix::1>/64 dev test
> G'day!
HoraPe
---
Horacio J. Pe�a
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]