From RHAYDEN at CERNER.COM Mon Jun 9 20:21:23 2008 From: RHAYDEN at CERNER.COM (Hayden,Robert) Date: Mon, 9 Jun 2008 15:21:23 -0500 Subject: BNX2 v1.7.1d-1 with Red Hat 5.2 Fails to Install Message-ID: Looking to see if anyone has ran into this issue before I contact HP Support. I am working on getting Red Hat 5.2 (kernel 2.6.18-92.el5) installed on a HP BL460c blade and ran into an issue with the installation of the HP PSP 8.0. In particular, I cannot install the BNX2 driver due to what appears to be duplicated definitions within the build files. I have tried to download the latest BNX2 driver (1.7.1d.3-1) from HP support web site and it has the same issue when I manually attempt to install it. Searching Google did not turn up any solutions but I did have a hit on a Dell list server of a similar issue: http://lists.us.dell.com/pipermail/linux-poweredge/2008-May/036295.html Reviewing the header files, I do see duplicates in the bnx2.h and the kernel source headers for the variables mentioned below. I am guessing that some definitions were moved into the kernel headers and not eliminated from the BNX2 headers or vice versa. I do not have this issue with Red Hat 5.1 Issue from /var/log/hppldu.log: Preparing to install HP NC-Series Multifunction Driver for Linux v1.7.1d-1 This driver contains the driver for the HP NC-Series Multifunction Gigabit Ethernet NICs running under Linux. + umask 022 + cd /usr/src/redhat/BUILD + cd /usr/src/redhat/BUILD + rm -rf bnx2-1.7.1d + /usr/bin/bzip2 -dc /usr/src/redhat/SOURCES/bnx2-1.7.1d.tar.bz2 + tar -xvvf - + STATUS=0 + '[' 0 -ne 0 ']' + cd bnx2-1.7.1d ++ /usr/bin/id -u + '[' 0 = 0 ']' + /bin/chown -Rhf root . ++ /usr/bin/id -u + '[' 0 = 0 ']' + /bin/chgrp -Rhf root . + /bin/chmod -Rf a+rX,u+w,g-w,o-w . + exit 0 + umask 022 + cd /usr/src/redhat/BUILD + cd bnx2-1.7.1d + value= + '[' -z '' ']' ++ uname -r + KVER=2.6.18-92.el5 + make KVER=2.6.18-92.el5 In file included from /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.c:74: /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:261: error: redefinition of ?skb_transport_offset? include/linux/skbuff.h:1006: error: previous definition of ?skb_transport_offset? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:266: error: redefinition of ?ip_hdr? include/linux/ip.h:109: error: previous definition of ?ip_hdr? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:271: error: redefinition of ?ip_hdrlen? include/net/ip.h:48: error: previous definition of ?ip_hdrlen? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:276: error: redefinition of ?tcp_hdr? include/linux/tcp.h:169: error: previous definition of ?tcp_hdr? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:281: error: redefinition of ?tcp_optlen? include/linux/tcp.h:179: error: previous definition of ?tcp_optlen? was here make[2]: *** [/usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.o] Error 1 make[1]: *** [_module_/usr/src/redhat/BUILD/bnx2-1.7.1d] Error 2 make: *** [default] Error 2 error: Bad exit status from /var/tmp/rpm-tmp.16667 (%build) Bad exit status from /var/tmp/rpm-tmp.16667 (%build) A command, "rpmbuild -bb --quiet --clean --rmsource ${RPMDIR}/SPECS/bnx2.spec", necessary to complete the installation of this component failed with error code 1: "Operation not permitted" Installation of this component FAILED. Robert ---------------------------------------------------------------------- CONFIDENTIALITY NOTICE This message and any included attachments are from Cerner Corporation and are intended only for the addressee. The information contained in this message is confidential and may constitute inside or non-public information under international, federal, or state securities laws. Unauthorized forwarding, printing, copying, distribution, or use of such information is strictly prohibited and may be unlawful. If you are not the addressee, please promptly delete this message and notify the sender of the delivery error by e-mail or you may call Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1) (816)221-1024. -------------- next part -------------- An HTML attachment was scrubbed... URL: From RHAYDEN at CERNER.COM Mon Jun 9 21:07:06 2008 From: RHAYDEN at CERNER.COM (Hayden,Robert) Date: Mon, 9 Jun 2008 16:07:06 -0500 Subject: BNX2 v1.7.1d-1 with Red Hat 5.2 Fails to Install In-Reply-To: References: Message-ID: Upon further investigation, I am seeing changes in the kernel-devel-2.6.18-92 package (compared to 2.6.18-55 version) to introduce one of the parameters, skb_transport_offset. From the bnx2 source, I see the parameters that failed listed in bnx2.h file in the below IF statement. What I don't understand, due mainly to being new at this, is why the IF statement is not working and dropping the bnx compiler into setting these parameters. My assumption is that the LINUX_VERSION_CODE variable for kernel 2.6.18-92 is 0x020618 which should be greater than 0x020616. ======== begin cut bnx2.h =========== #if (LINUX_VERSION_CODE < 0x020616) static inline int skb_transport_offset(const struct sk_buff *skb) { return (int) (skb->h.raw - skb->data); } static inline struct iphdr *ip_hdr(const struct sk_buff *skb) { return skb->nh.iph; } static inline unsigned int ip_hdrlen(const struct sk_buff *skb) { return ip_hdr(skb)->ihl * 4; } static inline struct tcphdr *tcp_hdr(const struct sk_buff *skb) { return skb->h.th; } static inline unsigned int tcp_optlen(const struct sk_buff *skb) { return (tcp_hdr(skb)->doff - 5) * 4; } #endif ===============end cut here bnx2.h ===================== Robert Hayden | Technology Architect | Cerner Corporation | 816.201.4068 | rhayden at cerner.com | www.cerner.com From: redhat-install-list-bounces at redhat.com [mailto:redhat-install-list-bounces at redhat.com] On Behalf Of Hayden,Robert Sent: Monday, June 09, 2008 3:21 PM To: redhat-install-list at redhat.com Subject: BNX2 v1.7.1d-1 with Red Hat 5.2 Fails to Install Looking to see if anyone has ran into this issue before I contact HP Support. I am working on getting Red Hat 5.2 (kernel 2.6.18-92.el5) installed on a HP BL460c blade and ran into an issue with the installation of the HP PSP 8.0. In particular, I cannot install the BNX2 driver due to what appears to be duplicated definitions within the build files. I have tried to download the latest BNX2 driver (1.7.1d.3-1) from HP support web site and it has the same issue when I manually attempt to install it. Searching Google did not turn up any solutions but I did have a hit on a Dell list server of a similar issue: http://lists.us.dell.com/pipermail/linux-poweredge/2008-May/036295.html Reviewing the header files, I do see duplicates in the bnx2.h and the kernel source headers for the variables mentioned below. I am guessing that some definitions were moved into the kernel headers and not eliminated from the BNX2 headers or vice versa. I do not have this issue with Red Hat 5.1 Issue from /var/log/hppldu.log: Preparing to install HP NC-Series Multifunction Driver for Linux v1.7.1d-1 This driver contains the driver for the HP NC-Series Multifunction Gigabit Ethernet NICs running under Linux. + umask 022 + cd /usr/src/redhat/BUILD + cd /usr/src/redhat/BUILD + rm -rf bnx2-1.7.1d + /usr/bin/bzip2 -dc /usr/src/redhat/SOURCES/bnx2-1.7.1d.tar.bz2 + tar -xvvf - + STATUS=0 + '[' 0 -ne 0 ']' + cd bnx2-1.7.1d ++ /usr/bin/id -u + '[' 0 = 0 ']' + /bin/chown -Rhf root . ++ /usr/bin/id -u + '[' 0 = 0 ']' + /bin/chgrp -Rhf root . + /bin/chmod -Rf a+rX,u+w,g-w,o-w . + exit 0 + umask 022 + cd /usr/src/redhat/BUILD + cd bnx2-1.7.1d + value= + '[' -z '' ']' ++ uname -r + KVER=2.6.18-92.el5 + make KVER=2.6.18-92.el5 In file included from /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.c:74: /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:261: error: redefinition of ?skb_transport_offset? include/linux/skbuff.h:1006: error: previous definition of ?skb_transport_offset? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:266: error: redefinition of ?ip_hdr? include/linux/ip.h:109: error: previous definition of ?ip_hdr? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:271: error: redefinition of ?ip_hdrlen? include/net/ip.h:48: error: previous definition of ?ip_hdrlen? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:276: error: redefinition of ?tcp_hdr? include/linux/tcp.h:169: error: previous definition of ?tcp_hdr? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:281: error: redefinition of ?tcp_optlen? include/linux/tcp.h:179: error: previous definition of ?tcp_optlen? was here make[2]: *** [/usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.o] Error 1 make[1]: *** [_module_/usr/src/redhat/BUILD/bnx2-1.7.1d] Error 2 make: *** [default] Error 2 error: Bad exit status from /var/tmp/rpm-tmp.16667 (%build) Bad exit status from /var/tmp/rpm-tmp.16667 (%build) A command, "rpmbuild -bb --quiet --clean --rmsource ${RPMDIR}/SPECS/bnx2.spec", necessary to complete the installation of this component failed with error code 1: "Operation not permitted" Installation of this component FAILED. Robert ________________________________ CONFIDENTIALITY NOTICE This message and any included attachments are from Cerner Corporation and are intended only for the addressee. The information contained in this message is confidential and may constitute inside or non-public information under international, federal, or state securities laws. Unauthorized forwarding, printing, copying, distribution, or use of such information is strictly prohibited and may be unlawful. If you are not the addressee, please promptly delete this message and notify the sender of the delivery error by e-mail or you may call Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1) (816)221-1024. -------------- next part -------------- An HTML attachment was scrubbed... URL: From RHAYDEN at CERNER.COM Mon Jun 9 21:23:02 2008 From: RHAYDEN at CERNER.COM (Hayden,Robert) Date: Mon, 9 Jun 2008 16:23:02 -0500 Subject: BNX2 v1.7.1d-1 with Red Hat 5.2 Fails to Install In-Reply-To: References: Message-ID: Following the trail some more.... LINUX_VERSION_CODE is defined in /usr/include/linux/version.h ==== begin cut here ===== #define LINUX_VERSION_CODE 132626 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) #define RHEL_MAJOR 5 #define RHEL_MINOR 2 #define RHEL_RELEASE_CODE 1282 #define RHEL_RELEASE_VERSION(a,b) (((a) << 8) + (b)) ====== end cut here ========= If you convert 132626 to Hex, then the value is 0x020612. This is less than 0x020616 and hence why the bnx2 compile is falling into the IF statement. I guess I am going to have to contact HP support and have them duke it out with Red Hat to determine if the kernel-devel change between 5.1 and 5.2 is wrong or if the bnx2 header file is wrong. Thanks Robert From: redhat-install-list-bounces at redhat.com [mailto:redhat-install-list-bounces at redhat.com] On Behalf Of Hayden,Robert Sent: Monday, June 09, 2008 4:07 PM To: Redhat-install-list Subject: RE: BNX2 v1.7.1d-1 with Red Hat 5.2 Fails to Install Upon further investigation, I am seeing changes in the kernel-devel-2.6.18-92 package (compared to 2.6.18-55 version) to introduce one of the parameters, skb_transport_offset. From the bnx2 source, I see the parameters that failed listed in bnx2.h file in the below IF statement. What I don't understand, due mainly to being new at this, is why the IF statement is not working and dropping the bnx compiler into setting these parameters. My assumption is that the LINUX_VERSION_CODE variable for kernel 2.6.18-92 is 0x020618 which should be greater than 0x020616. ======== begin cut bnx2.h =========== #if (LINUX_VERSION_CODE < 0x020616) static inline int skb_transport_offset(const struct sk_buff *skb) { return (int) (skb->h.raw - skb->data); } static inline struct iphdr *ip_hdr(const struct sk_buff *skb) { return skb->nh.iph; } static inline unsigned int ip_hdrlen(const struct sk_buff *skb) { return ip_hdr(skb)->ihl * 4; } static inline struct tcphdr *tcp_hdr(const struct sk_buff *skb) { return skb->h.th; } static inline unsigned int tcp_optlen(const struct sk_buff *skb) { return (tcp_hdr(skb)->doff - 5) * 4; } #endif ===============end cut here bnx2.h ===================== From: redhat-install-list-bounces at redhat.com [mailto:redhat-install-list-bounces at redhat.com] On Behalf Of Hayden,Robert Sent: Monday, June 09, 2008 3:21 PM To: redhat-install-list at redhat.com Subject: BNX2 v1.7.1d-1 with Red Hat 5.2 Fails to Install Looking to see if anyone has ran into this issue before I contact HP Support. I am working on getting Red Hat 5.2 (kernel 2.6.18-92.el5) installed on a HP BL460c blade and ran into an issue with the installation of the HP PSP 8.0. In particular, I cannot install the BNX2 driver due to what appears to be duplicated definitions within the build files. I have tried to download the latest BNX2 driver (1.7.1d.3-1) from HP support web site and it has the same issue when I manually attempt to install it. Searching Google did not turn up any solutions but I did have a hit on a Dell list server of a similar issue: http://lists.us.dell.com/pipermail/linux-poweredge/2008-May/036295.html Reviewing the header files, I do see duplicates in the bnx2.h and the kernel source headers for the variables mentioned below. I am guessing that some definitions were moved into the kernel headers and not eliminated from the BNX2 headers or vice versa. I do not have this issue with Red Hat 5.1 Issue from /var/log/hppldu.log: Preparing to install HP NC-Series Multifunction Driver for Linux v1.7.1d-1 This driver contains the driver for the HP NC-Series Multifunction Gigabit Ethernet NICs running under Linux. + umask 022 + cd /usr/src/redhat/BUILD + cd /usr/src/redhat/BUILD + rm -rf bnx2-1.7.1d + /usr/bin/bzip2 -dc /usr/src/redhat/SOURCES/bnx2-1.7.1d.tar.bz2 + tar -xvvf - + STATUS=0 + '[' 0 -ne 0 ']' + cd bnx2-1.7.1d ++ /usr/bin/id -u + '[' 0 = 0 ']' + /bin/chown -Rhf root . ++ /usr/bin/id -u + '[' 0 = 0 ']' + /bin/chgrp -Rhf root . + /bin/chmod -Rf a+rX,u+w,g-w,o-w . + exit 0 + umask 022 + cd /usr/src/redhat/BUILD + cd bnx2-1.7.1d + value= + '[' -z '' ']' ++ uname -r + KVER=2.6.18-92.el5 + make KVER=2.6.18-92.el5 In file included from /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.c:74: /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:261: error: redefinition of ?skb_transport_offset? include/linux/skbuff.h:1006: error: previous definition of ?skb_transport_offset? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:266: error: redefinition of ?ip_hdr? include/linux/ip.h:109: error: previous definition of ?ip_hdr? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:271: error: redefinition of ?ip_hdrlen? include/net/ip.h:48: error: previous definition of ?ip_hdrlen? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:276: error: redefinition of ?tcp_hdr? include/linux/tcp.h:169: error: previous definition of ?tcp_hdr? was here /usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.h:281: error: redefinition of ?tcp_optlen? include/linux/tcp.h:179: error: previous definition of ?tcp_optlen? was here make[2]: *** [/usr/src/redhat/BUILD/bnx2-1.7.1d/bnx2.o] Error 1 make[1]: *** [_module_/usr/src/redhat/BUILD/bnx2-1.7.1d] Error 2 make: *** [default] Error 2 error: Bad exit status from /var/tmp/rpm-tmp.16667 (%build) Bad exit status from /var/tmp/rpm-tmp.16667 (%build) A command, "rpmbuild -bb --quiet --clean --rmsource ${RPMDIR}/SPECS/bnx2.spec", necessary to complete the installation of this component failed with error code 1: "Operation not permitted" Installation of this component FAILED. Robert ________________________________ CONFIDENTIALITY NOTICE This message and any included attachments are from Cerner Corporation and are intended only for the addressee. The information contained in this message is confidential and may constitute inside or non-public information under international, federal, or state securities laws. Unauthorized forwarding, printing, copying, distribution, or use of such information is strictly prohibited and may be unlawful. If you are not the addressee, please promptly delete this message and notify the sender of the delivery error by e-mail or you may call Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1) (816)221-1024. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mccarty at yournetguard.com Fri Jun 13 21:23:20 2008 From: mccarty at yournetguard.com (Ronald McCarty) Date: Fri, 13 Jun 2008 16:23:20 -0500 Subject: Adding disk space to Red Hat 5.1 Virtual Guest Message-ID: I'm having an issue getting a Red Hat 5.1 guest virtual machine to be recognized at boot up of the virtual machine. The virtual machine and hypervisor are running on a Dell 1850. I've added the disk to the xm config file with: disk = [ "tap:aio:/var/lib/xen/images/issuer1-test.img,xvda,w", "tap:io:/var/lib/xen/images/issuer1-log-test.img,xvdb,w" ] where issuer1-log is the new file being used as the disk image. I create this file in the /var/lib/xen/images/ directory with: dd if=/dev/zero of=issuer1-log-test.img bs=1M count=30 Unfortunately, after a xm shutdown issuer1-test and an xm create issuer1-test, the xvdb device is not recognized on the guest: [root at issuer1-test ~]# dmesg | grep xvd xvda: xvda1 xvda2 EXT3 FS on xvda1, internal journal SELinux: initialized (dev xvda1, type ext3), uses xattr [root at issuer1-test ~]# Interestingly enough this same process works on some white box hardware. Any suggestions? From bwnayak at yahoo.com Sun Jun 29 06:24:32 2008 From: bwnayak at yahoo.com (Biswajit Nayak) Date: Sat, 28 Jun 2008 23:24:32 -0700 (PDT) Subject: Where do i get VPN server on RHEL 4 In-Reply-To: Message-ID: <141401.30664.qm@web30703.mail.mud.yahoo.com> Hi All, ?? I want to install VPN server on my RHEL 4. I appreciate if any pointers to any open source software is available. Thanks BN --- On Wed, 5/14/08, obed wrote: From: obed Subject: Re: Unable to ping RHEL 5 server over VPN To: "Getting started with Red Hat Linux" Date: Wednesday, May 14, 2008, 9:05 AM Could you explain us how is you network schema, the IP addresses, the tunnel IP's 2008/5/14 John Dunn : > I am unable to ping my RHEL 5 server over VPN > > I can ping it on the LAN and I can ping our other Unix servers over the VPN. > > Is there some configuration I have missed on the RHEL 5 boxes? > > > > John Dunn > > Product Consultant > > Sefas Innovation Limited > > Direct Dial + 44 (0) 117 373 6122 > > www.sefas.com > > Sefas Innovation Ltd, CityPoint, Temple Gate, Bristol BS1 6PL, UK. Tel: +44 > (0) 117 373 6114 Fax: +44 (0) 117 373 6115 > > Sefas Innovation Limited. Registered No: 3769761 England. Registered > Office: One New Street, Wells, Somerset, BA5 2LA, United Kingdom. VAT > Registration No: GB 741 5377 32 > > Unless stated to be non-confidential, this email and any attachments are > private and confidential and are for the addressee only. Sefas monitors > e-mails to ensure its systems operate effectively and to minimize the risk > of viruses. Whilst Sefas has taken reasonable steps to scan this email, it > does not accept liability for any virus that may be contained in it. > > Internet communications are not 100% secure and as such Sefas is not > responsible for their abuse by 3rd parties, nor for any alteration or > corruption in transmission. > > > > _______________________________________________ > Redhat-install-list mailing list > Redhat-install-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-install-list > To Unsubscribe Go To ABOVE URL or send a message to: > redhat-install-list-request at redhat.com > Subject: unsubscribe > -- obed.org.mx _______________________________________________ Redhat-install-list mailing list Redhat-install-list at redhat.com https://www.redhat.com/mailman/listinfo/redhat-install-list To Unsubscribe Go To ABOVE URL or send a message to: redhat-install-list-request at redhat.com Subject: unsubscribe -------------- next part -------------- An HTML attachment was scrubbed... URL: From karlp at ourldsfamily.com Sun Jun 29 06:30:30 2008 From: karlp at ourldsfamily.com (Karl Pearson) Date: Sun, 29 Jun 2008 00:30:30 -0600 (MDT) Subject: Where do i get VPN server on RHEL 4 In-Reply-To: <141401.30664.qm@web30703.mail.mud.yahoo.com> References: <141401.30664.qm@web30703.mail.mud.yahoo.com> Message-ID: <091c443ef6caba3652034f9b47a3595d.squirrel@webmail.ourldsfamily.com> On Sun, June 29, 2008 12:24 am, Biswajit Nayak wrote: > Hi All, > ?? I want to install VPN server on my RHEL 4. I appreciate if any pointers to > any open source software is available. > > Thanks > BN > Lookup OpenVPN with google, or just type yum install openvpn and see what you get. Hope that helps Karl > --- On Wed, 5/14/08, obed wrote: > From: obed > Subject: Re: Unable to ping RHEL 5 server over VPN > To: "Getting started with Red Hat Linux" > Date: Wednesday, May 14, 2008, 9:05 AM > > Could you explain us how is you network schema, the IP addresses, the > tunnel IP's > > > 2008/5/14 John Dunn : >> I am unable to ping my RHEL 5 server over VPN >> >> I can ping it on the LAN and I can ping our other Unix servers over the > VPN. >> >> Is there some configuration I have missed on the RHEL 5 boxes? >> >> >> >> John Dunn >> >> Product Consultant >> >> Sefas Innovation Limited >> >> Direct Dial + 44 (0) 117 373 6122 >> >> www.sefas.com >> >> Sefas Innovation Ltd, CityPoint, Temple Gate, Bristol BS1 6PL, UK. Tel: > +44 >> (0) 117 373 6114 Fax: +44 (0) 117 373 6115 >> >> Sefas Innovation Limited. Registered No: 3769761 England. Registered >> Office: One New Street, Wells, Somerset, BA5 2LA, United Kingdom. VAT >> Registration No: GB 741 5377 32 >> >> Unless stated to be non-confidential, this email and any attachments are >> private and confidential and are for the addressee only. Sefas monitors >> e-mails to ensure its systems operate effectively and to minimize the risk >> of viruses. Whilst Sefas has taken reasonable steps to scan this email, it >> does not accept liability for any virus that may be contained in it. >> >> Internet communications are not 100% secure and as such Sefas is not >> responsible for their abuse by 3rd parties, nor for any alteration or >> corruption in transmission. >> >> >> >> _______________________________________________ >> Redhat-install-list mailing list >> Redhat-install-list at redhat.com >> https://www.redhat.com/mailman/listinfo/redhat-install-list >> To Unsubscribe Go To ABOVE URL or send a message to: >> redhat-install-list-request at redhat.com >> Subject: unsubscribe >> > > > > -- > > obed.org.mx > > _______________________________________________ > Redhat-install-list mailing list > Redhat-install-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-install-list > To Unsubscribe Go To ABOVE URL or send a message to: > redhat-install-list-request at redhat.com > Subject: unsubscribe > > > _______________________________________________ > Redhat-install-list mailing list > Redhat-install-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-install-list > To Unsubscribe Go To ABOVE URL or send a message to: > redhat-install-list-request at redhat.com > Subject: unsubscribe -- Karl L. Pearson karlp at ourldsfamily.com http://consulting.ourldsfamily.com --- My Thoughts on Terrorism In America right after 9/11/2001: http://www.ourldsfamily.com/wtc.shtml --- The world is a dangerous place to live... not because of the people who are evil, but because of the people who don't do anything about it. - Albert Einstein --- "To mess up your Linux PC, you have to really work at it; to mess up a microsoft PC you just have to work on it." --- From bwnayak at yahoo.com Sun Jun 29 16:29:41 2008 From: bwnayak at yahoo.com (Biswajit Nayak) Date: Sun, 29 Jun 2008 09:29:41 -0700 (PDT) Subject: How to start the openvpn client on windows In-Reply-To: <091c443ef6caba3652034f9b47a3595d.squirrel@webmail.ourldsfamily.com> Message-ID: <768601.49743.qm@web30705.mail.mud.yahoo.com> Hi All, ?? I have installed open vpn on linux machine and started the vpn server. It is running fine. Now I have installed open VPN on my windows m/c and try to run a quick test by following the link here. http://openvpn.net/index.php/documentation/miscellaneous/static-key-mini-howto.html However, I am stuck at running the client on windows. I am giving something like this. openvpn --config c:\\openvpn\\config\\client.ovpn Error: Options error: specify only one of --tls-server, --tls-client, or --secret Use --help for more information. Any pointers. Thanks Biswajit --- On Sat, 6/28/08, Karl Pearson wrote: From: Karl Pearson Subject: Re: Where do i get VPN server on RHEL 4 To: redhat-install-list at redhat.com Date: Saturday, June 28, 2008, 11:30 PM On Sun, June 29, 2008 12:24 am, Biswajit Nayak wrote: > Hi All, > I want to install VPN server on my RHEL 4. I appreciate if any pointers to > any open source software is available. > > Thanks > BN > Lookup OpenVPN with google, or just type yum install openvpn and see what you get. Hope that helps Karl > --- On Wed, 5/14/08, obed wrote: > From: obed > Subject: Re: Unable to ping RHEL 5 server over VPN > To: "Getting started with Red Hat Linux" > Date: Wednesday, May 14, 2008, 9:05 AM > > Could you explain us how is you network schema, the IP addresses, the > tunnel IP's > > > 2008/5/14 John Dunn : >> I am unable to ping my RHEL 5 server over VPN >> >> I can ping it on the LAN and I can ping our other Unix servers over the > VPN. >> >> Is there some configuration I have missed on the RHEL 5 boxes? >> >> >> >> John Dunn >> >> Product Consultant >> >> Sefas Innovation Limited >> >> Direct Dial + 44 (0) 117 373 6122 >> >> www.sefas.com >> >> Sefas Innovation Ltd, CityPoint, Temple Gate, Bristol BS1 6PL, UK. Tel: > +44 >> (0) 117 373 6114 Fax: +44 (0) 117 373 6115 >> >> Sefas Innovation Limited. Registered No: 3769761 England. Registered >> Office: One New Street, Wells, Somerset, BA5 2LA, United Kingdom. VAT >> Registration No: GB 741 5377 32 >> >> Unless stated to be non-confidential, this email and any attachments are >> private and confidential and are for the addressee only. Sefas monitors >> e-mails to ensure its systems operate effectively and to minimize the risk >> of viruses. Whilst Sefas has taken reasonable steps to scan this email, it >> does not accept liability for any virus that may be contained in it. >> >> Internet communications are not 100% secure and as such Sefas is not >> responsible for their abuse by 3rd parties, nor for any alteration or >> corruption in transmission. >> >> >> >> _______________________________________________ >> Redhat-install-list mailing list >> Redhat-install-list at redhat.com >> https://www.redhat.com/mailman/listinfo/redhat-install-list >> To Unsubscribe Go To ABOVE URL or send a message to: >> redhat-install-list-request at redhat.com >> Subject: unsubscribe >> > > > > -- > > obed.org.mx > > _______________________________________________ > Redhat-install-list mailing list > Redhat-install-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-install-list > To Unsubscribe Go To ABOVE URL or send a message to: > redhat-install-list-request at redhat.com > Subject: unsubscribe > > > _______________________________________________ > Redhat-install-list mailing list > Redhat-install-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-install-list > To Unsubscribe Go To ABOVE URL or send a message to: > redhat-install-list-request at redhat.com > Subject: unsubscribe -- Karl L. Pearson karlp at ourldsfamily.com http://consulting.ourldsfamily.com --- My Thoughts on Terrorism In America right after 9/11/2001: http://www.ourldsfamily.com/wtc.shtml --- The world is a dangerous place to live... not because of the people who are evil, but because of the people who don't do anything about it. - Albert Einstein --- "To mess up your Linux PC, you have to really work at it; to mess up a microsoft PC you just have to work on it." --- _______________________________________________ Redhat-install-list mailing list Redhat-install-list at redhat.com https://www.redhat.com/mailman/listinfo/redhat-install-list To Unsubscribe Go To ABOVE URL or send a message to: redhat-install-list-request at redhat.com Subject: unsubscribe -------------- next part -------------- An HTML attachment was scrubbed... URL: