Sponsored Content
Full Discussion: Windows/Linux VPN
Top Forums UNIX for Advanced & Expert Users Windows/Linux VPN Post 40689 by cerberusofhnsg on Sunday 21st of September 2003 12:33:32 PM
Old 09-21-2003
found a solution:
http://www.poptop.org/
its called Poptop, and its compatible with MS's pptp. That was really what I was looking for. Theyre's also a client for linux, called PPTP-linux. Thanks.
 

9 More Discussions You Might Find Interesting

1. Cybersecurity

VPN client for linux?...

I'm looking for an open source VPN client that I can set up on RedHat 7.1. Any suggestion? Thanks in advance. VJ :) (3 Replies)
Discussion started by: vancouver_joe
3 Replies

2. UNIX for Advanced & Expert Users

VPN client (windows Box),and Server (Unix Box)

If I want to access unix box via VPN tunnel,from windows box. What sould I configure on the windows client PC, and what should I enable on the Unix Server box ? I am using Solaris V10 intel platform, and I am using windows XP, and 2003 for client (0 Replies)
Discussion started by: zillah
0 Replies

3. Debian

VPN over Linux box.

Hi, I've installed Linux fedora 3 on my machine and I want to develop the VPN server on Linux. I've several machines which access the linux box as gateway for net and mail usage. The Webmin cp is installed on it. Now I want a external windows based machine connect to my internal windows server... (4 Replies)
Discussion started by: ashwin_think
4 Replies

4. Linux

What's better for running Windows software in Linux, Wine or Windows VMware?

What are the differences, advantages, and disadvantages? (1 Reply)
Discussion started by: Advice Pro
1 Replies

5. SCO

Printing to Windows 7 using Samba 2.0.3 via VPN connection to SCO 3.2v5.0.6

I would like to know if anyone has a way to PRINT TO a printer attached to a Windows 7 PC, from SCO, while logged in via a VPN connection. I am able to attach to a Samba share on the SCO server for files while attached to the VPN, so I know my Samba is workling - but my print jobs return: ... (2 Replies)
Discussion started by: tbb999
2 Replies

6. Red Hat

Rdesktop - From Linux to Windows in VPN

Hi Gurus, I have a Linux server in a Private Network which i connect through a VPN client. This Linux server is the only server from which we have access to all other servers(Windows & Linux) in the Private Network(hitherto referred as PN). Now i want to RDP into one of the Windows boxes in... (1 Reply)
Discussion started by: Hari_Ganesh
1 Replies

7. UNIX for Beginners Questions & Answers

Seen Windows pc, having all the features of Linux, could exe, read and edit save like windows

Hi, totally new to linux base using windows when started learning and using computers. but i remember that one pc was there , look alike windows desktop, but could not do the task as windows just click and open and view edit etc. But, you could do a little differently even saving in and opening... (8 Replies)
Discussion started by: jraju
8 Replies

8. Cybersecurity

Best VPN for Linux Mint - XBOX and torrenting purpose??

In spite of the fact that I've been utilizing Linux Mint for quite a long while. I see myself as an amateur with regards to VPN. I've googled different variants of the inquiry. kindly give me some suggestion which are best fit for linux OS? (1 Reply)
Discussion started by: susanjohn1
1 Replies

9. UNIX for Beginners Questions & Answers

VPN issue on Linux:

I was using PureVPN (with openvpn) on my windows machines and thought I'd try setting that up on linux mint 19.1 (xfce 32 bit). I followed complete installation process given on their website and all was working fine until I had to move the renamed config file into the openvpn folder. ... (2 Replies)
Discussion started by: ericaustin
2 Replies
PPTPD(8)						      System Manager's Manual							  PPTPD(8)

