pptp server - GUI

 
Thread Tools Search this Thread
Homework and Emergencies Emergency UNIX and Linux Support pptp server - GUI
# 1  
Old 11-26-2010
pptp server - GUI

Hi guys.

I am going to build a Linux VPN server(PPTP) for my friend but here is the problem:
He don't know Linux and command line to manage users, monitor server, etc

anyone knows a good GUI for this problem? I need some solution like nttacplus
This User Gave Thanks to majid.merkava For This Post:
# 2  
Old 11-28-2010
I have the perfect guide for you - You can install Webmin on your server and make a lot of configurations over it.

Debending on if your Linux distro is RHEL based or Debain based use:

Run as root:
#su --
RHEL= yum install pptpd
Debain = apt-get install pptpd

/etc/pptpd.conf

Code:
 local ip :   [my VPS ip] 
 remote ip :  192.168.0.100-120  

/etc/ppp/pptpd-options
Code:
 refuse-pap 
 refuse-chap 
 refuse-mschap 
 require-mschap-v2 
 require-mppe-128 
 ms-dns 208.67.222.222 
 ms-dns 208.67.220.220  

/etc/ppp/chap-secrets
Code:
   user1 * password1 * 
   user2 * password2 *  

/etc/sysctl.conf
Code:
  net.ipv4.ip_forward=1  

IPTables rules:
Code:
   iptables -A FORWARD -i ppp+ -o eth0 -j ACCEPT 
   iptables -A FORWARD -i eth0 -o ppp+ -j ACCEPT 
   iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE 
   iptables -A INPUT -i eth0 -p tcp --dport 1723 -j ACCEPT 
   iptables -A INPUT -i eth0 -p gre -j ACCEPT  


Last edited by camper; 11-28-2010 at 04:56 PM..
These 2 Users Gave Thanks to camper For This Post:
# 3  
Old 01-04-2011
thank you. you are the man.

Now how can i add users so they are disabled after a month automatically?? webmin allows only creation of accounts!

Last edited by majid.merkava; 01-04-2011 at 06:34 AM..
This User Gave Thanks to majid.merkava For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Python gui or C++ gui or java gui?

python gui or c++ gui or java gui? and when to use etch one? (1 Reply)
Discussion started by: kaja
1 Replies

2. SuSE

HELP for Newbie: Unable to run GUI installer (Ubuntu client connected to SLES server)

Hello All, I'm using my Ubuntu 10.04 client connected via SSH to a SuSE Linux server (SuSE Linux Enterprise Server 11 (x86_64) version 11 patchlevel=1). I'm trying to run an install of WebSphere Portal but can't seem to be able to run the GUI installer. Running xclock as root returns this... (7 Replies)
Discussion started by: kartrait
7 Replies

3. Debian

Debian with PPTP Server

Dear All My scenario is Debian with PPTP Server in which I am able to connect to through other machines. Ive enable echo 1 > /proc/sys/net/ipv4/ip_forward and through client machine i can browse internet as well I created another pptp client in debian server which connects to another... (0 Replies)
Discussion started by: kazimnaim
0 Replies

4. Emergency UNIX and Linux Support

L2TP over PPTP

Hi there. Here is a crazy question: can we connect to a L2TP vpn server Through a PPTP VPN server(I mean when connecting to a pptp server)? (1 Reply)
Discussion started by: majid.merkava
1 Replies

5. Ubuntu

configure: vpn pptp

Hi all I'd like to connect over pptp vpn. I have my username, passwd and remote address. Then i start the connection and i see that over my ppp0 interface there's the same address in inet and P-t-P. I think they should be different right? Reading something i find out that i should change... (0 Replies)
Discussion started by: Dedalus
0 Replies

6. UNIX and Linux Applications

Problem with accessing subversion installed on unix server through windows GUI

We are using subversion as a version control system in our project. We are connecting to client`s sun Solaris box through check point VPN. Client has installed subversion . We have created repository and add files to it. Now we want to access the same from our windows machine (through... (0 Replies)
Discussion started by: aasid
0 Replies

7. Programming

creating GUI using C programing in unix server

I want to write GUI using C programing in Unix server. But I can not use windows.h header file. I want to create some text box using C programing. Please suggest me any sample code or tutorial for this purpose. I do not know any thing about GUI programing in C language. Thanks in... (5 Replies)
Discussion started by: rinku
5 Replies

8. UNIX for Dummies Questions & Answers

If a is windows gui ( client), b is a unix gui ( Server for a) and c is a shell scrip

Hello all, 1) I want to have a GUI application that will call Unix shell scripts, 2) that GUI application should be able to reside on windows ( if possible) and then call Unix shell script either directly or through a server residing on unix. That is for example. If a is windows gui (... (1 Reply)
Discussion started by: hchivukula
1 Replies

9. UNIX for Advanced & Expert Users

pptp / pf issue

Long story short, I have an issue with getting my VPN to connect to my w2k3 server box when I include the block all rule in my pf.conf: block log all Here's the output: Apr 04 06:04:09.291697 rule 1/0(match): block in on hme0: call 3033 seq 0 gre-ppp-payload (gre encap) Apr 04... (0 Replies)
Discussion started by: xyyz
0 Replies

10. UNIX for Dummies Questions & Answers

FreeBSD 4.9 PPTP server

Hey guys, what's up? I'm new to UNIX and I really don't know much. Kinda learning as I go along. I have successfully installed FreeBSD 4.9 and enabled FTP and Telnet services. I'm looking to setup a VPN server on my BSD box but I'm lost. Can anyone guide me in the right way? Much thanks! -... (2 Replies)
Discussion started by: sirex
2 Replies
Login or Register to Ask a Question