File:IPv6 scoped addresses example.svg
Description |
English: Example of usage for IPv6 scoped addresses.
Italiano: Esempio di impiego degli indirizzi scoped 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.
|
- TikZ code
\tikzstyle{host}=[rectangle, minimum size = 10mm, thick, draw =black!80, node distance = 3mm]
\tikzstyle{net}=[rectangle, minimum size = 10mm, thick, draw =black!80, node distance = 8mm]
\tikzstyle{connect}=[-latex, thick]
\node[host] (H1) [] {host};
\node[net] (N1) [below left=of H1] {link A};
\node[net] (N2) [below right=of H1] {link B};
\path
(H1) edge [connect] (N1)
(H1) edge [connect] (N2);