NAME
pptpd - PPTP VPN daemon SYNOPSIS
pptpd [ options ] DESCRIPTION
pptpd is the Poptop PPTP daemon, which manages tunnelled PPP connections encapsulated in GRE using the PPTP VPN protocol. It may contain features like IP address management and TCP wrappers if compiled in. OPTIONS
Here we document the command line options. See pptpd.conf(5) for configuration directives, IP address allocation, routing, and firewall rules. -b|--bcrelay internal-interface specifies that broadcasts received on the server's internal network interface should be relayed to the clients. -c|--conf conf-file specifies the configuration file for pptpd (default /etc/pptpd.conf) -d|--debug turns on debugging mode, causing more debugging messages to be sent to syslog. -e|--ppp pppd-program use pppd-program in place of the default pppd(8). -f|--fg run in the foreground instead of detaching from terminal -h|--help display program usage. -i|--noipparam do not send the client's IP address to ip-up scripts (required if you are using the pppd(8) ipparam option for some other purpose). -l|--listen x.x.x.x specifies the local interface IP address to listen on. -o|--option ppp-conf-file specifies that pptpd should specify an alternate configuration file for the ppp daemon (the default is normally /etc/ppp/options but may vary depending on your ppp daemon). -p|--pidfile pid-file specifies an alternate location to store the process ID file (default /var/run/pptpd.pid). -s|--speed baud specifies that the speed baud should be passed to the ppp daemon as the tty speed to use (in some cases this is ignored by the ppp daemon). -t|--stimeout seconds specifies the number of seconds to wait for the first packet before dropping the connection. This is a denial of service protection feature. -w|--logwtmp update wtmp(5) as users connect and disconnect. See wtmp(1). -C|--connections n limits the number of client connections that may be accepted. Corresponds to the connections option in pptpd.conf. If pptpd is allocating IP addresses (e.g. --delegate is not used) then the number of connections is also limited by the remoteip option in pptpd.conf. -D|--delegate delegates the allocation of client IP addresses to pppd(8). Without this option, which is the default, pptpd manages the list of IP addresses for clients and passes the next free address to pppd. With this option, pptpd does not pass an address, and so pppd may use radius or chap-secrets to allocate an address. -v|--version displays the current version of the pptp daemon. FILES
/etc/pptpd.conf /var/run/pptpd.pid DEBUGGING
To turn on debugging, add 'debug' to /etc/pptpd.conf and your PPP options file, and restart pptpd. Typically the PPP options file is options.pptpd in /etc/ppp, though on some distributions it may be pptpd-options. Use your package man- ager to find it, e.g. 'rpm -ql pptpd | grep options' or 'dpkg --listfiles pptpd | grep options'. You may need to configure syslogd to catch debug messages. e.g. edit /etc/syslog.conf and add something similar to the example below, then restart syslogd. # debug logging *.debug;mail.none /var/log/debug This will log all debug information, except mail, to the file /var/log/debug. Note that this is a lot of information and might flood your disks. If performance is an issue, you can try turning off sync during your debugging, by prefixing the destination with '-'. # debug logging *.debug;mail.none -/var/log/debug Disable this line and restart syslog after you are done debugging. See the syslog man pages for more details. AUTHORS
Poptop is written by Matthew Ramsay <matthewr@moreton.com.au>, David Luyer <luyer@ucs.uwa.edu.au>, Kevin Thayer <tmk@netmagic.net>, Peter Galbavy <Peter.Galbavy@knowledge.com> and others. Development has been moved to SourceForge and worked on by Richard de Vroede <r.devroede@linvision.com> since June 26, 2002. COPYRIGHT
Copyright (C) 1999 Matthew Ramsay and others. Poptop is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Poptop is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Poptop; see the file COPYING. If not, write to the Free Soft- ware Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. AVAILABILITY
The most recent version of Poptop is available for download from SourceForge at http://sourceforge.net/projects/poptop. SEE ALSO
pppd(8), pptpd(8), pptpd.conf(5). 29 December 2005 PPTPD(8)
All times are GMT -4. The time now is 03:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy