红联Linux门户
Linux帮助

RH Linux 9下面的VPN Server架设指南

发布时间:2006-10-30 01:03:30来源:红联作者:tongxiaokun
  Server: Red Hat Linux 9 Kernel 2.6.10

  Client: Win2000 Pro/Server SP4,WinXP SP2

  Server所需要:

  www.kernel.org
  kernel: linux-2.6.10.tar.bz2

  http://www.polbox.com/h/hs001/
  kernel_patch: linux-2.6.10-mppe-mppc-1.2.patch.gz
  pppd: ppp-2.4.3.tar.gz
  pppd_patch: ppp-2.4.3-mppe-mppc-1.1.patch.gz
  pptpd: pptpd-1.2.3.tar.gz

  为了方便起见,可以把它们放在同一个目录下

  我不喜欢用RPM方式安装,所以都是用的源码方式编译安装
一、先给内核打补丁

# tar zjvf linux-2.6.10.tar.bz2
# gunzip linux-2.6.10-mppe-mppc-1.2.patch.gz
# patch -p0 -i linux-2.6.10-mppe-mppc-1.2.patch
# ln -s linux-2.6.10 linux
# cd linux
# make menuconfig
Device Drivers -> Networking Support->


  把 "PPP support" 编进内核,你也可作为模块编译。

PPP Support for async serial ports
PPP Support for sync tty ports
PPP Deflate compression
Microsoft PPP compression/encryption (MPPC/MPPE)"
Cryptographic options


  把 "Cryptographic API" 编进内核,你也可作为模块编译。确保SHA1 和 ARC4 支持已经选上:

SHA1 digest algorithm
ARC4 cipher algorithm


  保存配置文件,退出

  编译内核

  make all modules modules_install install

  修改/etc/modprobe.conf (2.4的Kernel请修改/etc/modules.conf)

  重启,进入2.6.10

二、安装PPP

  安装之前先用 rpm -qa |grep ppp 看一下是否系统有安装RH9自带的ppp-2.4.1-10

  如果有的话, 用 rpm -e 卸载先,可能还有依赖关系,依次卸载,如:

#rpm -e rp-pppoe-3.5-2
#rpm -e wvdial-1.53-9
#rpm -e ppp-2.4.1-10

# tar xzvf ppp-2.4.3.tar.gz
# gunzip ppp-2.4.3-mppe-mppc-1.1.patch
# patch -p0 -i ppp-2.4.3-mppe-mppc-1.1.patch
# cd ppp-2.4.3
# ./configure
# make; make install


  三、安装 pptpd


#tar xzvf pptpd-1.2.3.tar.gz
# ./configure
# make; make install


  相关的配置文件:

/etc/pptpd.conf
# pptpd的基本配置文件
/etc/ppp/options.pptpd
# VPN拨号选项
/etc/ppp/chap-secrets
# 用户名和密码信息
/etc/modules.conf
# 模块加载信息
(2.4的Kernel请修改/etc/modules.conf)

vi /etc/pptpd.confppp /usr/local/sbin/pppd
#指定pppd的路径
option /etc/ppp/options.pptpd
# 指定option 文件位置
localip 192.168.1.3
#同服务器的LAN地址
remoteip 192.168.1.230-239
#分配?客户端的ip


  本例范围从192.168.1.230到192.168.1.239。您也可以单独指定某个地址或者多段地址,用逗号隔开,如在192.168.1.230-239,192.168.1.254

vi /etc/ppp/options.pptpd

name *
lock
mtu 1450
mru 1450
proxyarp
auth
ipcp-accept-local
ipcp-accept-remote
lcp-echo-failure 3
lcp-echo-interval 5
deflate 0
# Handshake Auth Method
- 加密协议类型
+chap
+mschap-v2
# Data Encryption Methods
mppe required,stateless
其它详细说明请参见 man pppd
或者 man pptpd

vi /etc/ppp/chap-secrets
#client server Password IP Address
test * 12345 *


因为密码是明文显示的,最好能修改文件权限,使root作为owner和chmod 700

