Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
|
it:openwrt [2021/04/14 00:37] sven update Formatting to DokuWiki syntax |
it:openwrt [2021/04/14 01:23] (aktuell) sven add "IPIP-tunnel" setup |
||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| Here you can read more about [[http:// | Here you can read more about [[http:// | ||
| - | ====== | + | ====== |
| + | ===== BOOTP, PXE ===== | ||
| === PXE on different TFTP-server === | === PXE on different TFTP-server === | ||
| - | man muss ganz einfach beim " | + | man muss ganz einfach beim " |
| + | ===== Tunnel und VPN ===== | ||
| + | === IPIP-Tunnel === | ||
| + | Wir haben 2 Router mit ihren jeweiligen Netzen, die direkt per Ethernet verkabelt sind. Router " | ||
| + | |||
| + | == pakete == | ||
| + | |||
| + | * ipip (hängt ab von kmod-iptunnel, | ||
| + | * luci-proto-ipip (optional, wenn LuCI genutzt wird) | ||
| + | |||
| + | == UCI-Konfig == | ||
| + | |||
| + | Router " | ||
| + | < | ||
| + | # standard-netz | ||
| + | config interface ' | ||
| + | option proto ' | ||
| + | option ipaddr ' | ||
| + | option netmask ' | ||
| + | option ifname ' | ||
| + | |||
| + | # Netz zwischen den Routern; hier laufen die Daten im IPIP-Tunnel | ||
| + | config interface ' | ||
| + | option proto ' | ||
| + | option ifname ' | ||
| + | option ipaddr ' | ||
| + | option netmask ' | ||
| + | |||
| + | # defines the IPIP-tunnel-link to node " | ||
| + | # " | ||
| + | config interface ' | ||
| + | option proto ' | ||
| + | option peeraddr ' | ||
| + | option delegate ' | ||
| + | option ipaddr ' | ||
| + | |||
| + | # sagen wir dem Kernel noch, das er das gesamte Netz " | ||
| + | config route | ||
| + | option interface ' | ||
| + | option target ' | ||
| + | option netmask ' | ||
| + | |||
| + | # optinal; assign an address of " | ||
| + | # to make " | ||
| + | config interface ' | ||
| + | option proto ' | ||
| + | option ifname ' | ||
| + | option delegate ' | ||
| + | option ipaddr ' | ||
| + | option netmask ' | ||
| + | </ | ||
| + | |||
| + | Router " | ||
| + | |||
| + | === N2N-VPN === | ||
| + | ein P2P-Mesh VPN | ||
| + | * https:// | ||
| ====== Develop ====== | ====== Develop ====== | ||
| * packaging: https:// | * packaging: https:// | ||