Da die Geschichte grundsätzlich funktioniert, aber über das Fritzbox VPN Unicast und Multicast nicht korrekt übertragen wird, hab ich jetzt mal einen Barbone PC, den ich noch rumliegen hatte mit Ubuntu 18.04.2 LTS aufgesetzt.
Da ich mit Linux aber absolut auf Kriegsfuß stehe, hab ich da wohl einen Bock geschossen.
VPN Server ist soweit installiert und funktional (UDP 1194 / TAP bridging)
Nur hab ich mir das Interface eth0 irgendwie abgeschossen.
Es wird nicht mehr aufgelistet und der VPN Server ist nicht per UDP 1194 erreichbar
Code:
vpn@vpn-NM10:~$ ifconfig
ens32: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.2.79 netmask 255.255.255.0 broadcast 192.168.2.255 inet6 fe80::201:2eff:fe3b:2f98 prefixlen 64 scopeid 0x20<link> inet6 xxxx:xx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx prefixlen 64 scopeid 0x0<global> ether 00:01:2e:3b:2f:98 txqueuelen 1000 (Ethernet) RX packets 4730 bytes 1845151 (1.8 MB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 2140 bytes 341252 (341.2 KB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Lokale Schleife) RX packets 489 bytes 54857 (54.8 KB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 489 bytes 54857 (54.8 KB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
tap0: flags=4419<UP,BROADCAST,RUNNING,PROMISC,MULTICAST> mtu 1400 inet6 fe80::44e7:49ff:fe86:1b06 prefixlen 64 scopeid 0x20<link> ether 46:e7:49:86:1b:06 txqueuelen 100 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 42 bytes 4561 (4.5 KB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
vpn@vpn-NM10:~$
Internetzugang funktioniert auf dem Rechner aber noch, bin ja damit aktuell hier Online.
Vermutlich hab ich beim editieren der /etc/network/interfaces was falsch eingetragen, den ursprünglichen Inhalt nach der Installation des Systems hab ich mir aber nicht gemerkt / gespeichert.
Aktuell ist folgendes dort eingetragen:
Code:
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
#auto eth0
#iface eth0 inet dhcp
auto br0
iface br0 inet static
address 192.168.2.79
netmask 255.255.255.0
gateway 192.168.2.1
network 192.168.2.0
dns-nameservers 192.168.2.1
broadcast 192.168.2.255
bridge_ports eth0
#auto eth0
#iface eth0 inet dhcp
iface eth0 inet auto
up ifconfig $IFACE 0.0.0.0 up
up ip link set $IFACE promisc off
down ip link set $IFACE promisc off
down ifconfig $IFACE down
Wo hab ich da den Bock, bzw. wie bekomme ich das eth0 Device wieder gestartet?
Ich hab keine Lust, deswegen den Rechner nochmals neu aufzusetzen und von vorne anzufangen.
Bis auf das fehlende eth0 ist eigentlich alles konfiguriert, sämtliche Schlüssel für den Server und die Clients sind angelegt usw...