View Single Post
Posts: 53 | Thanked: 9 times | Joined on Nov 2005
#39
your xterm doesn't hang, it runs your application (pptp) and waits for it to get finished. don't forget the "&" at the end of the command if you wish to use the same xterm for other applications at the same time.

your log seems to be fine ...
try
Code:
ifconfig ppp0
if you get "ppp0: error fetching interface information: Device not found"
something went wrong, but if there is a device ppp0 u just have to fight with routing.

try to ping your gateway. try 192.168.0.1 or 192.168.0.254

look at http://pptpclient.sourceforge.net/ro...#all-to-tunnel
Code:
  route add -host ${SERVER} dev ${PRIMARY}
  route del default ${PRIMARY}
  route add default dev ${TUNNEL}
these lines do the necessary stuff...
your tunnel seems to be fine, but there seems to be trouble with your routing. google a bit and make yourself confident with routing...

greetz