Tunneling: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Chris (Diskussion | Beiträge) Die Seite wurde neu angelegt: „== GRETAP Tunnel erstellen == Auf Host1: <pre> ip l add GRE type gretap local 192.168.0.253 remote <öffentliche IP-Adresse> ip l set dev GRE up ip a add 10.…“ |
Chris (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 14: | Zeile 14: | ||
ip l add GRE type gretap local 192.168.3.253 remote <öffentliche IP-Adresse> | ip l add GRE type gretap local 192.168.3.253 remote <öffentliche IP-Adresse> | ||
ip l set dev GRE up | ip l set dev GRE up | ||
ip a add 10.0.0. | ip a add 10.0.0.2/24 dev GRE | ||
</pre> | </pre> | ||
Version vom 12. Mai 2019, 16:38 Uhr
GRETAP Tunnel erstellen
Auf Host1:
ip l add GRE type gretap local 192.168.0.253 remote <öffentliche IP-Adresse> ip l set dev GRE up ip a add 10.0.0.1/24 dev GRE
Auf Host2:
ip l add GRE type gretap local 192.168.3.253 remote <öffentliche IP-Adresse> ip l set dev GRE up ip a add 10.0.0.2/24 dev GRE