2022年G上网卡ppp拨号方法 .pdf

上传人:C****o 文档编号:33388256 上传时间:2022-08-10 格式:PDF 页数:5 大小:77.51KB
返回 下载 相关 举报
2022年G上网卡ppp拨号方法 .pdf_第1页
第1页 / 共5页
2022年G上网卡ppp拨号方法 .pdf_第2页
第2页 / 共5页
点击查看更多>>
资源描述

《2022年G上网卡ppp拨号方法 .pdf》由会员分享,可在线阅读,更多相关《2022年G上网卡ppp拨号方法 .pdf(5页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、第一步:下载ppp-2.4.4.tar.gz ,第二步:解压软件tar zxvf ppp.2.4.4.tar.gz -C / 第三步: cd ppp2.4.4/ 配置文件。# ./configure # make CC=arm-linux-gcc 第三步: 编译基本完成, 在当前目录下的pppd 目录和 chat 目录下分别生成有pppd和 chat 两个可执行文件。将目录下 pppd chat pppdump pppstats下可执行程序pppd, chat, pppdump, pppstats拷贝到开发板 /usr/sbin目录下第四步:建立三个文件夹mkdir /etc/ppp; mkd

2、ir /etc/ppp/peers ; mkdir /etc/ppp/chat 第五步:把ppp2.4.4 文件夹中的etc.ppp 中的 pap-secrets和 chap-secerts复制到 /etc/ppp/下修改两个文件为我使用的是CDMA 的卡,现在是电信服务的设置,登陆名密码我咨询了电信的客服的。# Secrets for authentication using CHAP # client server secret IP addresses # redhat-config-network will overwrite this part! (begin) # * vnet.m

3、obi # redhat-config-network will overwrite this part! (end) # # Secrets for authentication using PAP # client server secret IP addresses # redhat-config-network will overwrite this part! (begin) # * vnet.mobi 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 5 页 -

4、 - - - - - - - - # redhat-config-network will overwrite this part! (end) # 第六步:在chat 文件夹下,新建个cdma 文件。# # # # # /etc/ppp/chat/cdma # this is the chat script for cdma # ABORT NO CARRIER ABORT NO DIALTONE ABORT ERROR ABORT NO ANSWER ABORT BUSY TIMEOUT 120 AT OK ATDT#777 CONNECT # # # 第七步:在peers 文件夹下,新建

5、文件cdma # # # /etc/ppp/peers/cdma # 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 5 页 - - - - - - - - - ttyUSB0 /由于使用的笔记本,USB 转串行口的设备115200 nocrtscts connect /usr/sbin/chat -v -f /etc/ppp/chat/cdma debug nodetach ipcp-accept-local ipcp-accept-remote defaultrout

6、e user # # # 解释一下这里的pppd 选项:ttyUSB0表示 CDMA modem 连接到串口 /dev/ttyUSB0上;115200表示串口波特率;crtscts表示采用 modem的 rts 和 cts信号线用于流控;connect /usr/sbin/chat -v -f /etc/ppp/chat/cdma 表示用 chat 程序完成连接建立的会话过程,会话过程通过 /etc/ppp/chat/cdma文件控制debug表示令 pppd 工作在调试模式nodetach表示不要让 pppd 启动之后转为后台进程ipcp-accept-local表示接受服务器分配的本机IP

7、 地址ipcp-accept-remote表示接受服务器指定的服务器IP 地址defaultroute表示把服务器指定的服务器IP 地址作为默认路由user 表示认证时的用户为 ,pppd据此从/etc/ppp/pap-secrets 或者/etc/ppp/chap-secrets 文件中取得 用户对名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 5 页 - - - - - - - - - 应的口令第八步:在 /etc/resov.conf添加了重庆市电信的DNS :na

8、meserver 61.128.128.68 nameserver 61.128.192.68 第九步:拨号cd /usr/sbin/ rootlocalhost sbin# pppd call cdma ( Ctrl + z 退出) 注意:在 ppp 拨号前先 # ifconfig eth0 down 关掉 eth ,否则默认路由不对# # 使用 route 命令查看linux 路由表,信息如下estination Gateway Genmask Flags Metric Ref Use Iface default * 0.0.0.0 UG 0 0 0 ppp0 192.168.1.0 *

9、255.255.255.0 U 0 0 0 eth0 115.168.70.44 * 255.255.255.255 UH 0 0 0 ppp0 可以看到默认路由的网关没有设置,于是试着删除这个路由route del default 再增加路由route add default gw 115.168.70.44 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 5 页 - - - - - - - - - 完成后查看路由表,执行route 路由表如下。其中,默认路由的网关为p

10、pp 服务器的 IP 地址。estination Gateway Genmask Flags Metric Ref Use Iface default 115.168.70.44 0.0.0.0 UG 0 0 0 ppp0 192.168.1.0 * 255.255.255.0 U 0 0 0 eth0 115.168.70.44 * 255.255.255.255 UH 0 0 0 ppp0 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 5 页 - - - - - - - - -

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 高考资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