Re: [plug] Need help on OpenVPN

2010-03-05 Thread Tata Dano
Ok..thanks on this one. On Fri, Mar 5, 2010 at 10:08 PM, Ian Dexter R. Marquez wrote: > On Fri, Mar 5, 2010 at 15:43, Tata Dano wrote: > >> at root account run this command: > >> > >> # find / -name "tun.ko" > >> > > This is result of this command: > > [r...@myserver ~]# find / -name "tun.ko" >

Re: [plug] Need help on OpenVPN

2010-03-05 Thread Tata Dano
Thanks on this one also... On Fri, Mar 5, 2010 at 10:10 PM, fooler mail wrote: > On Fri, Mar 5, 2010 at 3:43 PM, Tata Dano wrote: > > > > So, I supposed this means that I will recompile the kernel? > > > > purpose to recompile the kernel is you want that feature statically , > dynamically or n

Re: [plug] Need help on OpenVPN

2010-03-05 Thread Tata Dano
Thanks for the input... On Fri, Mar 5, 2010 at 4:18 PM, Ronald Artos wrote: > check the kernel package > > #> rpm -ql kernel-`uname -r` | grep tun.ko > ... > > My centos server has one by default (v5.3) > > > > ronald > > > > On Fri, Mar 5, 2010 at 3:43 PM, Tata Dano wrote: > >> >> >> On T

Re: [plug] Need help on OpenVPN

2010-03-05 Thread Ian Dexter R. Marquez
On Fri, Mar 5, 2010 at 15:43, Tata Dano wrote: >> at root account run this command: >> >> # find / -name "tun.ko" >> > This is result of this command: > [r...@myserver ~]# find / -name "tun.ko" > [r...@myserver ~]# > > So, I supposed this means that I will recompile the kernel? >> Try yum provi

Re: [plug] Need help on OpenVPN

2010-03-05 Thread fooler mail
On Fri, Mar 5, 2010 at 3:43 PM, Tata Dano wrote: > > So, I supposed this means that I will recompile the kernel? > purpose to recompile the kernel is you want that feature statically , dynamically or not part of the kernel at all... in your case... you want tunnel driver either part of the kern

Re: [plug] Need help on OpenVPN

2010-03-05 Thread Ronald Artos
check the kernel package #> rpm -ql kernel-`uname -r` | grep tun.ko ... My centos server has one by default (v5.3) ronald On Fri, Mar 5, 2010 at 3:43 PM, Tata Dano wrote: > > > On Thu, Mar 4, 2010 at 10:01 PM, fooler mail wrote: > >> On Thu, Mar 4, 2010 at 7:27 AM, Tata Dano wrote: >>

Re: [plug] Need help on OpenVPN

2010-03-04 Thread Tata Dano
On Thu, Mar 4, 2010 at 10:01 PM, fooler mail wrote: > On Thu, Mar 4, 2010 at 7:27 AM, Tata Dano wrote: > > [r...@myserver ~]# modprobe tun > > FATAL: Module tun not found. > > at root account run this command: > > # find / -name "tun.ko" > > This is result of this command: [r...@myserver ~]# fi

Re: [plug] Need help on OpenVPN

2010-03-04 Thread Tata Dano
Alternatively, I can also try this one. Thanks for the input. On Fri, Mar 5, 2010 at 5:37 AM, eric pareja wrote: > he could also opt to just make the modules, assuming he has the > sources in the usual place... > > # cd /usr/src/linux > # make modules > # make modules_install > > > On Thu, Mar 4

Re: [plug] Need help on OpenVPN

2010-03-04 Thread Tata Dano
Ok thanks. I will try this one. On Thu, Mar 4, 2010 at 10:01 PM, fooler mail wrote: > On Thu, Mar 4, 2010 at 7:27 AM, Tata Dano wrote: > > [r...@myserver ~]# modprobe tun > > FATAL: Module tun not found. > > at root account run this command: > > # find / -name "tun.ko" > > if found then use ins

