Hello!

>  # > I do in box-1:
>  # > 
>  # > ip tunnel add test mode sit remote <box-2-ipv4> local <box-1-ipv4>

Create sit (i.e. ipv6-over-ip) tunnel with name "test",
local address box-1-ipv4 and remote address box-2-ipv4.

>  # > ip link set test up

Up newly created device "test". It is equvalent of "ifconfig test up"

>  # > ip addr add <prefix::1>/64 dev test

Add address <prexix::1> with length of prefix 64 to device "test".

>  # > ip ro add <prefix::2>/64 dev test

ro is route. Add direct route to prefix via device "test"

That's all.

Alexey Kuznetsov
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]

Reply via email to