File:Esempio di multi-homing IPv6.svg
| Description |
English: Example of IPv6 multi-homing.
Italiano: Esempio di multi-homing IPv6. |
| Date | |
| Source | Own work |
| Author | Lorenzo David, Luca Ghio |
| Permission (Reusing this file) |
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
|
| Other versions |
|
- TikZ code
\tikzstyle{host}=[rectangle, minimum size = 10mm, thick, draw =black!80, node distance = 3mm]
\tikzstyle{net}=[circle, minimum size = 10mm, thick, draw =black!80, node distance = 8mm]
\tikzstyle{connect}=[-latex, thick]
\node[host] (H1) [] {interfaccia dell'host};
\node[net] (N1) [below left=of H1] {provider A};
\node[net] (N2) [below right=of H1] {provider B};
\path
(H1) edge [connect] (N1)
(H1) edge [connect] (N2);