Chinaunix首页 | 论坛 | 博客
  • 博客访问: 9393038
  • 博文数量: 1747
  • 博客积分: 12961
  • 博客等级: 上将
  • 技术积分: 20060
  • 用 户 组: 普通用户
  • 注册时间: 2009-01-09 11:25
个人简介

偷得浮生半桶水(半日闲), 好记性不如抄下来(烂笔头). 信息爆炸的时代, 学习是一项持续的工作.

文章分类

全部博文(1747)

文章存档

2024年(23)

2023年(26)

2022年(112)

2021年(217)

2020年(157)

2019年(192)

2018年(81)

2017年(78)

2016年(70)

2015年(52)

2014年(40)

2013年(51)

2012年(85)

2011年(45)

2010年(231)

2009年(287)

分类: LINUX

2009-09-24 15:42:24

Point-to-Point Protocol (PPP) - daemon
The Point-to-Point Protocol provides a standard way to transmit datagrams over a serial link, as well as a standard way for the machines at either end of the link to negotiate various optional characteristics of the link.

This package is most commonly used to manage a modem for dial-up or certain kinds of broadband connections.



wget
tar zxf ppp_2.4.4rel.orig.tar.gz
cd ppp-2.4.4rel.orig/
tar zxf upstream/tarballs/ppp-2.4.4.tar.gz
cd ppp-2.4.4


./configure --prefix=$PWD/_install/usr/local --sysconf=$PWD/_install/etc

vi pppd/Makefile # 把 -lpam -lpcap 的地方进行修改,
去掉 -lpam -lpcap 上下之间的if条件限制
加入
      #LIBS    += -L${PWD}/../../fakeroot/lib -lpam -ldl -ldb-4.6
      #LIBS    += -L${PWD}/../../fakeroot/usr/lib -lselinux
      #CFLAGS  += -DUSE_PAM -DPPP_FILTER -I${PWD}/../../fakeroot/include
      #CFLAGS  += -I${PWD}/../../fakeroot/usr/include

make CC="arm-none-linux-gnueabi-gcc -march=armv4t"
make install

# 终端上确认结点存在,否则执行如下命令
# mknod /dev/ppp c 108 0
# chmod 600 /dev/ppp

在scripts目录下有如下文件对应的examples, 也可以从PC上拷贝。

/etc/apm/event.d/ppp
/etc/bash_completion.d/pon
/etc/chatscripts/pap
/etc/init.d/pppd-dns
/etc/logrotate.d/ppp
/etc/pam.d/ppp
/etc/ppp/ip-down
/etc/ppp/ip-down.d/0000usepeerdns
/etc/ppp/ip-up
/etc/ppp/ip-up.d/0000usepeerdns
/etc/ppp/ipv6-down
/etc/ppp/ipv6-up
/etc/ppp/options
/usr/bin/plog        #其实是执行脚本
/usr/bin/poff        #其实是执行脚本
/usr/bin/pon         #其实是执行脚本


阅读(2534) | 评论(0) | 转发(0) |
0

上一篇:基础库- iptables

下一篇:基础库-libxplc

给主人留下些什么吧!~~