Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How do I install a OpenVPN in CentOS? Post 302785655 by TheCorporation on Tuesday 26th of March 2013 06:00:43 AM
Old 03-26-2013
How do I install a OpenVPN in CentOS?

Hi,

I have looked at different tutorials across the net on how to install a OpenVPN in Linux CentOS but I can't understand any of the instructions given.

So I typed myself some step-by-step instructions that I do understand. This is the type of simplified instructions I do understand.......

Step 1. Go into the Terminal

Step 2. Type "su" (without the quotes) then press ENTER

Step 3. Type your password (you will not be able to see it while you type) then press ENTER

Step 4. Type "yum" (without the quotes) then press ENTER

My question is what is step 5,6,7, etc?

Any help will be much appreciated as I'm really struggling to work Linux out ( I've been a Window user for 8 years.)
 

10 More Discussions You Might Find Interesting

1. Linux

X-Windows,Install Shield on CentOS

I have a fresh install of CentOS 5.2. I need to install a commercial package that uses InstallShield. Every time I run the installation program, it gives me an error that tells me it can't open an xwindows window. The system autoboots into Gnome. I open a new xterm window by typing xterm in a... (0 Replies)
Discussion started by: jeffreywpearson
0 Replies

2. Linux

Centos 5 install. Partion order

I can't control the partion order during install. For example i need. hda5 /var 1GB hda6 /opt 2GB I created them in such order but OS adjust them to hda5 /opt 2GB hda6 /var 1GB It is frustrating during install, I pretty sure I can order the partion as i like... (0 Replies)
Discussion started by: honglus
0 Replies

3. Red Hat

Questions About RHEL 6, CentOS 5.5 download and install

Hi, I have some questions about RHEL and CentOS download and installation. (1) Is RHEL6.0 x86_64 beta downloaded from Red Hat site working fine? (2) Where to download CentOS 5.5 DVD iso without using BitTorrent? (3) What are the differences between these two images - CentOS 5.5 i386 and... (6 Replies)
Discussion started by: aixlover
6 Replies

4. UNIX for Dummies Questions & Answers

Install vim on centos

i typed this command it shows -bash: up2date: command not found how to install it? how to copy the code to the VI editor when i access my server with secureCRT (1 Reply)
Discussion started by: runeveryday
1 Replies

5. Linux

How to Install and configure Jira And Confulence in Centos 5.5

Please Give me Step by step Instruction Or Video Tutorial For installing and configuring Jira And Confulence in Centos 5.5 , What are the Requirements For Installing and Configuring , wht are the Softwares need for it to work perfectly ... pls reply thanks in advance .... :wall: (1 Reply)
Discussion started by: babinlonston
1 Replies

6. Red Hat

How to install centos 5.5 using Raid In Virtualbox

Im have Oracle Virtualbox and vmware workstation How can i Add2 HDD in Vmware or Virtualbox and Install centos Using Raid Configuration Please give me Tutorial step by Step .. Thanks in Advance In Virtualbox there is SAS Hard disk So shall i Use it ? (3 Replies)
Discussion started by: babinlonston
3 Replies

7. Red Hat

During install error centos 5.8

Hi i am getting the following error while i try to install OS from my repo " unable to read group information from repositories this is a problem with the generation of your install tree " guide me any one (3 Replies)
Discussion started by: venikathir
3 Replies

8. UNIX for Dummies Questions & Answers

Can someone Help install CentOS

Hello, I'm new to this Unix OS. I need help and guide to how to install this: Server requirements / Installation OS: CentOS6 / EXT4 SWAP: 16 GB (system level) Just show me the walk through by using centos manual install. Thanks, mimic (1 Reply)
Discussion started by: mimic51
1 Replies

9. Red Hat

How to install Xrdp in Centos.?

Hi, I want to install the Xrdp in Centos for taking remote session of centos server from Windows machine. could you please help me for this ?? (6 Replies)
Discussion started by: purushottamaher
6 Replies

10. Red Hat

Cannot see disks while tryin to install CentOS 7

Cannot see disks while tryin to install CentOS 7 at IBM X3550 M3 It shows that no disk present insystem, though 2 disks inserted (using RAID controller). is ther e anything should be done so CentOS become to see disks? (6 Replies)
Discussion started by: nypreH
6 Replies
SHOREWALL-RTRULES(5)						  [FIXME: manual]					      SHOREWALL-RTRULES(5)

NAME
rtrules - Shorewall Routing Rules file SYNOPSIS
/etc/shorewall/rtrules DESCRIPTION
Entries in this file cause traffic to be routed to one of the providers listed in shorewall-providers[1](5). The columns in the file are as follows. SOURCE (Optional) - {-|[&]interface|address|interface:address} An ip address (network or host) that matches the source IP address in a packet. May also be specified as an interface name optionally followed by ":" and an address. If the device lo is specified, the packet must originate from the firewall itself. Beginning with Shorewall 4.5.0, you may specify &interface in this column to indicate that the source is the primary IP address of the named interface. DEST (Optional) - {-|address} An ip address (network or host) that matches the destination IP address in a packet. If you choose to omit either SOURCE or DEST, place "-" in that column. Note that you may not omit both SOURCE and DEST. PROVIDER - {provider-name|provider-number|main} The provider to route the traffic through. May be expressed either as the provider name or the provider number. May also be main or 254 for the main routing table. This can be used in combination with VPN tunnels, see example 2 below. PRIORITY - priority The rule's numeric priority which determines the order in which the rules are processed. Rules with equal priority are applied in the order in which they appear in the file. 1000-1999 Before Shorewall-generated 'MARK' rules 11000-11999 After 'MARK' rules but before Shorewall-generated rules for ISP interfaces. 26000-26999 After ISP interface rules but before 'default' rule. MARK - {-|mark[/mask]} Optional -- added in Shorewall 4.4.25. For this rule to be applied to a packet, the packet's mark value must match the mark when logically anded with the mask. If a mask is not supplied, Shorewall supplies a suitable provider mask. EXAMPLES
Example 1: You want all traffic coming in on eth1 to be routed to the ISP1 provider. #SOURCE DEST PROVIDER PRIORITY MASK eth1 - ISP1 1000 Example 2: You use OpenVPN (routed setup /tunX) in combination with multiple providers. In this case you have to set up a rule to ensure that the OpenVPN traffic is routed back through the tunX interface(s) rather than through any of the providers. 10.8.0.0/24 is the subnet chosen in your OpenVPN configuration (server 10.8.0.0 255.255.255.0). #SOURCE DEST PROVIDER PRIORITY MASK - 10.8.0.0/24 main 1000 FILES
/etc/shorewall/rtrules SEE ALSO
http://shorewall.net/MultiISP.html http://shorewall.net/configuration_file_basics.htm#Pairs shorewall(8), shorewall-accounting(5), shorewall-actions(5), shorewall-blacklist(5), shorewall-hosts(5), shorewall_interfaces(5), shorewall-ipsets(5), shorewall-maclist(5), shorewall-masq(5), shorewall-nat(5), shorewall-netmap(5), shorewall-params(5), shorewall-policy(5), shorewall-providers(5), shorewall-proxyarp(5), shorewall-routestopped(5), shorewall-rules(5), shorewall.conf(5), shorewall-secmarks(5), shorewall-tcclasses(5), shorewall-tcdevices(5), shorewall-tcrules(5), shorewall-tos(5), shorewall-tunnels(5), shorewall-zones(5) NOTES
1. shorewall-providers http://www.shorewall.net/manpages/shorewall-providers.html [FIXME: source] 06/28/2012 SHOREWALL-RTRULES(5)
All times are GMT -4. The time now is 12:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy