ich habe einen Root-Server:
Code: Alles auswählen
eth0 Link encap:Ethernet HWaddr 00:0c:76:b4:*:*
inet addr:83.246.*.* Bcast:83.246.*.255 Mask:255.255.255.0
inet6 addr: fe80::20c:76ff:*:*/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:5710403 errors:0 dropped:5 overruns:0 frame:0
TX packets:3105015 errors:1 dropped:0 overruns:1 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1661326797 (1.5 GiB) TX bytes:2371879078 (2.2 GiB)
Interrupt:11 Base address:0xe000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:109264 errors:0 dropped:0 overruns:0 frame:0
TX packets:109264 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:10641711 (10.1 MiB) TX bytes:10641711 (10.1 MiB)
Code: Alles auswählen
# OHNE TAP/TUN
route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
83.246.*.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 83.246.*.1 0.0.0.0 UG 0 0 0 eth0
# MIT TAP/TUN
oute -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.8.0.0 0.0.0.0 255.255.255.0 U 0 0 0 tap0
83.246.*.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 83.246.*.1 0.0.0.0 UG 0 0 0 eth0
Server-Config:
Code: Alles auswählen
dev tap
port 443
proto udp
mode server
tls-server
keepalive 10 60
ifconfig 10.8.0.1 255.255.255.0
ifconfig-pool 10.8.0.2 10.8.0.10
push "route 83.246.*.0 255.255.255.0"
dh...
ca ...
cert ...
key ...
Code: Alles auswählen
client
float
dev tap
proto udp
port 443
remote 83.246.*.* (Server IP)
tls-remote server
ca ...
cert ...
key ...
So, soweit so gut.. Verbindung kann aufgebaut werden, PING funktioniert.
Allerdings funktioniert das Routing über den Root Server (als internetgateway) wohl nicht.
Im Logfile des Clienten erscheint das hier:
Code: Alles auswählen
Mon Mar 29 17:46:21 2010 OpenVPN ROUTE: OpenVPN needs a gateway parameter for a --route option and no default was specified by either --route-gateway or --ifconfig options
Mon Mar 29 17:46:21 2010 OpenVPN ROUTE: failed to parse/resolve route for host/network: 83.246.*.0
Was mache ich denn da Falsch? IP-Forwarding ist aufm Rootserver eingeschaltet.
Hoffe mir kann hier jemand weiter helfen und Danke im Voraus
Beste Grüße