vi /etc/modules.conf
alias char-major-108 ppp_generic
alias /dev/ppp ppp_generic
alias tty-ldisc-3 ppp_async
alias tty-ldisc-14 ppp_synctty
alias ppp-compress-18 ppp_mppe_mppc
alias ppp-compress-21 bsd_comp
alias ppp-compress-24 ppp_deflate
alias ppp-compress-26 ppp_deflate


  重新启动

# reboot


  在我这里 alias ppp-compress-18 ppp_mppe_mppc 好像没用,只好手动加载:

# modprobe ppp_mppe_mppc


  确认内核支持

strings `which pppd`|grep -i mppe|wc --lines
30
###大于等于30就行#####
[strings `which pppd`|grep -i mppc|wc --lines
7
#### 不为 0 #####
dmesg | grep MPPE
MPPE/MPPC encryption/compression module registered


  启动pptpd

# /usr/local/sbin/pptpd
Mar 17 23:07:32 localhost pptpd[4471]:
MGR: Manager process started
Mar 17 23:07:32 localhost pptpd[4471]:
MGR: Maximum of 10 connections available


  设置客户端连接,“安全”里面选择自定义,如图所示,这里取决于你在option.pptpd里面的设置:

Mar 17 23:09:59 localhost pptpd[4473]:
CTRL: Client 192.168.1.136
control connection started
Mar 17 23:09:59 localhost pptpd[4473]:
CTRL: Starting call
(launching pppd, opening GRE)
Mar 17 23:09:59 localhost pppd[4474]:
pppd 2.4.3 started by root, uid 0
Mar 17 23:09:59 localhost pppd[4474]:
Using interface ppp0
Mar 17 23:09:59 localhost pppd[4474]:
Connect: ppp0 <--> /dev/pts/1
Mar 17 23:10:02 localhost pptpd[4473]:
CTRL: Ignored a SET LINK INFO
packet with real ACCMs!
Mar 17 23:10:02 localhost pppd[4474]:
MPPC/MPPE 128-bit stateless compression enabled
Mar 17 23:10:04 localhost pppd[4474]:
found interface eth0 for proxy arp
Mar 17 23:10:04 localhost pppd[4474]:
local IP address 192.168.1.3
Mar 17 23:10:04 localhost pppd[4474]:
remote IP address 192.168.1.230

  成功!
文章评论

共有 2123 条评论

  1. 0.0.0.* 于 2007-03-08 20:50:47发表:

    Thank you for your hard work in providing this excellent service to our wonderful worldbour!! It will be such a help to stay informed of so much that's happening. best camel casino casino code online casino chip weight craps game table free online casino best casino gambling site gambling craps casino online real gambling casino craps table grand casino tunica mississippi bonus free slots for fun

  2. 0.0.0.* 于 2007-03-08 20:29:31发表:

    I wish you the best of luck the site is really great and if there is anything my organization can do to help you make it even more informative please let me know. blue chip casino hotel play free slots machine cheat at online blackjack karen strip blackjack casino lula mississippi casino arizona at salt river casino lafayette indiana fun slots video fair machine play slots 9 line video slots

  3. 0.0.0.* 于 2007-03-08 20:29:04发表:

    remind ringtone http://remindringtoneotfrgu.blogspot.com remind ringtone cash advance store http://cashadvancestorecbam.blogspot.com cash advance store download free cingular ringtones download free cingular ringtones http://downloadfreecingularringtonesdgnc.blogspot.com http://paycheckcashadvancebbktco.blogspot.com pay check cash advance pay check cash advance http://downloadfreeringtonetmobiledbi.blogspot.com download free ringtone t mobile download free ringtone t mobile http://takemybreathawayringtonesyly.blogspot.com take my breath away ringtones take my breath away ringtones http://freehindiringtonempgymr.blogspot.com free hindi ringtone free hindi ringtone http://quickcashadvanceloanashba.blogspot.com quick cash advance loan quick cash advance loan http://celticfrostringtonesaegbem.blogspot.com celtic frost ringtones celtic frost ringtones n sync ringtone http://nsyncringtonebucbrv.blogspot.com n sync ringtone

  4. 200.59.145.* 于 2007-03-08 14:04:50发表:

    lucky http://luckyihblbu.blogspot.com lucky spielregeln videopoker http://spielregelnvideopokercftr.blogspot.com spielregeln videopoker online kasinos mit der besten wertung online kasinos mit der besten wertung http://onlinekasinosmitderbestenwertungcanib.blogspot.com top online kasino top online kasino http://toponlinekasinobecs.blogspot.com beste online kasino http://besteonlinekasinoeswed.blogspot.com beste online kasino hochsteinsatz hochsteinsatz http://hochsteinsatzffawr.blogspot.com http://einarmigerbanditkep.blogspot.com ein armiger bandit ein armiger bandit echtes casinospiel echtes casinospiel http://echtescasinospielohbn.blogspot.com casinos im internet http://casinosiminternetckueps.blogspot.com casinos im internet online slotmaschinen spielen http://onlineslotmaschinenspielenhnr.blogspot.com online slotmaschinen spielen

  5. 0.0.0.* 于 2007-03-08 14:04:44发表:

    lucky http://luckyihblbu.blogspot.com lucky spielregeln videopoker http://spielregelnvideopokercftr.blogspot.com spielregeln videopoker online kasinos mit der besten wertung online kasinos mit der besten wertung http://onlinekasinosmitderbestenwertungcanib.blogspot.com top online kasino top online kasino http://toponlinekasinobecs.blogspot.com beste online kasino http://besteonlinekasinoeswed.blogspot.com beste online kasino hochsteinsatz hochsteinsatz http://hochsteinsatzffawr.blogspot.com http://einarmigerbanditkep.blogspot.com ein armiger bandit ein armiger bandit echtes casinospiel echtes casinospiel http://echtescasinospielohbn.blogspot.com casinos im internet http://casinosiminternetckueps.blogspot.com casinos im internet online slotmaschinen spielen http://onlineslotmaschinenspielenhnr.blogspot.com online slotmaschinen spielen

  6. 0.0.0.* 于 2007-03-08 13:18:40发表:

    spielregeln videopoker spielregeln videopoker http://spielregelnvideopokerlvanms.blogspot.com spiel bank spiel bank http://spielbankrpo.blogspot.com http://echtecasinospieledotab.blogspot.com echte casinospiele echte casinospiele slot slot http://slotrgri.blogspot.com kostenloses online kasinos http://kostenlosesonlinekasinosakwum.blogspot.com kostenloses online kasinos http://sicheresonlinespielenmetf.blogspot.com sicheres online spielen sicheres online spielen slot maschine online spielen slot maschine online spielen http://slotmaschineonlinespielenreht.blogspot.com beste online kasinos http://besteonlinekasinosllhrrt.blogspot.com beste online kasinos http://spielerlebnisgolsvm.blogspot.com spiel erlebnis spiel erlebnis kasino onnet kasino onnet http://kasinoonnetdig.blogspot.com

  7. 0.0.0.* 于 2007-03-08 10:20:53发表:

    http://internetcasinoshgs.blogspot.com internet casinos internet casinos wetten wetten http://wettenelftr.blogspot.com http://spielenkasinotwatrl.blogspot.com spielen kasino spielen kasino http://onlinespieleautomatenleks.blogspot.com online spiele automaten online spiele automaten virtual casino http://virtualcasinodwku.blogspot.com virtual casino spielbank http://spielbankidr.blogspot.com spielbank kasino http://kasinowit.blogspot.com kasino slot machines online spielen http://slotmachinesonlinespielenosa.blogspot.com slot machines online spielen roulette spielen roulette spielen http://roulettespielenoao.blogspot.com http://onlinekasinospielpidgmp.blogspot.com online kasino spiel online kasino spiel

  8. 87.194.38.* 于 2007-03-08 09:46:29发表:

    http://videopokerspieleninvbe.blogspot.com videopoker spielen videopoker spielen spielregeln spieleautomaten http://spielregelnspieleautomatenfyse.blogspot.com spielregeln spieleautomaten wetten wetten http://wettenghvvyk.blogspot.com http://bingoouaamk.blogspot.com bingo bingo online spiel kasino online spiel kasino http://onlinespielkasinohla.blogspot.com http://internetgewinnspieleigev.blogspot.com internet gewinn spiele internet gewinn spiele keno keno http://kenorerh.blogspot.com http://baccaraywo.blogspot.com baccara baccara videopoker videopoker http://videopokertilel.blogspot.com http://gewinnspieleneeappy.blogspot.com gewinnspielen gewinnspielen

  9. 0.0.0.* 于 2007-03-08 09:32:36发表:

    21 http://21vvabms.blogspot.com 21 casino spiele mit echtem geld casino spiele mit echtem geld http://casinospielemitechtemgeldaggdyi.blogspot.com kasino im internet kasino im internet http://kasinoiminternetbas.blogspot.com http://casinoonnetspc.blogspot.com casino on net casino on net blackjack 21 blackjack 21 http://blackjack21pfuii.blogspot.com online roulette spielen online roulette spielen http://onlineroulettespielentdle.blogspot.com http://slotmaschineonlinespielenmlewbp.blogspot.com slot maschine online spielen slot maschine online spielen realistisches casino http://realistischescasinoifmhbd.blogspot.com realistisches casino spieleubersicht spieleubersicht http://spieleubersichtggt.blogspot.com slotmachine online spielen http://slotmachineonlinespielendtvmmg.blogspot.com slotmachine online spielen

  10. 0.0.0.* 于 2007-03-08 08:17:27发表:

    jackpot http://jackpotdvpi.blogspot.com jackpot freispiel http://freispielhonni.blogspot.com freispiel spiel raum spiel raum http://spielraumagmypw.blogspot.com kasino online kasino online http://kasinoonlinebyaef.blogspot.com kostenloses online spiel http://kostenlosesonlinespielitgvvm.blogspot.com kostenloses online spiel spielregeln videopoker spielregeln videopoker http://spielregelnvideopokertddm.blogspot.com http://blackjackgcew.blogspot.com blackjack blackjack internet kasino spielen internet kasino spielen http://internetkasinospielenmvobns.blogspot.com virtual casinos virtual casinos http://virtualcasinosbnod.blogspot.com internet gambling http://internetgamblingfvay.blogspot.com internet gambling

  11. 201.133.184.* 于 2007-03-08 08:16:52发表:

    kostenlose casino spiele kostenlose casino spiele http://kostenlosecasinospielerawm.blogspot.com http://slotmachinedryvlc.blogspot.com slotmachine slotmachine geldeinsatz geldeinsatz http://geldeinsatzomrg.blogspot.com online kasino spielen online kasino spielen http://onlinekasinospielennwf.blogspot.com ein armiger bandit http://einarmigerbandityenkba.blogspot.com ein armiger bandit spielregeln spieleautomaten spielregeln spieleautomaten http://spielregelnspieleautomatenfrths.blogspot.com kasino online kasino online http://kasinoonlinenyb.blogspot.com geld einsatz http://geldeinsatzfenib.blogspot.com geld einsatz http://echtekasinospieleomg.blogspot.com echte kasinospiele echte kasinospiele videopoker online spielen videopoker online spielen http://videopokeronlinespielenutvgfh.blogspot.com

  12. 0.0.0.* 于 2007-03-08 07:49:10发表:

    casino online http://casinoonlineoma.blogspot.com casino online http://slotmachinesspielenefmv.blogspot.com slot machines spielen slot machines spielen las vegas las vegas http://lasvegascbirf.blogspot.com online roulette online roulette http://onlineroulettemogtv.blogspot.com http://blackjackonlinespielenscbfsr.blogspot.com blackjack online spielen blackjack online spielen einarmiger bandit spielen http://einarmigerbanditspielenlocfcm.blogspot.com einarmiger bandit spielen echtes casino http://echtescasinofdybpf.blogspot.com echtes casino spiel automat http://spielautomatahshv.blogspot.com spiel automat http://onlineslotmaschinenspielengkpodh.blogspot.com online slotmaschinen spielen online slotmaschinen spielen http://onlinekasinoslotstdfv.blogspot.com online kasino slots online kasino slots

  13. 129.41.250.* 于 2007-03-08 07:12:01发表:

    sicheres online spielen sicheres online spielen http://sicheresonlinespielenuycro.blogspot.com kasino onnet kasino onnet http://kasinoonnetmnbf.blogspot.com slotmachine slotmachine http://slotmachineabocl.blogspot.com kasinos kasinos http://kasinossmgeye.blogspot.com glucksspiel glucksspiel http://glucksspielinik.blogspot.com spielkonto spielkonto http://spielkontogaylne.blogspot.com kasino im internet http://kasinoiminternetvpmtow.blogspot.com kasino im internet kostenloses spiel http://kostenlosesspielrtyv.blogspot.com kostenloses spiel gluck spiele online gluck spiele online http://gluckspieleonlinevskta.blogspot.com http://blackjackonlinespielenwwkss.blogspot.com black jack online spielen black jack online spielen

  14. 0.0.0.* 于 2007-03-08 06:47:37发表:

    Thank you for your hard work in providing this excellent service to our wonderful worldbour!! It will be such a help to stay informed of so much that's happening. fresno indian casino russian roulette drink isle of capri casino resort sims free casino slots game trump 29 casino california online video slots blackjack game casino craps net casino reno station free game joker poker video

  15. 0.0.0.* 于 2007-03-08 04:21:47发表:

    http://bestonlinecasinohdmymv.blogspot.com best online casino best online casino play craps online free http://playcrapsonlinefreenodvy.blogspot.com play craps online free las vegas casino las vegas casino http://lasvegascasinopsa.blogspot.com free online slots free online slots http://freeonlineslotsasigv.blogspot.com internet casino internet casino http://internetcasinobvovld.blogspot.com keno http://kenoswai.blogspot.com keno slots slots http://slotslcduk.blogspot.com slots online slots online http://slotsonlinetop.blogspot.com no deposit casino no deposit casino http://nodepositcasinoynn.blogspot.com http://casinoonnetrrov.blogspot.com casino on net casino on net

  16. 0.0.0.* 于 2007-03-08 01:12:00发表:

    internet casinos http://internetcasinosvdihc.blogspot.com internet casinos slotmachines spielen slotmachines spielen http://slotmachinesspielenpwid.blogspot.com casinospiele mit echtem geld casinospiele mit echtem geld http://casinospielemitechtemgeldfkdgoa.blogspot.com http://onlinekasinoportalbughc.blogspot.com online kasinoportal online kasinoportal slot machine http://slotmachinelbk.blogspot.com slot machine realistisches internet casino realistisches internet casino http://realistischesinternetcasinosdcdb.blogspot.com slotmachine http://slotmachinetsufk.blogspot.com slotmachine 888com 888com http://888comhahbn.blogspot.com http://glucksspielpcheb.blogspot.com glucks spiel glucks spiel spiellobby http://spiellobbyrhrde.blogspot.com spiellobby

  17. 0.0.0.* 于 2007-03-08 00:38:15发表:

    einarmiger bandit online spielen einarmiger bandit online spielen http://einarmigerbanditonlinespielenmsd.blogspot.com http://freispielkok.blogspot.com freispiel freispiel black jack spielen black jack spielen http://blackjackspielenabahm.blogspot.com kostenloses online kasino http://kostenlosesonlinekasinofkem.blogspot.com kostenloses online kasino http://casinospielemitechtemgeldrppfv.blogspot.com casino spiele mit echtem geld casino spiele mit echtem geld http://onlinewetteeylggu.blogspot.com online wette online wette http://besteonlinekasinoegb.blogspot.com beste online kasino beste online kasino http://virtualkasinossboscn.blogspot.com virtual kasinos virtual kasinos online gewinnen http://onlinegewinnengpcr.blogspot.com online gewinnen http://onlinegewinnenpunsvt.blogspot.com online gewinnen online gewinnen

  18. 210.196.205.* 于 2007-03-08 00:34:52发表:

    slot maschinen http://slotmaschinenicpcic.blogspot.com slot maschinen http://casinoonlineiotmg.blogspot.com casino online casino online glucksspiele online http://glucksspieleonlinenry.blogspot.com glucksspiele online http://onlineblackjackspielenwuial.blogspot.com online black jack spielen online black jack spielen online roulette spielen online roulette spielen http://onlineroulettespielenlnhh.blogspot.com http://kostenlosesonlinekasinosmaia.blogspot.com kostenloses online kasinos kostenloses online kasinos http://spielonlinepmhig.blogspot.com spiel online spiel online online gewinnen http://onlinegewinnenslm.blogspot.com online gewinnen online gewinnen online gewinnen http://onlinegewinnenwob.blogspot.com spielregeln blackjack spielregeln blackjack http://spielregelnblackjackfyrwl.blogspot.com