Re: [plug] Need help on OpenVPN

2010-03-04 Thread eric pareja
he could also opt to just make the modules, assuming he has the sources in the usual place... # cd /usr/src/linux # make modules # make modules_install On Thu, Mar 4, 2010 at 10:01 PM, fooler mail wrote: > On Thu, Mar 4, 2010 at 7:27 AM, Tata Dano wrote: >> [r...@myserver ~]# modprobe tun >> F

Re: [plug] Need help on OpenVPN

2010-03-04 Thread fooler mail
On Thu, Mar 4, 2010 at 7:27 AM, Tata Dano wrote: > [r...@myserver ~]# modprobe tun > FATAL: Module tun not found. at root account run this command: # find / -name "tun.ko" if found then use insmod /full/path/of/tun.ko otherwise you have to recompile your kernel to create that module or make

Re: [plug] Need help on OpenVPN

2010-03-03 Thread Tata Dano
> > When I do (2b) I got this error: > > [r...@myserver ~]# modprobe tun > FATAL: Could not load > /lib/modules/2.6.18-128.1.1.el5.028stab062.3PAE/modules.dep: No such file or > directory > > At first, it said that the directory did not exist and so I issued: mkdir /lib/modules/2.6.18-128.1.1.el5.

Re: [plug] Need help on OpenVPN

2010-03-03 Thread Tata Dano
> > > hi, > > the problem is that there is no "modules.dep" file in > /lib/modules/2.6.18-128.1.1.el5.028stab062.3PAE/ directory... modprobe > is using that file to load the correct path for whatever module you > are trying to load.. in your case tun.ko module.. > > we will going to manually load t

Re: [plug] Need help on OpenVPN

2010-03-03 Thread Tata Dano
On Wed, Mar 3, 2010 at 10:53 PM, eric pareja wrote: > # depmod -a > > should do the trick. it will generate your modules.dep file. > > Thanks on this one. _ Philippine Linux Users' Group (PLUG) Mailing List http://lists.linux.org.ph/mailman/listinfo

Re: [plug] Need help on OpenVPN

2010-03-03 Thread Tata Dano
On Wed, Mar 3, 2010 at 10:15 PM, Holden Hao wrote: > > When I do (2b) I got this error: > > [r...@myserver ~]# modprobe tun > > FATAL: Could not load > > /lib/modules/2.6.18-128.1.1.el5.028stab062.3PAE/modules.dep: No such file > or > > directory > > Please help on this one. Thanks in advance. >

Re: [plug] Need help on OpenVPN

2010-03-03 Thread fooler mail
On Wed, Mar 3, 2010 at 10:53 PM, eric pareja wrote: > # depmod -a > > should do the trick. it will generate your modules.dep file. thanks eric.. i almost forgot that tool :-> fooler. _ Philippine Linux Users' Group (PLUG) Mailing List http://lists.

Re: [plug] Need help on OpenVPN

2010-03-03 Thread fooler mail
On Wed, Mar 3, 2010 at 9:54 PM, Tata Dano wrote: >> things to do on your side... >> >> 1. make sure /dev/net/tun file is existing.. if not instruction can be >> found inside INSTALL file as root account... >> >> TUN/TAP Driver Configuration: >> >> * Linux 2.4 or higher (with integrated TUN/TAP dri

Re: [plug] Need help on OpenVPN

2010-03-03 Thread eric pareja
# depmod -a should do the trick. it will generate your modules.dep file. On Wed, Mar 3, 2010 at 9:54 PM, Tata Dano wrote: >> things to do on your side... >> >> 1. make sure /dev/net/tun file is existing.. if not instruction can be >> found inside INSTALL file as root account... >> >> TUN/TAP Dri

Re: [plug] Need help on OpenVPN

2010-03-03 Thread Holden Hao
> When I do (2b) I got this error: > [r...@myserver ~]# modprobe tun > FATAL: Could not load > /lib/modules/2.6.18-128.1.1.el5.028stab062.3PAE/modules.dep: No such file or > directory > Please help on this one. Thanks in advance. Why not just use IPCop? It can do point to point and road warrior V

Re: [plug] Need help on OpenVPN

2010-03-03 Thread Tata Dano
> > things to do on your side... > > 1. make sure /dev/net/tun file is existing.. if not instruction can be > found inside INSTALL file as root account... > > TUN/TAP Driver Configuration: > > * Linux 2.4 or higher (with integrated TUN/TAP driver): > > (1) make device node: mknod /dev/net

Re: [plug] Need help on OpenVPN

2010-03-02 Thread jan gestre
Your setup is an example of road warrior. On Wed, Mar 3, 2010 at 7:23 AM, Tata Dano wrote: > Thanks on this one. Need to test this configuration if it works. For the > port settings, I only set it up for only one port because only one client is > accessing it. Btw, what do you mean by road warri

Re: [plug] Need help on OpenVPN

2010-03-02 Thread Tata Dano
Thanks on this one. Need to test this configuration if it works. For the port settings, I only set it up for only one port because only one client is accessing it. Btw, what do you mean by road warrior setup? On Mon, Mar 1, 2010 at 10:15 PM, jan gestre wrote: > If this is a site to site VPN tunn

Re: [plug] Need help on OpenVPN

2010-03-02 Thread Tata Dano
Thank you so much for the input I will check this one today. On Tue, Mar 2, 2010 at 11:56 PM, fooler mail wrote: > On Mon, Mar 1, 2010 at 3:15 PM, Tata Dano wrote: > > > > Mon Mar 1 00:03:12 2010 Note: Cannot open TUN/TAP dev /dev/net/tun: > > Permission denied (errno=13) > > hi, > > i downloa

Re: [plug] Need help on OpenVPN

2010-03-02 Thread fooler mail
On Mon, Mar 1, 2010 at 3:15 PM, Tata Dano wrote: > > Mon Mar  1 00:03:12 2010 Note: Cannot open TUN/TAP dev /dev/net/tun: > Permission denied (errno=13) hi, i downloaded openvpn version 2.1.1 today and check your error above error above can be found at openvpndir/tun.c line 1106... it attemp

Re: [plug] Need help on OpenVPN

2010-03-01 Thread Mark David Dumlao
On Tue, Mar 2, 2010 at 9:58 AM, jan gestre wrote: > Hi Pete, > Long time, no see, anyways, I've several site to site VPN tunnel and need > not configure anything on the client whether it's windows or linux, the only > time I have to install and configure a VPN client is if the user is a road > war

Re: [plug] Need help on OpenVPN

2010-03-01 Thread jan gestre
Hi Pete, Long time, no see, anyways, I've several site to site VPN tunnel and need not configure anything on the client whether it's windows or linux, the only time I have to install and configure a VPN client is if the user is a road warrior. Regards, Jan On Mon, Mar 1, 2010 at 11:03 PM, Peter

Re: [plug] Need help on OpenVPN

2010-03-01 Thread Peter Santiago
jan gestre wrote: If this is a site to site VPN tunnel then you don't have to configure window clients, if not then you have to set up the certificates, pretty easy, also if this is a road warrior setup, you need to configure your firewall in such a way that each client will use a different port,

Re: [plug] Need help on OpenVPN

2010-03-01 Thread jan gestre
If this is a site to site VPN tunnel then you don't have to configure window clients, if not then you have to set up the certificates, pretty easy, also if this is a road warrior setup, you need to configure your firewall in such a way that each client will use a different port, if not only one cli

Re: [plug] Need help on OpenVPN

2010-02-28 Thread Tata Dano
Hi, here is another inquiry on this one. I already followed the steps and how-to but when I execute: # openvpn --config server.conf I got this error: Mon Mar 1 00:03:12 2010 OpenVPN 2.1.1 i686-pc-linux-gnu [SSL] [EPOLL] built on Feb 25 2010 Mon Mar 1 00:03:12 2010 NOTE: the current --script-s

Re: [plug] Need help on OpenVPN

2010-02-28 Thread Tata Dano
One more inquiry, is it possible to connect openvpn on windows machine without any additional installation of openvpn client? If so, then how can this be done? A million thanks in advance. On Mon, Mar 1, 2010 at 11:02 AM, Tata Dano wrote: > Hi Ronald, > > Thanks on this one. I recently found ou

Re: [plug] Need help on OpenVPN

2010-02-28 Thread Tata Dano
Hi Ronald, Thanks on this one. I recently found out that the easy-rsa directory is included if you install via tar.gz but not on via yum install. On Thu, Feb 25, 2010 at 6:30 PM, Ronald Artos wrote: > here's a good guide.. > > http://hardc0l2e.wordpress.com/2009/04/30/easy-openvpn-server-in-cen

Re: [plug] Need help on OpenVPN

2010-02-27 Thread Ronald Artos
the binary/rpm package includes this easy-rsa... check it via rpm -ql it is somewhere in /usr/share.. On Thu, Feb 25, 2010 at 6:49 PM, Tata Dano wrote: > I recently discovered this one..at first I installed openvpn via yum that's > why it did not generate or include easy-rsa directory. For

Re: [plug] Need help on OpenVPN

2010-02-25 Thread Ronald Artos
here's a good guide.. http://hardc0l2e.wordpress.com/2009/04/30/easy-openvpn-server-in-centos-53/ On Thu, Feb 25, 2010 at 5:58 PM, Tata Dano wrote: > I updated openvpn..but it still the same I could not locate this > directory: > > */usr/share/doc/openvpn-2.1.1/easy-rsa/* > > [r...@tatadano ope

Re: [plug] Need help on OpenVPN

2010-02-25 Thread Tata Dano
I recently discovered this one..at first I installed openvpn via yum that's why it did not generate or include easy-rsa directory. For now, I build it via source and now I got the directory. On Thu, Feb 25, 2010 at 5:58 PM, Tata Dano wrote: > I updated openvpn..but it still the same I could not

Re: [plug] Need help on OpenVPN

2010-02-25 Thread Tata Dano
I updated openvpn..but it still the same I could not locate this directory: */usr/share/doc/openvpn-2.1.1/easy-rsa/* [r...@tatadano openvpn-2.1.1]# pwd /usr/share/doc/openvpn-2.1.1 [r...@tatadano openvpn-2.1.1]# ls AUTHORS COPYINGINSTALL sample-config-files auth-pam.txt COPYRIGHT.

Re: [plug] Need help on OpenVPN

2010-02-25 Thread Tata Dano
Hi Ian, Thanks for the info. On Thu, Feb 25, 2010 at 3:13 PM, Ian Dexter R. Marquez wrote: > http://tinyurl.com/ykyhxlh ;) > > On Thu, Feb 25, 2010 at 15:05, Tata Dano wrote: > > Hello, > > Can you help me find a good resource on OpenVPN? I will installing it on > > CentOS 5.3 server but after

Re: [plug] Need help on OpenVPN

2010-02-24 Thread Ian Dexter R. Marquez
http://tinyurl.com/ykyhxlh ;) On Thu, Feb 25, 2010 at 15:05, Tata Dano wrote: > Hello, > Can you help me find a good resource on OpenVPN? I will installing it on > CentOS 5.3 server but after the installation if could not find the rsa-key > directory. > > Thanks a million in advance. > All the be

[plug] Need help on OpenVPN

2010-02-24 Thread Tata Dano
Hello, Can you help me find a good resource on OpenVPN? I will installing it on CentOS 5.3 server but after the installation if could not find the rsa-key directory. Thanks a million in advance. All the best, -- Tata Dano Linux Registered User #383849 http://zimaso.sourceforge.net/ http://imma